Pagination
the catenda apis use pagination to limit the number of items returned in a response set the number of items in a page and which page to return using the following parameters parameter description page the page number to return, default value is 1 pagesize the number of items to return in a response, default value is 100 the response will include two headers to assist with further pagination operations link header the link header includes urls for the first, last, next, and previous pages of the resource this header is useful for navigating through the pages of a resource and knowing when you have reached the end of the list the following is an example value of the link header for the second page of a resource with 10 items per page url ?pagesize=10\&page=3>; rel="next", ?pagesize=10\&page=1>; rel="prev", ?pagesize=10\&page=1>; rel="first", ?pagesize=10\&page=5>; rel="last" x total count header the x total count header includes the total number of items available in the resource