API v2
API v2 list endpoints use cursor pagination. Send these query parameters:| Parameter | Default | Maximum | Description |
|---|---|---|---|
limit | 25 | 100 | Number of records to return. |
cursor | - | - | Opaque cursor from the previous page’s nextCursor. |
limitechoes the page size that was applied.nextCursoris an opaque token. Pass it back ascursorto fetch the next page. Do not parse or build it yourself. It isnullwhen there are no more records.hasMoreistruewhen another page is available.totalis the number of matching records across all pages.
cursor set to the previous response’s nextCursor until hasMore is false.
API v1
API v1 uses offset pagination.| Parameter | Default | Maximum | Description |
|---|---|---|---|
max | 10 | 100 | Number of records to return. |
offset | 0 | - | Number of records to skip. |
X-Total-Count response header to get the total number of matching
records.
Some nested list responses also support max_nested. Its default is 10 and
maximum is 100.