Skip to main content
GET
/
tags
/
{tagId}
Get tag
curl --request GET \
  --url https://inboxapp.com/api/v1/tags/{tagId}
{
  "id": "<string>",
  "name": "<string>",
  "color": "#3b82f6"
}

Path Parameters

tagId
string
required

The ID of the tag to retrieve.

Response

200 - application/json

OK

id
string
required

Unique identifier for the tag.

name
string
required

The display name of the tag.

color
string | null
required

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

Example:

"#3b82f6"