StackOne’s allows paginating on API requests that return multiple records using a page cursor. The following optional URL parameters are used for pagination:Documentation Index
Fetch the complete documentation index at: https://docs.stackone.com/llms.txt
Use this file to discover all available pages before exploring further.
The number of records per page.
The
next parameter is used to iterate through data pages.Sample URL
Sample Response
In the response payload, you can find thenext cursor. To get the next page of data send a new request with the next parameter set to this value.
Page Size
By default, thepage_size parameter is set to 25 results per page, you can over-ride this by passing in a custom page size with this parameter. If fewer records remain in the underlying connected provider than a given page_size, you will not receive a next cursor value on the next request.
For example, if you have 17 records in total, all of them will be shown on one page with next parameter being empty. Then you specify the page_size = 10, you’ll get the next value. If you use this next value, you will get a stripped array of the last 7 records.