APIReferenceRuns

Get a single response

The full single response (`MonitoringAnswer`) a light `GET /api/runs/{id}/` `responses[]` row drills down into — adds the full `answerText`, and optionally `answerHtml`.

GET/api/responses/{response_id}/

Authorization

AuthorizationBearer <token>

Personal Access Token (create one from Settings -> API Keys in the dashboard). Send as Authorization: Bearer gr_live_.... An X-API-Key: gr_live_... header (see the apiKeyAuth scheme) is accepted as an equivalent alternative — send ONE of the two, not both.

In: header

Path Parameters

response_id*integer

Query Parameters

includeHtml?boolean

true to also include the raw answerHtml field (omitted by default).

Response Body

application/json

curl -X GET "https://example.com/api/responses/0/"
{  "id": "string",  "promptId": "string",  "runId": "string",  "model": "string",  "modelLabel": "string",  "surface": "string",  "mentioned": true,  "sentiment": "string",  "rank": 0,  "sources": [    "string"  ],  "sampleCount": 0,  "timestamp": "string",  "answerText": "string",  "answerHtml": "string"}