limit companies per
request. For larger result sets, use cursor-based pagination combined with a
sorts rule for deterministic ordering across pages.
Replace
YOUR_API_KEY in each example with your actual API key. All
requests require the x-api-version: 2025-11-01 header.How sorts work
Thesorts parameter orders your results. Each sort rule needs:
column— a dot-path field (e.g.,funding.total_investment_usd,headcount.total,basic_info.name).order— eitherasc(ascending) ordesc(descending).
Paginate through results
When your search matches more companies than yourlimit, use cursor-based pagination to walk through all pages.
First page: send your normal search request.
next_cursor value from the response and pass it in your next request. Keep the same filters, sorts, limit, and fields.
next_cursor is null, which means you have reached the last page.
Next steps
- Filter recipes —
or/nested logic, well-funded-by-country, recently founded. - Search reference — operators, searchable fields, errors.

