/api/v2/analytics/crawlers/trendReturn crawler traffic trend.
Return crawler traffic trend.
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
crawlers
query
Comma-separated values are accepted.
Schema: string
statusCodes
query
Comma-separated values are accepted.
Schema: string
path
query
No description provided.
Schema: string
pathMatch
query
No description provided.
Schema: string
granularity
query
Bucket size. Unsupported values fall back to day.
Schema: string (hour, day, week, month)
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": {
"crawler": {
"type": "string"
},
"data": {
"type": "array",
"items": {
"type": "number"
}
}
},
"required": [
"crawler",
"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.