Get raw sentiment results (prompts and responses) for a domain
API Key for programmatic access
In: header
Path Parameters
UUID of the domain
uuidQuery 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 by specific topic ID
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
truePage number for paginated responses
1 <= value1Items per page for paginated responses
1 <= value <= 10050Filter by specific market/language pair ID
Filter by tag IDs (visibility_result joined with prompt_tag)
Response Body
application/json
curl -X GET "https://example.com/api/domains/497f6eca-6276-4993-bfeb-53cbbbba6f08/sentiment/raw-results"{ "results": [ { "id": "507f1f77bcf86cd799439011-0", "prompt": "How do developers feel about Stripe?", "response": "Developers generally have a positive sentiment towards Stripe...", "model": "chatgpt", "sentiment": "positive", "score": 0.85, "reportDate": "2025-03-15T10:30:00.000Z", "reportId": "507f1f77bcf86cd799439011" } ], "pagination": { "page": 1, "limit": 50, "total": 8, "totalPages": 1 }}