SOLUTIONS

Company Finder

Find companies that match your ICP by industry, services offered, employee count, revenue band, and location — before you ever look for a person.

Endpoint

POST/v1/enrich/company-finder
ParamTypeNotes
industry, services, city, company_name...objectEach takes {"include": [...], "exclude": [...]}
company_urlstringLook up a specific company
page / per_pageintPagination

Example

curl -X POST https://api.fyonta.com/v1/enrich/company-finder \
  -H "X-API-Key: $FYONTA_KEY" -H "Content-Type: application/json" \
  -d '{"industry": {"include": ["Computer Software"]}, "number_of_employees": {"include": ["51-200"]}}'

{
  "data": [{ "company_name": "Acme Cloud Solutions", "industry": "Computer Software", "employee_count": "51-200" }],
  "result_count": 1
}

Use cases

Related