Skip to main content
GET
/
ai-analytics-service
/
api
/
public
/
v1
/
analytics
/
citations
Get Citations
curl --request GET \
  --url https://api.slatehq.ai/ai-analytics-service/api/public/v1/analytics/citations \
  --header 'Authorization: <authorization>'
{
  "citations": [
    {
      "domain": "<string>",
      "url": "<string>",
      "title": "<string>",
      "mentions": 123,
      "date": "<string>",
      "platform": "<string>",
      "position": 123,
      "category": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://slatehq.com/docs/llms.txt

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

Returns citation data from AI platform responses. Citations are the URLs and sources that AI models reference when generating answers to your tracked prompts.

Parameters

Authorization
string
required
Bearer token. Format: Bearer slat_<your-token>.
dateRange
string
Date range filter for citations.
topicId
number
Filter by topic ID.
platform
string[]
Filter by one or more platforms: CHATGPT, PERPLEXITY, GOOGLE_AI_OVERVIEW, GOOGLE_AI_MODE, GEMINI, CLAUDE.
sentiment
string
Filter by sentiment label.
channelType
string
Filter by channel type.
brandRelevance
string
Filter by brand relevance.

Response

Returns 200 OK with an array of citation objects.
citations
object[]
required
Array of citation objects.

Example

curl -s "https://api.slatehq.ai/ai-analytics-service/api/public/v1/analytics/citations?dateRange=30&topicId=42" \
  -H "Authorization: Bearer slat_YOUR_TOKEN"

Response

[
  {
    "domain": "example.com",
    "url": "https://example.com/pm-tools-comparison",
    "title": "Best Project Management Tools 2026",
    "mentions": 15,
    "date": "2026-02-11",
    "platform": "CHATGPT",
    "position": 1,
    "category": "OWNED"
  },
  {
    "domain": "techreview.com",
    "url": "https://techreview.com/project-management-guide",
    "title": "The Complete Guide to PM Software",
    "mentions": 8,
    "date": "2026-02-11",
    "platform": "PERPLEXITY",
    "position": 2,
    "category": "EARNED"
  }
]

Status codes

StatusDescription
200Citations returned.
401Missing or invalid Bearer token. See Authentication.
500Internal server error.

What’s next