Skip to main content
GET
List licenses (paginated)
The response contains the licenses tied to your organization, wrapped in a paginated envelope: the rows travel under licenses and the paging metadata under pagination. page, limit and sort are optional. Calling this endpoint with no query params returns only the first 10 licenses — the response is a normal 200 OK, so if your organization has more than 10 licenses and you do not paginate, the extra ones are simply missing. Send an explicit limit, or page through the results while pagination.hasNextPage is true. Requesting a page beyond the last one is not an error: it answers 200 with an empty licenses array and the real totalCount.

Authorizations

X-API-KEY
string
header
required

Query Parameters

page
integer
default:1

Page number (1-based). Defaults to 1.

Required range: x >= 1
limit
integer
default:10

Page size, up to 100. Defaults to 10 — send it explicitly if you expect more.

Required range: 1 <= x <= 100
sort
enum<string>
default:asc

Sort direction applied to the license uid. Defaults to ascending.

Available options:
asc,
ascending,
desc,
descending

Response

Paginated list of licenses

licenses
object[]
pagination
object

Cursor-like pagination structure returned alongside results.