Prerequisites
- A Dealroom API key. See Authentication to obtain one.
- An HTTP client (
curl, Postman, or any language with an HTTP library).
1. Obtain an access token
Exchange your API key credentials for a Bearer token:access_token valid for expires_in seconds (typically 86400s / 24h).
Cache it and reuse it — do not request a new token per API call.
2. Query entities
Fetch the 10 highest-valued startups launched in the last 5 years:3. Understand the response
data— array of matching entitiesmeta.total— total matching records (used for pagination)meta.limit/meta.offset— the applied pagination params
4. Paginate through results
Uselimit and offset to page through results:
Next steps
- Learn about Filtering to narrow results with 65+ available filters.
- Explore API Versioning to understand how breaking changes are handled.
- Browse the API Reference for all available endpoints.