API Reference
Pagination
Pagination parameters and response envelopes defined by the API.
Pagination is endpoint-specific. Use only the parameters documented on the endpoint you are calling.
Pagination parameters
cursor—stringPagination cursor from a previous responselimit—integerMaximum number of results to return Example:50- Default:
50 - Maximum: 200
- Default:
Pagination response schemas
PaginatedResult
- Reference:
PaginatedResult- Type:
object - Properties:
result(array<unknown>,required)- Items:
- Type:
unknown
- Type:
- Items:
nextCursor(string)prevCursor(string)total(integer) — Total number of records matching the current filters
- Type:
When a response includes a next cursor, pass it unchanged to the endpoint’s cursor parameter. Stop when no next cursor is returned.