SOLUTIONS

Reverse Email Lookup

Have an email address and nothing else? Get back the name, title, and company behind it.

Endpoint

GET/v1/enrich/reverse-email-lookup
ParamTypeNotes
emailstringRequired

Example

curl "https://api.fyonta.com/v1/enrich/reverse-email-lookup?email=jane.doe@acme.com" \
  -H "X-API-Key: $FYONTA_KEY"

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

Use cases

Related