Pagination Parameters
Use query parameters to control pagination:page: Page number (default: 1, minimum: 1)limit: Number of items per page (default: 12, maximum: 100)
Example Request
Pagination Response Format
Paginated responses include apagination object with metadata:
Pagination Metadata Fields
page: Current page numberlimit: Items per pagetotal: Total number of items across all pagestotalPages: Total number of pageshasNext: Whether there’s a next pagehasPrev: Whether there’s a previous page
Example: Fetching All Pages
Best Practices
- Use appropriate page sizes: Balance between number of requests and response size
- Respect rate limits: Don’t paginate too aggressively
- Cache results: Store paginated data when appropriate
- Handle edge cases: Check for empty pages and handle errors gracefully

