Skip to main content
POST
/
v2
/
enrich
Find Email
curl --request POST \
  --url https://api.example.com/v2/enrich \
  --header 'Content-Type: application/json' \
  --data '
{
  "action": "<string>",
  "params": {
    "first_name": "<string>",
    "last_name": "<string>",
    "company_domain": "<string>",
    "company_name": "<string>",
    "linkedin_url": "<string>"
  }
}
'
{
  "success": true,
  "data": {
    "email": "[email protected]",
    "alternatives": [],
    "catchall": true,
    "domain_used": "acme-corp.com",
    "domains_tested": ["acme-corp.com"],
    "domains_filtered": ["acme-corp.com"]
  },
  "metadata": {
    "action": "find_email",
    "credits_consumed": 1,
    "timestamp": "2026-04-26T10:35:00Z"
  }
}

Overview

Finds a professional email address from a person’s name and company. You can identify the target either by:
  • First name + last name + company (company_name or company_domain)
  • LinkedIn profile URL — the service auto-extracts name and current company from the profile
This endpoint consumes 1 credit per request.

Request

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

Response

success
boolean
Indicates whether the request was successful.
data
object
metadata
object
{
  "success": true,
  "data": {
    "email": "[email protected]",
    "alternatives": [],
    "catchall": true,
    "domain_used": "acme-corp.com",
    "domains_tested": ["acme-corp.com"],
    "domains_filtered": ["acme-corp.com"]
  },
  "metadata": {
    "action": "find_email",
    "credits_consumed": 1,
    "timestamp": "2026-04-26T10:35:00Z"
  }
}