Responses include pagination metadata:
limitechoes the page size that was applied.nextCursoris an opaque token. Pass it back ascursorto fetch the next page. Do not parse or build it yourself. It isnullwhen there are no more records.hasMoreistruewhen another page is available.totalis the number of matching records across all pages.
cursor set to the previous response’s nextCursor until hasMore is false.
Invalid cursors
A cursor is valid only for the list andsort it came from. The API responds
with 400 invalid_request when the cursor:
- cannot be decoded;
- was issued by a different list endpoint;
- was issued for a different
sortvalue than the current request.
sort (and other filters) while paging.