Email Finder API

Find a person’s professional email address from their first name, last name, and company domain. Returns the best-match email and a find_mail flag indicating whether an address was found.

Endpoint: https://api.enrichmentapi.io/email_generator

API Parameters

🔑

Authentication

  • api_key Required
    Your API key from the dashboard.
📧

Query Parameters

  • first_name Required
    The person’s first name.
  • last_name Required
    The person’s last name.
  • domain Required
    The company domain to find the email at (e.g. "acmecorp.com").

API Examples

Code to Integrate
curl -G "https://api.enrichmentapi.io/email_generator" \
  --data-urlencode "api_key=APIKEY" \
  --data-urlencode "first_name=John" \
  --data-urlencode "last_name=Smith" \
  --data-urlencode "domain=acmecorp.com"