Find companies by tech stack
Import companies using a given technology stack to your webhook
Credits and rate limits
- Credits: 3 enrichment credits per imported company
- Authentication: standard v2 scheme (
X-API-KEY)
401 and no import is created.
Filters
Accepts the same filters as preview (stacks, stack_match, excluded_stacks, countries,
included_industries, excluded_industries, company_size), plus:
webhook_url(required) — where results are POSTedlimit— caps how many companies are imported (and billed). Defaults to 1000, which is also the hard ceiling.streaming— whentrue, companies are POSTed one at a time instead of in a single payloadname— optional import name
Example request
Example response
total_availableis the full match count;total_countis what will be imported (capped bylimit, then the 1000 ceiling).- When nothing matches, the response is
200with{ "total_count": 0, ... }and no import is created.
Webhook payload
Companies are delivered to yourwebhook_url using the same field names as the
other company imports: name, description, website, logo, industry,
location, linkedin_id, linkedin_url, employee_count, employee_range.
Blank fields are omitted.Authorizations
Body
URL that receives the imported company records.
"https://your-company.com/webhooks/stack"
Technology slugs to match. Resolve names to slugs with GET /accounts/technologies.
["shopify", "webflow"]How stacks combine. or matches companies using any listed technology; and requires all of them.
or, and "or"
Technology slugs to exclude.
["wordpress"]ISO country codes, OR-matched against the company's country.
["US", "FR"]LinkedIn industry IDs to include, OR-matched.
["2190", "34"]LinkedIn industry IDs to exclude.
["27"]Company size display buckets to include.
Self-employed, 1-10, 11-50, 51-200, 201-500, 501-1000, 1001-5000, 5001-10000, 10001+ ["11-50", "51-200"]Caps how many companies are imported (and billed). Defaults to 1000, which is also the hard ceiling.
1 <= x <= 1000200
When true, companies are POSTed to the webhook one at a time instead of in a single payload.
false
Optional import name.
"Shopify prospects"