Skip to main content
Endpoints that return lists support pagination using limit and offset query parameters.

Parameters

Usage

Append limit and offset as query parameters:

Paginated endpoints

The following endpoints support pagination: The GET /api/v1/scores endpoint returns one score per framework and does not support pagination.

Validation errors

Invalid pagination parameters return a 400 response:

Tips

  • Start with the default limit of 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)