v1

latestOpenAPI 3.1.02026-07-2617125852.3 KB
APIKey

List api key

Requires one of the following scopes: api_keys:read, api_keys:all, all:read, all:all

get/api/v2/api-keys

Query parameters

limitinteger
Example:10

The number of items to return

starting_afterstring
Example:01956fbd-0eb1-72db-a565-82977a586084

The ID of the last item in the previous page - used for pagination. You can use the value of the next_starting_after field from the previous response.

Response

The list of API Key

next_starting_afterstring

The filter for getting the next items after this one, this could either be a UUID, a timestamp, on an email depending on the specific API

Example response

{
  "items": [
    {
      "id": "019f94cd-837d-7036-ad0e-40ee80966f48",
      "name": "My API Key",
      "scopes": [
        "campaigns:create"
      ],
      "key": "a1b2c3d4e5f6g7h8i9j0",
      "organization_id": "019f94cd-838a-7e2f-ac76-250dd29596cb",
      "timestamp_created": "2026-07-24T15:45:24.362Z",
      "timestamp_updated": "2026-07-24T15:45:24.362Z"
    }
  ],
  "next_starting_after": "019f94cd-adf5-71b2-9e0b-79be161ae6de"
}