v1
latestOpenAPI 3.0.32026-07-26120117318.1 KBEntitlements
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.
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"
}
]
}