API reference
Programmatic access to AgentJury scores and verdicts. Use in your CI/CD pipeline to catch bad dependencies before deploy.
Base URL
https://agentjury.org/api/v1 Authentication
All API endpoints require an API key. Pass it via Authorization: Bearer <key> header. Badges are the only exception — they work without auth so you can embed them in READMEs.
Endpoints
GET
/tools List all tested tools with summary scores.
Query parameters
q — search name/description
type — filter: mcp, skill, sdk
sort — score, name, tested_at
min_score — minimum overall score
limit — results per page (default 50)
GET
/tools/:slug
Full verdict for a specific tool. Returns all dimension scores, compatibility matrix, test evidence, and version history.
GET
/tools/:slug/badge Returns an SVG badge image. No auth required.
Usage in markdown
 GET
/check/:slug CI/CD integration. Returns 200 if score meets threshold, 422 if it doesn't.
Example in GitHub Actions
curl -f "https://agentjury.org/api/v1/check/your-tool?min_score=7"
POST
/tools Submit a tool for evaluation. Requires Builder tier or above.
{"source": "https://github.com/org/repo", "type": "mcp"} Rate limits
| Tier | Limit |
|---|---|
| Builder ($19/mo) | 1,000/hour |
| API ($49/mo) | 10,000/hour |
| Enterprise ($199/mo) | 100,000/hour |