Skip to main content
POST
/
sources
Get Sources
curl --request POST \
  --url https://app.mentionpilot.ai/api/v1/sources \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "brand_id": 1,
  "date": {
    "from": "2026-01-01",
    "to": "2026-05-07"
  },
  "limit": 50,
  "ai_agent": [
    "chatgpt",
    "gemini"
  ]
}
'
{
  "success": true,
  "sources": [
    {
      "id": 101,
      "domain": "techcrunch.com",
      "type": "citation",
      "ai_tool": "chatgpt",
      "created_at": "2026-03-15T09:00:00.000000+00:00"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://help.mentionpilot.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Filter parameters

brand_id
integer
required

ID of the brand to fetch sources for

Example:

1

date
object

Optional date range filter. Omit to return all sources.

limit
integer

Maximum number of sources to return. Omit to return all.

Example:

50

ai_agent
string[]

Filter by AI agent(s). Omit to return sources from all agents.

Example:
["chatgpt", "gemini"]

Response

A list of sources

success
boolean
Example:

true

sources
object[]