limit and offset query parameters.
Parameters
| Parameter | Type | Default | Constraints | Description |
|---|---|---|---|---|
limit | integer | 100 | 1 to 100 | Maximum number of results to return |
offset | integer | 0 | 0 or greater | Number of results to skip |
Usage
Appendlimit and offset as query parameters:
Paginated endpoints
The following endpoints support pagination:| Endpoint | Pagination applies to |
|---|---|
GET /api/v1/recommendations | Recommendation list |
GET /api/v1/discovery | Discovered platforms list |
GET /api/v1/scores endpoint returns one score per framework and does not support pagination.
Validation errors
Invalid pagination parameters return a400 response:
Tips
- Start with the default
limitof 100 and add pagination only if you need smaller pages - If you receive fewer results than your
limit, you have reached the end of the list - Results are ordered by the endpoint’s default sort (e.g., recommendations are sorted by priority ascending, then created date descending)

