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

MethodPathDescription
GET/brands/{brandId}/sourcesList 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

FieldTypeDescription
idstringSource record ID
urlstringFull URL cited by LLMs
domainstringExtracted domain
citationCountintegerNumber of times this source was cited across all runs
firstSeenAtstringISO 8601 timestamp of first detection
lastSeenAtstringISO 8601 timestamp of most recent detection