Cod3Uchiha GitHub avatar COD3UCHIHAAPI guide
API Collection Creator GitHub ↗
API QUICK START

From idea to API response in minutes.

TKM-API gives you a live REST directory, searchable documentation and an in-browser request builder for web, mobile, bots and automation.

quick-start.js
// Discover the live API directory
const response = await fetch(
  'https://api.cod3uchiha.com/catalog'
);

const data = await response.json();
console.log(data);

Developer access

Browse the published collection, copy a route, add its required parameters and send the request from any HTTP-capable client.

Live contracts

Each endpoint shows its method, route, category, parameters, response type, example URL and generated cURL command.

Your first request

  1. Open the API directory.
  2. Search by name, route, category or description.
  3. Choose Open console on an endpoint.
  4. Enter the required parameters.
  5. Send the live request or copy the URL and cURL command.
# Discover every deployed endpoint
curl "https://api.cod3uchiha.com/catalog"

Built for

  • Web and mobile prototypes
  • Node.js and Python projects
  • WhatsApp bots and automation
  • Learning REST, JSON and HTTP
  • Fast product experiments

Response formats

Endpoints may return JSON, text, images, audio, video or downloadable files. The live tester adapts its preview to the response type.

Build responsibly

Cache reusable responses, set sensible timeouts, handle non-200 status codes and keep a fallback for third-party-dependent routes.