What you can search on
Company search accepts filters across three dimensions: firmographics, technographics, and signals. You can combine any of these in a single request toPOST /api/v1/companies/search.
Firmographics
Firmographic filters describe who a company is as a business entity.| Field | Description | Example |
|---|---|---|
query | Text search on name or domain | "Acme" |
filters.industries | Industry verticals | ["Software"] |
filters.employeeCount.min/max | Headcount range | 10 / 500 |
filters.locations | Country or city filters | ["United States"] |
filters.company.domains | Exact domain filters | ["acme.com"] |
Technographics
Technographic filters let you target companies based on the tools they use.| Field | Description | Example |
|---|---|---|
query | Mention tools or technologies in natural language | "companies using Salesforce" |
Signals
Signal filters surface companies showing intent or momentum right now.| Field | Description | Values |
|---|---|---|
filters.signals | Signal labels to prioritize | ["hiring", "funding"] |
How results look
Each company in the response includes asignal_summary array that summarises the most relevant signals (e.g. ["recent funding", "hiring in sales"]), a match_score between 0 and 1, and the full set of firmographic and technographic fields that matched your query.
Pivoting to people
Once you have a list of target companies, you pass company constraints such as domains or names infilters.company to POST /api/v1/people/search. This two-step flow keeps your people search tightly scoped to accounts that already meet your ICP criteria.
Typical workflow
Define your ICP filters
Decide which firmographic, technographic, and signal filters describe your ideal account. For example: software companies with 50–500 employees, using Salesforce, and actively hiring.
Search for matching companies
Send a
POST /api/v1/companies/search request with your query and filters. Poll the returned operation, then review the company list and signal fields to validate the match quality.Review company results
Each result includes firmographic data and signal indicators. Note the domains or names for the companies you want to pursue.
Search for people at those companies
Pass company filters to
POST /api/v1/people/search to find contacts. You can further filter by title, location, industry, or signals.The
limit parameter defaults to 25 and caps at 100 per request.