query field is required.
Endpoint
Request fields
Text & Identity
query — free-text search on company name or domain (up to 256 characters)filters.company.domains — exact domain filters (e.g. ["acme.com"])Firmographics
filters.industries, filters.locations, filters.employeeCount.min/maxTechnographics
Include tools in
query, or use filters.signals for known buying-signal categories.Signals
filters.signals — short signal labels such as ["hiring", "funding"]Pagination
| Field | Default | Maximum | Notes |
|---|---|---|---|
limit | 25 | 100 | Results per page |
Examples
Response
A successful submission returns HTTP202 with an operation ID and poll URL. Poll GET /api/operations/:id until the operation succeeds.
Response fields
| Field | Type | Description |
|---|---|---|
id / operationId | string | Operation ID for polling |
status | string | queued immediately after submission |
pollUrl | string | URL to poll for status and final results |
CompanyCard fields
| Field | Type | Description |
|---|---|---|
id | string | Unique company identifier |
name | string | Company display name |
domain | string | Primary domain |
website | string | Full website URL |
industry | string | Industry classification |
employee_count | number | Headcount |
location | string | Headquarters location |
founding_year | number | Year the company was founded |
revenue_min / revenue_max | number | Annual revenue range in USD |
tech_stack | string[] | Technologies and tools detected |
is_hiring | boolean | Whether the company is actively hiring |
has_recent_funding | boolean | Whether the company has had recent funding activity |
growth_band | string | "low", "medium", or "high" |
match_score | number | Relevance score from 0 to 1 |
signal_summary | string[] | Short human-readable signal descriptions |
Steps to build a target account list
Start with a broad query
Run a search with a broad
query and a small limit to gauge the universe of matching companies.Layer in technographic filters
Add technologies your product integrates with or competes against directly into the natural-language
query.Add buying signals
Add
filters.signals values such as "hiring" or "funding" to surface companies in an active growth phase.Paginate through results
Use
limit to control the number of results returned by each search operation.