Pagination lets you retrieve large result sets in pages instead of one large response. This keeps requests fast and reliable, and reduces memory and timeout risk. Use the pagination parameters for each endpoint to request the next page until there are no more results. Remember that each page is a separate request that counts toward your rate limits (and any applicable credits), so choose a reasonable page size.Documentation Index
Fetch the complete documentation index at: https://api.tryspecter.com/llms.txt
Use this file to discover all available pages before exploring further.
How it works
Pagination uses two query parameters:page— zero‑based page index (use 0 for the first page)limit— number of items to return on that page
page: 0limit: 50
page=0 because most programming contexts use zero-based indexing. This keeps the logic consistent with common programming conventions and makes the code easier to reason about on both our side and yours.
Upper bound:
limit: 5000