Skip to main content
GET
/
tags
List tags
curl --request GET \
  --url https://inboxapp.com/api/v1/tags \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "color": "#3b82f6"
  }
]

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

OK

id
string
required

Unique identifier for the tag.

Example:

"l44e15irdq4db30i77cgphhx"

name
string
required

The display name of the tag.

Examples:

"High Priority"

"Follow Up"

"VIP"

color
string | null
required

Hex color code for the tag (e.g., #3b82f6 for blue). Null if no color is set.

Example:

"#3b82f6"