Skip to main content
Most list endpoints in the Acclaim API use cursor-based pagination. This approach allows you to efficiently navigate through large result sets without the inconsistencies of offset-based pagination.

How It Works

When you request a list of resources (such as wallets, payees, or payouts), the response includes a few helpful fields for pagination:

Request Parameters

You can control pagination with the following query parameters: Example request:

Example Flow

  1. Request the first page:
  1. Check the has_more field in the response. If true, use the next_cursor value to request the next page:
  1. Repeat until has_more is false.

Tips

  • Always use the next_cursor value from the previous response; cursors may expire after some time.
  • Avoid guessing cursor values or reusing them across unrelated queries.
  • If you need sorted results, apply consistent filters (e.g., by creation date).
  • Treat each page of data as immutable — do not assume previously retrieved pages will remain identical over time.
Last modified on March 24, 2026