Skip to main content
POST
/
v2
/
enrich
Reverse Email Lookup
curl --request POST \
  --url https://api.example.com/v2/enrich \
  --header 'Content-Type: application/json' \
  --data '
{
  "action": "<string>",
  "params": {
    "email": "<string>"
  }
}
'
{
  "success": true,
  "data": {
    "email_parsed": {
      "original_email": "[email protected]",
      "first_name": "Jane",
      "last_name": "Doe",
      "company_domain": "acme-corp.com",
      "parsing_confidence": "high"
    },
    "person_found": {
      "full_name": "Jane Doe",
      "first_name": "Jane",
      "last_name": "Doe",
      "headline": "Senior Product Manager at Acme Corp",
      "location": "San Francisco Bay Area",
      "industry": "Computer Software",
      "profile_url": "https://www.linkedin.com/in/jane-doe-42",
      "experience": [
        {
          "company": "Acme Corp",
          "title": "Senior Product Manager",
          "start_date": "1/2023",
          "end_date": ""
        }
      ]
    }
  },
  "metadata": {
    "action": "reverse_email",
    "credits_consumed": 1,
    "timestamp": "2026-04-26T10:35:00Z"
  }
}

Overview

Reverse-resolves a professional email address into the matching LinkedIn profile, returning the person’s full identity (name, headline, current company, profile URL, etc.).
Only professional email addresses are accepted. Personal providers (Gmail, Yahoo, Hotmail, Outlook, iCloud, ProtonMail, free.fr, orange.fr, etc.) are rejected with INVALID_PARAMS.This endpoint consumes 1 credit per request.

Request

action
string
required
Must be "reverse_email".
params
object
required

Response

success
boolean
Indicates whether the request was successful.
data
object
metadata
object
{
  "success": true,
  "data": {
    "email_parsed": {
      "original_email": "[email protected]",
      "first_name": "Jane",
      "last_name": "Doe",
      "company_domain": "acme-corp.com",
      "parsing_confidence": "high"
    },
    "person_found": {
      "full_name": "Jane Doe",
      "first_name": "Jane",
      "last_name": "Doe",
      "headline": "Senior Product Manager at Acme Corp",
      "location": "San Francisco Bay Area",
      "industry": "Computer Software",
      "profile_url": "https://www.linkedin.com/in/jane-doe-42",
      "experience": [
        {
          "company": "Acme Corp",
          "title": "Senior Product Manager",
          "start_date": "1/2023",
          "end_date": ""
        }
      ]
    }
  },
  "metadata": {
    "action": "reverse_email",
    "credits_consumed": 1,
    "timestamp": "2026-04-26T10:35:00Z"
  }
}