Pagination
All you need to know about our pagination formats and protocols
Paginated Response Format(Fields)
items:
An array containing the actual data items for the current page.
total_items:
The total number of items across all pages.
page:
Specifies which page number you want to retrieve. If not provided, defaults to the first page.
limit:
Defines how many items you want to retrieve per page. If not provided, a default size is used.
total_pages:
The total number of pages available given the current page size.
Please note that to request a specific page or change the page size (limit), use the page
and limit
query parameters, respectively.
Updated about 1 year ago