The result list is split into pages of {{ pagination.page_size }} items. Only the first page is returned by default; to get a different page use the {{ pagination.page_query_param }} query parameter:
{{ url }}?{{ pagination.page_query_param }}=<page>
{% if pagination.page_size_query_param %} It is possible to change the number of items per page by adding the {{ pagination.page_size_query_param }} query parameter to the URL. {% if pagination.max_page_size %} The maximum allowed page size is {{ pagination.max_page_size }}. {% endif %} {% endif %}
The following metadata field are provided regarding the pagination:
number_of_objects | total number of items in the list |
---|---|
approximated_number_of_objects | whether the total number is an exact number or just an approximation |
limited_number_of_objects | whether they may be more number items than the reported number of objects |
pages_total | total number of pages |
page_size | number of items in each page |
page | current page number |
next | URL of the next page, or null if this is the last page |
previous | URL of the previous page, or null if this is the first page |