get/api/v2/analytics/crawlers/events
List crawler events.
List crawler events.
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 |
| startDate | query | No description provided.string:date-time |
| endDate | query | No description provided.string:date-time |
| crawlers | query | Comma-separated values are accepted.string |
| statusCodes | query | Comma-separated values are accepted.string |
| path | query | No description provided.string |
| pathMatch | query | No description provided.string |
Responses
200
application/jsonSuccessful JSON response.
{
"type": "object",
"additionalProperties": false,
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true,
"properties": {
"timestamp": {
"type": "string",
"format": "date-time"
},
"statusCode": {
"type": "integer",
"nullable": true
},
"requestMethod": {
"type": "string"
},
"requestPath": {
"type": "string"
},
"hostname": {
"type": "string",
"nullable": true
},
"userAgent": {
"type": "string"
},
"crawler": {
"type": "string",
"nullable": true
},
"referrer": {
"type": "string",
"nullable": true
},
"country": {
"type": "string",
"nullable": true
}
},
"required": [
"timestamp",
"requestMethod",
"requestPath",
"userAgent"
]
}
},
"total": {
"type": "integer"
},
"page": {
"type": "integer"
},
"size": {
"type": "integer"
},
"totalPages": {
"type": "integer"
}
},
"required": [
"data",
"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.