Skip to main content
Moflay list endpoints use cursor-based pagination. Cursor pagination keeps results consistent when new records are created while you are reading a list.

Pagination parameters

First page request

Paginated response

Next page request

Use the meta.cursor value from the previous response.

End of results

When there are no more pages, hasNextPage is false.

Iterate through all pages

Best practices

  • Keep the same filters and sort options while moving through pages.
  • Stop requesting pages when hasNextPage is false.
  • URL-encode cursor values when building URLs manually.
  • Start from the first page again if a stored cursor no longer works.