SOLUTIONS

Domain Search

Point it at a company domain and get back the people who work there, filterable by title, with pagination.

Endpoint

GET/v1/enrich/domain-search
ParamTypeNotes
company_urlstringCompany domain
titlestringFilter by job title
pageintDefault 1
has_emailboolOnly return contacts with a known email

Example

curl "https://api.fyonta.com/v1/enrich/domain-search?company_url=acme.com&title=Marketing" \
  -H "X-API-Key: $FYONTA_KEY"

{
  "data": [{ "first_name": "Jane", "last_name": "Doe", "title": "VP Marketing", "company_name": "Acme Corp" }],
  "result_count": 1, "page": 1
}

Use cases

Related