Get paginated citations for explorer table
Returns paginated and filtered inlined citations aggregated from all analysis types (visibility, competition, sentiment, alignment). Supports server-side filtering, sorting, and returns filter option values for building multi-select dropdowns. Responses are cached for 60 seconds.
API Key for programmatic access
In: header
Path Parameters
UUID of the domain
uuidQuery Parameters
Page number (1-based)
1 <= value1Items per page (1-1000, default 50)
1 <= value <= 100050Start of report date range (ISO 8601)
End of report date range (ISO 8601)
Global filter: LLM models (comma-separated)
Partial match on prompt text
Partial match on source domain name
Multi-select filter on citation domains (comma-separated)
Filter by analysis type
Multi-select filter on LLM model (comma-separated)
Filter by exact prompt texts (use repeated params, not comma-separated)
Filter by topic names (comma-separated, visibility/competition only)
Field to sort by
Value in
- "searchQuery"
- "source"
- "linkDomain"
- "model"
- "promptCategory"
- "topicName"
Sort direction (default: asc)
Value in
- "asc"
- "desc"
Response Body
application/json
curl -X GET "https://example.com/domains/497f6eca-6276-4993-bfeb-53cbbbba6f08/explorer/citations"{ "data": [ { "fanOutQueries": [ "best payment processing APIs 2025" ], "source": "techcrunch.com", "link": "https://techcrunch.com/2025/01/10/payment-apis-compared", "linkDomain": "techcrunch.com", "model": "gpt-5", "promptCategory": "visibility", "promptText": "What are the best payment processing solutions?", "promptId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890", "topicId": "f9e8d7c6-b5a4-3210-fedc-ba0987654321", "topicName": "Payment Processing" }, { "fanOutQueries": [ "Stripe developer sentiment 2025" ], "source": "g2.com", "link": "https://g2.com/products/stripe/reviews", "linkDomain": "g2.com", "model": "gpt-5", "promptCategory": "sentiment", "promptText": "How do developers feel about Stripe?", "promptId": "b2c3d4e5-f6a7-8901-bcde-f12345678901" } ], "total": 142, "page": 1, "limit": 50, "totalPages": 3, "hasNext": true, "hasPrev": false, "filterOptions": { "linkDomains": [ "techcrunch.com", "g2.com", "stripe.com", "forbes.com" ], "models": [ "gpt-5", "claude-sonnet-4-5-20250929", "gemini-2.5-pro" ], "promptCategories": [ "visibility", "sentiment", "competition", "alignment" ], "promptTexts": [ "What are the best payment processing solutions?", "How do developers feel about Stripe?" ], "topicNames": [ "Payment Processing", "Developer Tools" ] }}