Overview
Sources are URLs and domains that LLMs cite or reference in their responses about your brand's topics. They indicate where the models draw their knowledge from.
Endpoints
| Method | Path | Description |
|---|---|---|
GET | /brands/{brandId}/sources | List influential sources |
GET /brands//sources
Returns all sources detected for a brand across campaign runs.
curl https://mentova.ai/api/v1/brands/clxabc123/sources \
-H "X-API-Key: mtv_live_your_key"
Response 200
{
"data": [
{
"id": "clxsrc1",
"url": "https://example.com/best-tools",
"domain": "example.com",
"citationCount": 14,
"firstSeenAt": "2026-03-10T08:00:00.000Z",
"lastSeenAt": "2026-06-01T09:00:00.000Z"
},
{
"id": "clxsrc2",
"url": "https://reviews.io/project-management",
"domain": "reviews.io",
"citationCount": 8,
"firstSeenAt": "2026-04-01T12:00:00.000Z",
"lastSeenAt": "2026-05-28T15:00:00.000Z"
}
]
}
Response fields
| Field | Type | Description |
|---|---|---|
id | string | Source record ID |
url | string | Full URL cited by LLMs |
domain | string | Extracted domain |
citationCount | integer | Number of times this source was cited across all runs |
firstSeenAt | string | ISO 8601 timestamp of first detection |
lastSeenAt | string | ISO 8601 timestamp of most recent detection |