Pagination
Some methods return paginated results. The formatting of a paginated result is always:
{
"pagination": {
"next_page": "...",
"prev_page": "...",
"last_page": "...",
"page": "...",
"items": "...",
"pages": "...",
"from": "...",
"to": "...",
"count": "..."
},
"records": [
...
]
}The pagination object contains metadata about the current page and links to other pages. The records array contains the actual data for the current page.
Pagination Fields
next_page: The number of the next page (if available)
prev_page: The number of the previous page (if available)
last_page: The number of the last page
page: The current page number
items: The number of items per page
pages: The total number of pages
from: The starting index of the current page's items
to: The ending index of the current page's items
count: The total number of items across all pages
Fields that are not applicable (e.g., prev_page on the first page) will be omitted from the response.
Usage Example
Let's say you make a GET request to a paginated endpoint:
You might receive a response like this:
To get the next page of results, you would make a request to:
Last updated
Was this helpful?