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}/sourcesRequires API key
Parameters
brand_iduuid· pathrequiredBrand UUID.
windowstring· queryoptionalAggregation window. Default 30d.
7d30d90dproviderstring· queryoptionalRepeatable. Restrict to these providers.
openaianthropicgeminiperplexitygoogle_ai_overviewlimitinteger· queryoptionalMax 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"
]
}
]
}