/api/v2/responses/mentions-time-seriesReturn brand mention time series from responses.
Return brand mention time series from responses.
Requires bearer API key
Parameters
X-Project-Id
header
Required for organization-wide API keys on project-scoped endpoints. Project-scoped keys infer the project automatically.
Schema: string
startDate
query
No description provided.
Schema: string:date-time
endDate
query
No description provided.
Schema: string:date-time
granularity
query
Bucket size. Unsupported values fall back to day.
Schema: string (day, week, month)
brandIds
query
Comma-separated values are accepted.
Schema: string
monitorIds
query
Comma-separated values are accepted.
Schema: string
modelIds
query
Comma-separated values are accepted.
Schema: string
timezone
query
IANA timezone used for local date buckets. Invalid values fall back to UTC.
Schema: string
Responses
Successful JSON response.
application/json{
"type": "object",
"additionalProperties": false,
"properties": {
"dates": {
"type": "array",
"items": {
"type": "string"
}
},
"series": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"brandId": {
"type": "string",
"nullable": true
},
"name": {
"type": "string"
},
"domain": {
"type": "string",
"nullable": true
},
"relation": {
"type": "string",
"nullable": true
},
"data": {
"type": "array",
"items": {
"type": "integer"
}
}
},
"required": [
"brandId",
"name",
"domain",
"relation",
"data"
]
}
}
},
"required": [
"dates",
"series"
]
}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.