The Cadana API provides support for pagination resources through its collection-based GET API methods. The GET API methods uses offset pagination and accepts the page and limitquery parameters to retrieve your data set.


Request Parameters


page integer ≥ 1

A non-negative page number that indicates which page of the data set to retrieve.

limit integer 1 to 100

This specifies a limit on the number of items to return per page, ranging between 1 and 100.


Response Format


data array

An array containing the actual data items requested, paginated by the request parameters.

meta object

An object containing the pagination information describing the response data structure and how to navigate it.


Meta Structure

limit number

The limit specified by the request parameters. The default limit is 20.

currentPage number

The current page number that the response represents.

itemCount number

The total number of items in the entire data collection, not just the requested page.

pages number

The total number of pages available, calculated based on the specified limit.

skipped number

The number of records that have been skipped over to reach the current page of results.