Pagination

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_objectstotal number of items in the list
approximated_number_of_objectswhether the total number is an exact number or just an approximation
limited_number_of_objectswhether they may be more number items than the reported number of objects
pages_totaltotal number of pages
page_sizenumber of items in each page
pagecurrent page number
nextURL of the next page, or null if this is the last page
previousURL of the previous page, or null if this is the first page