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 individual mention records for a specific keyword within a theme. Each mention includes the prompt text, AI platform, sentiment label, evidence text, and confidence score.
Parameters
Unique identifier for the theme.
Unique identifier for the keyword.
Bearer token. Format: Bearer slat_<your-token>.
Number of days for the analysis window.
Start of date range. ISO 8601 format (e.g., 2026-02-01T00:00:00Z).
End of date range. ISO 8601 format.
Filter by one or more platforms: CHATGPT, PERPLEXITY, GOOGLE_AI_OVERVIEW, GOOGLE_AI_MODE, GEMINI, CLAUDE.
Filter by ISO country code for region.
Filter by sentiment label (e.g., positive, neutral, negative).
Maximum number of results. Default: 50.
Number of results to skip. Default: 0.
Page number. When provided, overrides limit/offset with page-based pagination.
Page size. Used with page. Maximum: 200.
Filter by a single prompt ID.
Filter by multiple prompt IDs. Maximum 10 values.
Response
Returns 200 OK with an array of mention detail objects.
Array of mention detail objects. Show mention detail object
Unique identifier for the mention.
The prompt text that generated the mention.
Sentiment classification (e.g., positive, neutral, negative).
AI platform that produced the mention.
Timestamp of the mention. ISO 8601 format.
Excerpt from the AI response containing the mention.
Start character position of the mention in the response.
End character position of the mention in the response.
Brand ID referenced in the mention.
Name of the brand mentioned.
Confidence score for the sentiment classification (0–1).
Example
curl -s "https://api.slatehq.ai/ai-analytics-service/api/public/v1/sentiment/theme/theme-abc-123/keyword/kw-001/mentions?dateRange=30&limit=10" \
-H "Authorization: Bearer slat_YOUR_TOKEN"
Response
[
{
"mentionId" : "m-2048-001" ,
"promptId" : 156 ,
"promptText" : "What is the best project management tool for remote teams?" ,
"sentimentLabel" : "positive" ,
"topicId" : 42 ,
"topicName" : "Project Management Tools" ,
"platform" : "CHATGPT" ,
"createdAt" : "2026-02-11T14:31:15Z" ,
"evidenceText" : "The platform is praised for its ease of use and intuitive interface." ,
"charStart" : 245 ,
"charEnd" : 312 ,
"runId" : 2048 ,
"brandId" : 5 ,
"mentionedBrandName" : "MyBrand" ,
"themeId" : "theme-abc-123" ,
"keywordId" : "kw-001" ,
"keywordLabel" : "ease of use" ,
"sentimentScore" : 0.92 ,
"confidence" : 0.87
}
]
Status codes
Status Description 200Mention details returned. 400promptIds exceeds maximum of 10 values.401Missing or invalid Bearer token. See Authentication . 500Internal server error.
What’s next