Documentation Index
Fetch the complete documentation index at: https://docs.get-spotlight.com/llms.txt
Use this file to discover all available pages before exploring further.
Query parameters
All list endpoints accept these two query parameters:Number of items to return per page. Must be a positive integer. Capped at 500.
1-based page index.
Paging response object
Paginated endpoints return apaging object alongside the data array:
| Field | Type | Description |
|---|---|---|
page | integer | Current page number. |
limit | integer | Effective limit used for this response. |
total | integer | null | Total matching rows. May be null on some endpoints. |
nextPage | integer | null | Next page number, or null if this is the last page. |
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.
