Skip to main content
List endpoints return paginated results using cursor-based pagination. Cursors are opaque strings; don’t parse or construct them yourself.

Parameters

GET /customers is the exception; its limit defaults to 20.

Response structure

Every list response includes pagination metadata in meta:
  • hasMoretrue if additional results exist beyond this page
  • nextCursor — Pass this as the cursor query parameter to fetch the next page. null when hasMore is false.