Pagination

The Space Invoices API limits find requests to 100 results at a time. To fetch the next set of results, you can use the skip filter, like so: ?filter[skip]=100. This will allow you to retrieve results in increments of 100.

In addition to the results, the API also returns the total count of available results in a header called x-total-count. This information is useful when implementing pagination in your application, as it helps you determine the total number of pages or results to display.