List endpoints return paginated results using offset-based pagination. You control the page size and position with two query parameters.Documentation Index
Fetch the complete documentation index at: https://api-docs.sevalla.com/llms.txt
Use this file to discover all available pages before exploring further.
Parameters
| Parameter | Type | Default | Range | Description |
|---|---|---|---|---|
limit | integer | 25 | 1-100 | Maximum number of items per page. |
offset | integer | 0 | 0-10000 | Number of items to skip. |
Response shape
Every paginated response includes these fields:| Field | Type | Description |
|---|---|---|
data | array | The items for the current page. |
total | integer | Total number of matching items across all pages. |
offset | integer | The offset used for this request. |
limit | integer | The limit used for this request. |
Example
Fetch the first page of applications:Paging through all results
To iterate through every item, incrementoffset by limit until you’ve fetched total items.