go-unifi

List DPI Applications

Lists DPI-recognized applications grouped under categories. Useful for firewall or traffic analytics integration. <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/applications

Lists DPI-recognized applications grouped under categories. Useful for firewall or traffic analytics integration.

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/applications"
{  "offset": 0,  "limit": 25,  "count": 10,  "totalCount": 1000,  "data": [    {      "id": "786435|720973",      "name": "Adobe Express|Zoom"    }  ]}