SOLUTIONS

Contact Finder

The broadest search surface — combine title, location, industry, company size, and revenue filters to build a fresh prospect list from scratch.

Endpoint

POST/v1/enrich/contact-finder
ParamTypeNotes
title, company_name, city, industry_linkedin...objectEach takes {"include": [...], "exclude": [...]}
has_email / has_phoneboolRestrict to contacts with known email/phone
page / per_pageintPagination

Example

curl -X POST https://api.fyonta.com/v1/enrich/contact-finder \
  -H "X-API-Key: $FYONTA_KEY" -H "Content-Type: application/json" \
  -d '{"title": {"include": ["CEO"]}, "country_code": {"include": ["US"]}}'

{
  "data": [{ "first_name": "Jane", "last_name": "Doe", "title": "Chief Executive Officer", "company_name": "Acme Corp" }],
  "result_count": 1
}

Use cases

Related