Skip to main content

Pagination

List endpoints support pagination via query parameters:

ParameterDefaultDescription
start0Offset to start from
limit30Number of records to return (max varies by entity)
orderByvariesField to sort by
orderByDirASCSort direction (ASC or DESC)

Responses include a total field with the full count of matching records:

{
"total": 150,
"contacts": [ ... ]
}