Spring Systems uses the API cursor approach for pagination when making get requests. Your initial API response will include the total records to be returned as well as the default limit. (You may override this limit up to the max limit which is also provided).
When the total results exceed the limit, you will also be presented with the next cursor so that your system may create the appropriate URL to obtain the next page of results. You will also be presented with a pre-built URL if you find that easier.
You may override the per page quantity up to the max value. To do so, simply pass pagination.limit/x within the call to override.
See section “Response Metadata” for additional detail.

