Skip to main content
List endpoints return paginated results using offset-based pagination. You control the page size and position with two query parameters.

Parameters

Response shape

Every paginated response includes these fields:

Example

Fetch the first page of applications:
Fetch the next page:

Paging through all results

To iterate through every item, increment offset by limit until you’ve fetched total items.
Use the smallest limit that works for your use case. If you only need to check whether items exist, limit=1 keeps the response fast.