Skip to main content
List endpoints support both pagination styles. Pass ?cursor= from the previous response’s pagination.nextCursor. Cursor pagination is stable under concurrent writes — rows created or deleted while you paginate cannot shift your window.
Stop when nextCursor is absent or hasMore is false.

Offset

Pass ?limit=&offset=; the response includes pagination.total and hasMore. Convenient for page-numbered UIs, but pages can shift if rows are inserted while you paginate.

Sorting

Use ?sort=field:direction, for example ?sort=created_at:asc. Allowed fields are listed per endpoint in the API Reference. Default: created_at:desc.