Pagination
All list
API operation endpoints are paginated. You can customise the pagination per request, by specifying the limit
and offset
parameters in the query.
limit
describes the number of results to show per page. offset
is the initial index to from which to return the results, i.e. the ID
of the entry from which to start showing results.
Each response body contains count
, next
and previous
information. count
describes the total number of entries, next
is the URL that will return the next set of results, similarly previous
returns the previous set of results.
Updated almost 5 years ago