Responses
The response object
A response is one captured answer from an AI platform to one prompt on a single daily run. It carries the rendered content, the model that produced it, the monitor's country and language, and any search queries the platform issued.
Fields
| Field | Type | Description |
|---|---|---|
| id | integer | The unique ID of the response. |
| prompt_id | integer | The numeric ID of the prompt that produced this response. You may pass this ID to the |
| monitor_id | integer | The numeric ID of the monitor this response ran under. |
| prompt_text | string | The exact prompt text the platform was given. |
| platform | string | The AI platform that produced this answer. |
| model | string | The model identifier reported by the platform. |
| country | string | The ISO 3166-1 alpha-2 country code the response was run in. |
| language | string | The language the response was run in. |
| content | string | The raw markdown content the platform produced. |
| html | string | The rendered HTML form of the content, suitable for display. |
| excerpt | string | A whitespace-collapsed plain-text excerpt of the content, suitable for list views. |
| search_queries | string[] | The web search queries the platform ran while producing this answer, if any. |
| prompt | Prompt | The originating prompt. Returned when requested via |
| monitor | Monitor | The monitor this response ran under. Returned when requested via |
| project | Project | The project this response belongs to. Returned when requested via |
| created_at | datetime | When the response was recorded. |
| updated_at | datetime | When the response was last updated. |