v1

latestOpenAPI 3.0.32026-07-26120117318.1 KB
Entitlements

List entitlement definitions

Returns a paginated list of entitlement definitions for the authenticated project. Entitlements are ordered by creation date (newest first).

get/entitlements

Query parameters

limitinteger

Maximum number of entitlements to return. Min 1, max 100.

starting_afterstring

Cursor for pagination. Pass the id of the last entitlement from the previous page to fetch the next page.

Response

A paginated list of entitlement definitions.

object'list' required
urlstring required
has_moreboolean required
next_cursorstring

Present only when has_more is true.

Example response

{
  "url": "/v4/entitlements",
  "data": [
    {
      "id": "premium",
      "url": "/v4/entitlements/premium",
      "description": "Premium access entitlement",
      "product_ids": [
        "premium_monthly",
        "premium_annual"
      ],
      "created_at": "2025-09-15T12:30:00Z",
      "updated_at": "2025-11-03T10:26:40Z"
    }
  ]
}