← Docs

API pagination

All list endpoints use cursor-based pagination.

Parameters

FieldTypeDescription
cursorstringOpaque token from previous page
limitintMax items per page (default 50, max 100)

Response shape

{
  "data": [ ... ],
  "cursor": "eyJvZmZzZXQiOjUwfQ==",
  "has_more": true
}
  • cursor — pass as ?cursor= to fetch the next page
  • has_more false means you have reached the end

Example request

GET /v1/licenses?limit=25&cursor=eyJvZmZzZXQiOjI1fQ==
Authorization: Bearer <token>
Cursors are opaque and may change format. Always treat them as black-box tokens — never parse or construct them client-side.