Reverse Email Lookup API

Identify the person behind any email address. Returns full name, LinkedIn profile, job title, company, and location.

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

API Parameters

🔑

Authentication

  • api_key Required
    Your API key from the dashboard.
📧

Query Parameters

  • email Required
    The email address to look up.

API Examples

Code to Integrate
curl -G "https://api.enrichmentapi.io/reverse_email" \
  --data-urlencode "api_key=APIKEY" \
  --data-urlencode "email=john@example.com"
API Response
{
  "person_data": {
    "fullName": "Jordan Lee",
    "first_name": "Jordan",
    "last_name": "Lee",
    "public_identifier": "jordan-lee-4a91c7d2",
    "profile_url": "https://www.linkedin.com/in/jordan-lee-4a91c7d2",
    "headline": "Head of Growth at Acme Corp",
    "website_link": "https://www.acmecorp.com/",
    "about": "Head of Growth at Acme Corp, focused on B2B demand generation and RevOps. Previously led marketing at Beta Inc. BSc Marketing.",
    "get_more_data": "https://api.enrichmentapi.io/person?api_key=APIKEY&profile_id=jordan-lee-4a91c7d2",
    "social": [
      { "platform": "linkedin", "url": "https://www.linkedin.com/in/jordan-lee-4a91c7d2" },
      { "platform": "youtube", "url": null },
      { "platform": "x", "url": null },
      { "platform": "instagram", "url": null }
    ]
  },
  "status": 200
}