Pagination
Learn how to iterate through a collection’s pages.
All collection endpoints are subject to pagination. This means you most likely won’t be able to retrieve all resources in a single HTTP request. Paging is enforced in order to enhance response times and lower error rates.
You can control paging through two query parameters:
(int) limit
defines the maximum number of items per page you will get.(string) page
is the continuation token obtained during a previous request allowing you to get the next page or the previous page.
The Lucca API enforces a maximum value to the limit
parameter, usually 100, as well as a default value if none is given. Please refer to the Lucca API Reference for the given collection endpoint.
Paginated responses have:
items
contains the resources in the given page ;totalCount
indicates how many resources exist across all pages (while applying the query filters) ;links
contains both the links to the previous and the next pages (null
if there is none).
Both the totalCount
and links
properties are only returned if your HTTP request explicitely includes them: ?include=totalCount,links
.
Paginated requests should be sorted explicitely. By default, most API endpoints fall back to a “id ascending” sorting when the ?sort
query parameter is omitted.
As a result, retrieving all pages may look something like this:
Was this page helpful?