API pagination
All list endpoints use cursor-based pagination.
Parameters
| Field | Type | Description |
|---|---|---|
| cursor | string | Opaque token from previous page |
| limit | int | Max 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 —
falsemeans 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.