Making paginated requests
When a request can return lots of results, it is often set up for pagination. Pagination typically accepts two query parameters $skip
and $top
. Use the $skip
parameter to keep track of your current page and $top
to keep track of the size of your page. Some APIs may limit the size of your pages so that too much data is not returned.