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.
| Param | Type | Notes |
|---|---|---|
linkedin_url | string | Provide this alone, or the three fields below |
company_url | string | Company domain |
first_name / last_name | string | Required together with company_url if no LinkedIn URL |
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
}