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
- Request the first page:
- Check the
has_morefield in the response. Iftrue, use thenext_cursorvalue to request the next page:
- Repeat until
has_moreisfalse.
Tips
- Always use the
next_cursorvalue 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.