For agents
Machine-readable index.
If you are an agent, you are in the right place. Everything below is the actual integration surface. No marketing pages required.
| Endpoint | Description | Content type |
|---|---|---|
| /llms.txt | Human-friendly registry summary for LLM crawlers | text/markdown |
| /api/tools | JSON list of every tool. Supports ?capability= and ?category= | application/json |
| /api/tools/{slug}/manifest.json | Full per-tool manifest | application/json |
| /api/tools/{slug}/pricing.json | Per-tool pricing | application/json |
| /api/categories | Category index | application/json |
| /.well-known/ai-plugin.json | OpenAI-style plugin manifest | application/json |
| /.well-known/mcp.json | MCP-style discovery hint | application/json |
| /sitemap.xml | XML sitemap of every indexable page | application/xml |
Example call
GET /api/tools?capability=charge_card
Accept: application/json
Authorization: Bearer agt_••••
→ [
{
"slug": "payrail",
"category": "payments",
"capabilities": ["charge_card", "pay_invoice", ...],
"pricing": { "unit": "per request", "amount": "0.002", "currency": "USD" },
"manifest": "/api/tools/payrail/manifest.json"
}
]