SOLUTIONS

Email Finder

Give it a LinkedIn URL, or a company domain plus a first and last name — get back a verified work email and the profile behind it.

Endpoint

GET/v1/enrich/email-search
ParamTypeNotes
linkedin_urlstringProvide this alone, or the three fields below
company_urlstringCompany domain
first_name / last_namestringRequired together with company_url if no LinkedIn URL

Example

curl "https://api.fyonta.com/v1/enrich/email-search?company_url=acme.com&first_name=Jane&last_name=Doe" \
  -H "X-API-Key: $FYONTA_KEY"

{
  "data": { "first_name": "Jane", "last_name": "Doe", "email": "jane.doe@acme.com", "title": "VP Sales", "company_name": "Acme Corp" },
  "result_count": 1
}

Use cases

Related