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
import requests

api_key = "YOUR_API_KEY"
url = "https://api.enrichmentapi.io/reverse-email"

params = {
    "api_key": api_key,
    "email": "[email protected]"
}

response = requests.get(url, params=params)
if response.status_code == 200:
    print(response.json())