curl --request GET \
--url https://api.radarkit.ai/v1/projects/{project}/sources/top-domains \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.radarkit.ai/v1/projects/{project}/sources/top-domains"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.radarkit.ai/v1/projects/{project}/sources/top-domains', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"domain": "g2.com",
"type": "other",
"mentions": 214,
"share": 11.7,
"cited": 180,
"prompts": 31,
"models": [
"chatgpt",
"gemini"
],
"last_seen": "2026-08-31"
},
{
"domain": "acme.com",
"type": "brand",
"mentions": 172,
"share": 9.4,
"cited": 160,
"prompts": 40,
"models": [
"chatgpt",
"gemini",
"perplexity"
],
"last_seen": "2026-08-31"
},
{
"domain": "hubspot.com",
"type": "competitor",
"mentions": 151,
"share": 8.3,
"cited": 120,
"prompts": 28,
"models": [
"chatgpt",
"gemini"
],
"last_seen": "2026-08-30"
}
],
"meta": {
"project": "64f1a2b3c4d5e6f708192a3b",
"from": "2026-08-01",
"to": "2026-08-31",
"models": [
"chatgpt",
"gemini",
"perplexity"
],
"limit": 20,
"count": 3,
"total_domains": 325,
"total_mentions": 1824
},
"credits": {
"charged": 2,
"remaining": 2940
},
"request_id": "req_01j9x4v9l0m1n2o3p4q5r6s7u1"
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
},
"request_id": "req_01j9x4m2p7q8r9s0t1u2v3w4x5"
}{
"error": {
"code": "UNAUTHENTICATED",
"message": "Missing or invalid API key. Send it as: Authorization: Bearer rk_live_YOUR_KEY"
},
"request_id": "req_01j9x4q7z8y9x0w1v2u3t4s5r6"
}{
"error": {
"code": "INSUFFICIENT_CREDITS",
"message": "Not enough API credits."
},
"request_id": "req_01j9x4q7z8y9x0w1v2u3t4s5r7"
}{
"error": {
"code": "PROJECT_FORBIDDEN",
"message": "This key cannot access that project."
},
"request_id": "req_01j9x4q7z8y9x0w1v2u3t4s5r9"
}{
"error": {
"code": "PROJECT_NOT_FOUND",
"message": "No project with that id."
},
"request_id": "req_01j9x4q7z8y9x0w1v2u3t4s5s0"
}{
"error": {
"code": "VALIDATION_FAILED",
"message": "One or more parameters are invalid.",
"details": [
{
"path": "from",
"message": "The from field must match the format Y-m-d."
}
]
},
"request_id": "req_01j9x4s6b7c8d9e0f1g2h3i4j5"
}{
"error": {
"code": "RATE_LIMITED",
"message": "Too many requests. Slow down and retry.",
"details": {
"retry_after": 21
}
},
"request_id": "req_01j9x4r2s3t4u5v6w7x8y9z0a1"
}{
"error": {
"code": "QUERY_TIMEOUT",
"message": "The query took too long. Narrow the date range or use exports."
},
"request_id": "req_01j9x4r2s3t4u5v6w7x8y9z0a2"
}Top source domains
The domains AI answers relied on most, ranked by how often they appeared. Each domain shows its share of all source mentions, how many times it was linked, how many prompts it appeared for, which models used it and when it was last seen.
type tells you whether the domain is your brand, a competitor you configured, or other.
Use it: to find the sites worth pitching or publishing on.
Cost: 2 API credits. Results are cached for 10 minutes.
Limits: Up to 31 days in one call. Up to 100 domains. 10 calls per minute per key.
Needs: Read.
curl --request GET \
--url https://api.radarkit.ai/v1/projects/{project}/sources/top-domains \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.radarkit.ai/v1/projects/{project}/sources/top-domains"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.radarkit.ai/v1/projects/{project}/sources/top-domains', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"domain": "g2.com",
"type": "other",
"mentions": 214,
"share": 11.7,
"cited": 180,
"prompts": 31,
"models": [
"chatgpt",
"gemini"
],
"last_seen": "2026-08-31"
},
{
"domain": "acme.com",
"type": "brand",
"mentions": 172,
"share": 9.4,
"cited": 160,
"prompts": 40,
"models": [
"chatgpt",
"gemini",
"perplexity"
],
"last_seen": "2026-08-31"
},
{
"domain": "hubspot.com",
"type": "competitor",
"mentions": 151,
"share": 8.3,
"cited": 120,
"prompts": 28,
"models": [
"chatgpt",
"gemini"
],
"last_seen": "2026-08-30"
}
],
"meta": {
"project": "64f1a2b3c4d5e6f708192a3b",
"from": "2026-08-01",
"to": "2026-08-31",
"models": [
"chatgpt",
"gemini",
"perplexity"
],
"limit": 20,
"count": 3,
"total_domains": 325,
"total_mentions": 1824
},
"credits": {
"charged": 2,
"remaining": 2940
},
"request_id": "req_01j9x4v9l0m1n2o3p4q5r6s7u1"
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
},
"request_id": "req_01j9x4m2p7q8r9s0t1u2v3w4x5"
}{
"error": {
"code": "UNAUTHENTICATED",
"message": "Missing or invalid API key. Send it as: Authorization: Bearer rk_live_YOUR_KEY"
},
"request_id": "req_01j9x4q7z8y9x0w1v2u3t4s5r6"
}{
"error": {
"code": "INSUFFICIENT_CREDITS",
"message": "Not enough API credits."
},
"request_id": "req_01j9x4q7z8y9x0w1v2u3t4s5r7"
}{
"error": {
"code": "PROJECT_FORBIDDEN",
"message": "This key cannot access that project."
},
"request_id": "req_01j9x4q7z8y9x0w1v2u3t4s5r9"
}{
"error": {
"code": "PROJECT_NOT_FOUND",
"message": "No project with that id."
},
"request_id": "req_01j9x4q7z8y9x0w1v2u3t4s5s0"
}{
"error": {
"code": "VALIDATION_FAILED",
"message": "One or more parameters are invalid.",
"details": [
{
"path": "from",
"message": "The from field must match the format Y-m-d."
}
]
},
"request_id": "req_01j9x4s6b7c8d9e0f1g2h3i4j5"
}{
"error": {
"code": "RATE_LIMITED",
"message": "Too many requests. Slow down and retry.",
"details": {
"retry_after": 21
}
},
"request_id": "req_01j9x4r2s3t4u5v6w7x8y9z0a1"
}{
"error": {
"code": "QUERY_TIMEOUT",
"message": "The query took too long. Narrow the date range or use exports."
},
"request_id": "req_01j9x4r2s3t4u5v6w7x8y9z0a2"
}Authorizations
Your API key. Create one in Settings, API keys. Send it as Authorization: Bearer rk_live_YOUR_KEY.
Path Parameters
The project id. 24 characters. From List projects.
^[0-9a-f]{24}$Query Parameters
First day, YYYY-MM-DD, in the project's timezone. Default: the window your dashboard shows, 7 or 30 days back.
Last day, YYYY-MM-DD, included. Default: today.
One model name, or several separated by commas: chatgpt, gemini, perplexity, copilot, aimode, aioverview. Default: every model the project tracks. Names the plan does not include are ignored.
120Domains to return, 1 to 100. Default 20.
1 <= x <= 100Response
The domains, most used first.
Show child attributes
Show child attributes
Show child attributes
Show child attributes
What this call cost and what is left. Also in the X-RadarKit-Credits-Charged and X-RadarKit-Credits-Remaining headers.
Show child attributes
Show child attributes
A unique id for this call. Also in the X-Request-Id header. Quote it when you contact support.
"req_01j9x4m2p7q8r9s0t1u2v3w4x5"