Get paginated brand mentions for a topic (used by "See all brands" modal)
Returns the requested page of mentions sorted by count DESC (mention name ASC as tie-breaker). mentionsDetailed is scoped to the mentions visible on the current page.
API Key for programmatic access
In: header
Path Parameters
Domain ID
Topic ID
Query Parameters
Start date for the report range (ISO 8601). On aggregated endpoints, omit to default to the last 6 months (there is no "all time"); an explicit start is honoured at any length.
End date for the report range (ISO 8601). Defaults to now when omitted.
Filter by specific models
Filter raw results to a single prompt ID. Used by the sentiment heatmap drawer to lazy-load one cell's LLM response instead of bundling all responses in the aggregate.
Include variation calculation comparing to previous period
trueFilter by specific market/language pair ID
Filter by tag IDs (visibility_result joined with prompt_tag)
Page number (1-indexed)
1 <= value1Items per page
1 <= value <= 10020Response Body
application/json
curl -X GET "https://example.com/api/domains/507f1f77bcf86cd799439011/topics/507f1f77bcf86cd799439012/visibility/mentions"{ "mentions": [ { "mention": "Nike", "count": 156, "percentage": 34 } ], "mentionsDetailed": [ { "mention": "Nike", "modelId": "chatgpt", "count": 42 } ], "total": 156, "page": 1, "limit": 20, "totalPages": 8}