GET
/
v4
/
tags
curl --request GET \
  --url https://api.kit.com/v4/tags \
  --header 'X-Kit-Api-Key: <api-key>'
{
  "tags": [
    {
      "id": 3594,
      "name": "Tag B",
      "created_at": "2023-02-17T11:43:55Z"
    },
    {
      "id": 3593,
      "name": "Tag A",
      "created_at": "2023-02-17T11:43:55Z"
    }
  ],
  "pagination": {
    "has_previous_page": false,
    "has_next_page": false,
    "start_cursor": "WzM1OTRd",
    "end_cursor": "WzM1OTNd",
    "per_page": 500
  }
}

Authorizations

X-Kit-Api-Key
string
header
required

Authenticate API requests via an API Key

Query Parameters

after
any
before
any
include_total_count
string
per_page
any

Response

200
application/json

Returns a paginated list of all tags for your account

The response is of type object.