Skip to main content

Query parameters

All list endpoints accept these two query parameters:
limit
integer
default:"varies"
Number of items to return per page. Must be a positive integer. Capped at 500.
page
integer
default:"1"
1-based page index.

Paging response object

Paginated endpoints return a paging object alongside the data array:

Walking all pages

Internal limits

The database enforces a hard 2000-row cap per query. For heavy endpoints like /sources, the API fetches data in internal batches and merges results before responding — you do not need to handle this yourself.