Pagination
Exploring Pagination Techniques
When you access endpoints that return a large amount of data, our API automatically limits the number of items in the response. This restriction is a standard safety measure to reduce the server load.
Our API uses offset-based pagination
- must always be numeric and greater than zero
Parameters
- limit: Indicates a limit on the number of objects to return on a page
- Optional
- ranging between 1 and 100
- default is 10
- skip: It is required to return a certain number of objects after a certain number of results.
- Optional
- default is 0
Example
For example, to retrieve ten objects on the 5th page, you can apply the below limit and skip:
limit=10&skip=40will skip the first forty objects and return ten objects only, i.e. from41through the50.
Updated over 1 year ago
