RankrRankr/Documentation
Menu
Sources

Most-cited sources

Aggregate URLs that AI providers cited when answering tracked prompts, with counts — answers "which websites are most influential when AI assistants talk about my space". Responses are JSON and require a workspace API key.

GET/v1/brands/{brand_id}/sources
Requires API key

Parameters

brand_iduuid· pathrequired

Brand UUID.

windowstring· queryoptional

Aggregation window. Default 30d.

7d30d90d
providerstring· queryoptional

Repeatable. Restrict to these providers.

openaianthropicgeminiperplexitygoogle_ai_overview
limitinteger· queryoptional

Max unique sources to return (default 50, max 200).

Request
curl -X GET 'https://api.rankr.so/v1/brands/:brand_id/sources' \
  -H 'Authorization: Bearer YOUR_API_KEY'
Response200
JSON
{
  "window": "30d",
  "data": [
    {
      "url": "https://techcrunch.com/...",
      "count": 47,
      "providers": [
        "openai",
        "perplexity"
      ]
    },
    {
      "url": "https://reddit.com/r/.../comments/...",
      "count": 22,
      "providers": [
        "perplexity"
      ]
    }
  ]
}