The reputation layer for AI skills, tools & agents

Query the AgentRank index programmatically. All endpoints are free, unauthenticated, and CORS-enabled.

Base URL: https://agentrank-ai.com

GET /api/lookup

Look up a specific entry by its GitHub URL.

Parameters

ParamTypeRequiredDescription
urlstringYesGitHub repository URL

Example

curl "https://agentrank-ai.com/api/lookup?url=https://github.com/microsoft/playwright-mcp"

Response (found)

{
  "found": true,
  "type": "skill",
  "slug": "glama:playwright-mcp-server",
  "name": "Playwright MCP Server",
  "description": "Browser automation and testing via Playwright",
  "score": 82.4,
  "rank": 12
}

Response (not found)

{
  "found": false
}

GET /api/badge/skill/{slug}   /api/badge/tool/{slug}

Returns an SVG badge showing the AgentRank score. Embed in READMEs, docs, or websites.

Preview

AgentRank badge example

Markdown

[![AgentRank](https://agentrank-ai.com/api/badge/skill/YOUR-SLUG)](https://agentrank-ai.com/skill/YOUR-SLUG/)

HTML

<a href="https://agentrank-ai.com/skill/YOUR-SLUG/">
  <img src="https://agentrank-ai.com/api/badge/skill/YOUR-SLUG" alt="AgentRank">
</a>

Cache: 24h CDN / 1h browser

Usage Notes

  • No authentication required.
  • All JSON endpoints return Access-Control-Allow-Origin: * for browser use.
  • Data updates daily. Scores reflect the latest crawl.
  • Be reasonable with request volume. No formal rate limit, but excessive traffic may be throttled.
  • Badge SVGs are lightweight and CDN-cached -- safe to embed anywhere.