Listing and Pagination
The orders endpoint allows you to retrieve your orders with support for pagination using an offset. This enables you to efficiently navigate through large sets of orders. The endpoint supports per_page
and offset
query parameters. To retrieve orders with pagination, you must provide a valid API key.
Retrieving a list of orders with a set per page limit
As you can see, the response returns an orders, and pagination object. The orders object contains the list of your orders, and pagination contains two values: per_page, and next_offset.
Retrieving a paginated list of orders
If you want to load more orders with a pagination (next batch of orders without the initial orders that you've already fetched), you will need to use the next_offset value in your next request.
Specification
Last updated