Developer access
Browse the published collection, copy a route, add its required parameters and send the request from any HTTP-capable client.
TKM-API gives you a live REST directory, searchable documentation and an in-browser request builder for web, mobile, bots and automation.
// Discover the live API directory const response = await fetch( 'https://api.cod3uchiha.com/catalog' ); const data = await response.json(); console.log(data);
Browse the published collection, copy a route, add its required parameters and send the request from any HTTP-capable client.
Each endpoint shows its method, route, category, parameters, response type, example URL and generated cURL command.
# Discover every deployed endpoint
curl "https://api.cod3uchiha.com/catalog"
Endpoints may return JSON, text, images, audio, video or downloadable files. The live tester adapts its preview to the response type.
Cache reusable responses, set sensible timeouts, handle non-200 status codes and keep a fallback for third-party-dependent routes.