Get alignment detailed results filtered by model and optionally attribute
Lazy-load detailed results for a specific model/attribute combination. Use this endpoint when opening a drawer to display detailed information.
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
11 <= valueItems per page for paginated responses
501 <= value <= 100Filter by specific market/language pair ID
Include detailed results in response (default: false for performance)
falseWhen true, competitor average scores are computed across ALL available models (treating missing models as 0). When false, only models with data are averaged.
falseFilter by tag IDs (visibility_result joined with prompt_tag)
Filter by model name (e.g., gpt-5)
Filter by attribute name (e.g., Trustworthiness)
Response Body
application/json
curl -X GET "https://example.com/domains/497f6eca-6276-4993-bfeb-53cbbbba6f08/alignment/detailed-results?model=gpt-5"[
{
"model": "gpt-5",
"promptIndex": 0,
"originalPrompt": "How innovative is Nike?",
"llmResponse": "Nike is widely recognized for its innovative approach to footwear.",
"attributeScores": [
[
null
]
],
"citations": [
[
null
]
],
"error": "Model timed out after 30s"
}
]