Skip to main content
All list endpoints return paginated results using offset-based pagination.

Parameters

ParameterTypeDefaultDescription
limitinteger50Items per page (1-100)
offsetinteger0Items to skip

Response format

FieldDescription
totalTotal number of items matching the query
limitPage size used
offsetNumber of items skipped
has_moreWhether more items exist beyond this page

Iterating through all results

Filtering and sorting

Most list endpoints support filtering and sorting via query parameters. Filters use operator-based syntax:
OperatorExampleDescription
eq.value?global_status=eq.newEquals
neq.value?global_status=neq.archivedNot equals
gt.value?created_at=gt.2026-01-01Greater than
gte.value?created_at=gte.2026-01-01Greater than or equal
lt.value?amount=lt.50000Less than
lte.value?amount=lte.50000Less than or equal
like.%value%?first_name=like.%Sophie%Case-sensitive match
ilike.%value%?first_name=ilike.%sophie%Case-insensitive match
is.null?archived_at=is.nullIs null
is.not_null?archived_at=is.not_nullIs not null
Sorting uses a sort parameter with - prefix for descending order: