Quickstart
This page assumes a client secret. If you do not have one yet, or you need write access, start at Authentication.
Set it once in your shell:
1. List entities
GET /v1/entities returns a page of companies, investors, and accelerators.
The response is a page object — the records are in content, and the rest
describes your position in the result set:
number is zero-based, so the first page is 0.
2. Narrow it with filters
Filters are query parameters, and most accept the parameter more than once to mean “any of these”:
GET /v1/entities accepts more than sixty filters covering industry, location,
accelerator cohort, fundraising activity, and operating status.
Pagination and filtering covers how they combine.
3. Search across everything
When you have a phrase rather than a set of filters, POST /v1/search/all runs
the entity, person, and news engines and returns a typed result page for each
scope:
page and size apply to every scope. Cross-domain sort is not supported —
each scope orders its own results by relevance.
Next
- Authentication — the three credential types and what each reaches
- Pagination and filtering — paging, sorting, and combining filters
- Errors — the problem detail body and rate limiting
- API reference — every endpoint, parameter, and schema