v1
latestOpenAPI 3.0.02026-07-243339471.1 MBGet top application categories by usage
This API endpoint returns the top N application categories ranked by usage (tx + rx bytes) for the requested scope. The maximum time range is 7 days. If the range between start-at and end-at exceeds 7 days, start-at is automatically adjusted to be 7 days before end-at. This is intentional behavior; no error is returned.
Query parameters
The start time in RFC 3339 Format or epoch milliseconds (must be within 7 days of end-at).
The end time in RFC 3339 Format or epoch milliseconds (must be greater than start-at).
Filter by site identifier.
Filter by client MAC address. Forces use of the main data table (not aggregated).
Filter by device serial number. Forces use of the main data table (not aggregated).
Maximum number of items to return per page (1–500). Default: 100.
Filter by SSID name.
Filter by user role.
Zero-based index of the first item to return. Default: 0.
Maximum number of top-ranked application categories to return in total across all pages (1–500). Default: 100.
Response
Successful operation.
Example response
{
"items": [
{
"id": "google",
"type": "network-monitoring/application-category",
"generation": 1,
"createdAt": "2024-11-20T14:14:33Z",
"updatedAt": "2024-11-20T14:14:33Z",
"displayName": "Google",
"txBytes": 1048576,
"rxBytes": 5242880
},
{
"id": "social",
"type": "network-monitoring/application-category",
"generation": 1,
"createdAt": "2024-11-20T14:14:33Z",
"updatedAt": "2024-11-20T14:14:33Z",
"displayName": "Social Media",
"txBytes": 524288,
"rxBytes": 2097152
}
],
"count": 2,
"total": 10,
"offset": 0
}