Skip to main content
GET
/
category
List Application Categories
curl --request GET \
  --url https://api.altostrat.io/category \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "9aa03e6a-5c3a-4f1e-9a0a-2b2a1e1d8e90",
    "name": "Social Networking",
    "applications": [
      {
        "id": "9aa13e6a-5c3a-4f1e-9a0a-2b2a1e1d8e91",
        "name": "Facebook",
        "description": "A social networking service.",
        "icon": "https://cdn.altostrat.io/icons/facebook.png",
        "domain_count": 152
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

A list of application categories.

id
string<uuid>

The unique identifier for the category.

Example:

"9aa03e6a-5c3a-4f1e-9a0a-2b2a1e1d8e90"

name
string

The name of the category.

Example:

"Social Networking"

applications
object[]

A list of applications within this category.