get/api/v2/responses
List persisted LLM responses.
List persisted LLM responses.
Requires bearer API keyParameters
| Name | In | Description |
|---|---|---|
| X-Project-Id | header | Required for organization-wide API keys on project-scoped endpoints. Project-scoped keys infer the project automatically.string |
| page | query | No description provided.integer |
| size | query | No description provided.integer |
| query | query | No description provided.string |
| monitorIds | query | Comma-separated values are accepted.string |
| promptIds | query | Comma-separated values are accepted.string |
| modelIds | query | Comma-separated values are accepted.string |
| brandIds | query | Comma-separated values are accepted.string |
| sentiments | query | Comma-separated values are accepted.string |
| tags | query | Comma-separated values are accepted.string |
| startDate | query | No description provided.string:date-time |
| endDate | query | No description provided.string:date-time |
Responses
200
application/jsonSuccessful JSON response.
{
"type": "object",
"additionalProperties": false,
"properties": {
"items": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true,
"properties": {
"id": {
"type": "string"
},
"promptId": {
"type": "string"
},
"promptText": {
"type": "string"
},
"monitorId": {
"type": "string",
"nullable": true
},
"modelId": {
"type": "string",
"nullable": true
},
"modelName": {
"type": "string"
},
"providerName": {
"type": "string"
},
"outputText": {
"type": "string"
},
"visibilityScore": {
"type": "integer"
},
"sentimentScore": {
"type": "integer"
},
"sentiment": {
"type": "string",
"enum": [
"positive",
"neutral",
"negative"
]
},
"generatedAt": {
"type": "string",
"format": "date-time"
},
"citationCount": {
"type": "integer"
},
"brandMentionCount": {
"type": "integer"
}
},
"required": [
"id",
"modelName",
"providerName",
"outputText",
"generatedAt"
]
}
},
"total": {
"type": "integer"
},
"page": {
"type": "integer"
},
"size": {
"type": "integer"
},
"totalPages": {
"type": "integer"
}
},
"required": [
"items",
"total",
"page",
"size",
"totalPages"
]
}Try it
Send this request to the local WatchLLM REST handler. Use a key from /workspace/api; organization keys can include X-Project-Id only when the endpoint documents that header.