Pagination
Our API utilizes cursor-based pagination, allowing for efficient data retrieval. These query parameters are optional and provide flexibility in data navigation:
Parameter | Description | Optional | Default Value |
---|---|---|---|
limit | Number of items per page | Yes | 10 |
cursor | Reference point for fetching data | Yes | null |
direction | Pagination direction (PREVIOUS or NEXT ) | Yes | null |
Examples:
- Fetch the first page with default limit:
?limit=10
- Fetch the next five items:
?limit=5&cursor=abc123&direction=NEXT
This method ensures easy and efficient navigation through large datasets using query parameters.
Updated 9 months ago