go-unifi

List DPI Application Categories

Returns predefined Deep Packet Inspection (DPI) application categories used for traffic identification and filtering. <details> <summary>Filterable properties (click to expand)</summary> |Name|Type|Allowed functions| |-|-|-| |`id`|`INTEGER`|`eq` `ne` `in` `notIn`| |`name`|`STRING`|`eq` `ne` `in` `notIn` `like`| </details>

GET
/v1/dpi/categories

Returns predefined Deep Packet Inspection (DPI) application categories used for traffic identification and filtering.

NameTypeAllowed functions
idINTEGEReq ne in notIn
nameSTRINGeq ne in notIn like
X-Api-Key<token>

UniFi API key. Create one under Control Plane → Admins & Users → your admin → Create API Key (requires controller 9.0.114+).

In: header

Query Parameters

offset?integer
limit?integer
filter?string

Response Body

application/json

curl -X GET "https://example.com/v1/dpi/categories"
{  "offset": 0,  "limit": 25,  "count": 10,  "totalCount": 1000,  "data": [    {      "id": "3|5",      "name": "Network protocols|Business tools"    }  ]}