Public API

Toolkiya API

Build on top of Toolkiya. Public endpoints, no API key, transparent rate limits.

No API key required

All public endpoints are keyless. Rate limits are enforced per IP address.

Built for abuse resistance

Layered rate limits: burst (per minute), daily (per IP), and global (shared budget across all users).

AI provider cascade

The Find Tool endpoint tries OpenRouter free, then Hugging Face, then Gemini, then keyword fallback. Never fails unexpectedly.

Base URL

https://toolkiya.com

Endpoints

POST/api/find-tool10/min + 100/day per IP, 5000/day global

Smart Tool Finder

Match a natural-language query to the best tool in our library. Powered by an open-source AI cascade.

Request body
{
  "query": "compress a pdf to 200kb"
}
Response
{
  "slug": "compress-pdf",
  "name": "Compress PDF",
  "url": "https://toolkiya.com/compress-pdf",
  "reason": "matched PDF compression intent"
}

Note: CORS-open for browser extensions. No origin check. Validates returned slug against the real tool list.

GET/api/stats60/min per IP

Public Stats

Aggregate feedback counts, average rating, and top-rated tools.

Response
{
  "total_feedback": 342,
  "average_rating": 4.6,
  "total_feature_requests": 28,
  "top_tools": [
    { "tool_slug": "pdf-merge", "avg_rating": 4.9, "total_ratings": 47 }
  ]
}

Note: Edge-cached with stale-while-revalidate.

GET/api/showcase60/min per IP

Featured Reviews

Curated 4-5 star reviews with comments, used to power the homepage testimonial carousel.

Response
[
  {
    "tool_slug": "remove-background",
    "rating": 5,
    "comment": "Worked perfectly on my product photos",
    "created_at": "2026-04-10T14:32:00Z"
  }
]
POST/api/feedback5/min per IP

Submit Feedback

Anonymous rating + comment for a specific tool. Enforces spam heuristics.

Request body
{
  "tool_slug": "pdf-merge",
  "rating": 5,
  "comment": "Saved me an hour"
}
Response
{ "ok": true }

Need custom rate limits or enterprise access?

Self-hosted deployments, higher rate limits, and SLA guarantees available.

Enterprise plans

We use cookies for analytics and ads to keep our tools free. Read our Privacy Policy