User agents that reached the network over a trailing window, with request counts and how each was classified, for reviewing crawlers, bots and automation. Operator only. Names no visitor: agents are grouped across all traffic, and the domain count is a number, never a list. Read from raw request events, so the window cannot reach past raw retention (30 days by default).
Parameters
Output
application/jsonagents
array
Required
No description available.
Errors
AnalyticsDisabled
No analytics store is configured, so no traffic was recorded. Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "AnalyticsDisabled",
"description": "No analytics store is configured, so no traffic was recorded."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"agents"
],
"properties": {
"agents": {
"type": "array",
"items": {
"ref": "#agent",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"days": {
"type": "integer",
"default": 7,
"maximum": 30,
"minimum": 1,
"description": "How many days back the window reaches from now."
},
"limit": {
"type": "integer",
"default": 50,
"maximum": 200,
"minimum": 1,
"description": "Maximum agents to return, busiest first."
},
"domain": {
"type": "string",
"description": "Only count requests to this hostname."
},
"clientClass": {
"type": "string",
"description": "Only return agents the classifier put in this class.",
"knownValues": [
"bot",
"browser",
"unknown"
]
}
}
},
"description": "User agents that reached the network over a trailing window, with request counts and how each was classified, for reviewing crawlers, bots and automation. Operator only. Names no visitor: agents are grouped across all traffic, and the domain count is a number, never a list. Read from raw request events, so the window cannot reach past raw retention (30 days by default)."
}