how to traverse large data sets
All top level resources, the "List" endpoints under each resource support for Pagination.
By default the List API calls will return 10 results per page. By using the page_size
query string parameter the results per page can be increased up to a 100.
When there are more results than can fit on a page, you can loop through the results using page
query string parameter
Example: https://restapi.ordergroove.com/orders?page_size=100&page3
To ensure optimal performance and prevent overloading our system, we recommend against using multiple threads or parallel requests when utilizing pagination. Make sure to limit your API requests to a single concurrency to maintain the stability and responsiveness of our service.