get/api/v2/citations/domains-by-llm
Return citation domains grouped by LLM.
Return citation domains grouped by LLM.
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 |
| startDate | query | No description provided.string:date-time |
| endDate | query | No description provided.string:date-time |
| monitorIds | query | Comma-separated values are accepted.string |
| modelIds | query | Comma-separated values are accepted.string |
| query | query | Search citation title, URL, domain, model, or prompt text. Alias: q.string |
| q | query | Alias for query.string |
| sourceType | query | Single source type filter used by workspace source pages.string |
| sourceTypes | query | Comma-separated source types are accepted.string |
| contentType | query | Single content type filter used by workspace source pages.string |
| contentTypes | query | Comma-separated content types are accepted.string |
| response | query | Filter to citations extracted from one response. Alias: responseId.string |
| responseId | query | Alias for response.string |
| self | query | Filter self-citations or external citations.string (self, external) |
| domain | query | No description provided.string |
| url | query | Partial URL filter.string |
Responses
200
application/jsonSuccessful JSON response.
{
"type": "object",
"additionalProperties": false,
"properties": {
"models": {
"type": "array",
"items": {
"type": "string"
}
},
"domains": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"domain": {
"type": "string"
},
"byModel": {
"type": "object",
"additionalProperties": true
}
},
"required": [
"domain",
"byModel"
]
}
}
},
"required": [
"models",
"domains"
]
}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.