Hem
August 15, 2022, 9:17am
2
Hey @JuloSancho
This wiki might be helpful. By default all API responses are paginated. You need to provide the page number in the subsequent requests to get all data
Why pagination?
Pagination limits the amount of data that you can get in a single call. Rather than obtaining the entire collection/list items in bulk, one can retrieve them in a page-wise manner. This is to avoid excessive load for the product and also for the consuming client.
How do I know if the responses are paginated?
Most of the lists/item collections are paginated. Within the response’s additional_data object, a pagination object will be set upon pagination. The additional_data.pagina…