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"
}
}
Identify a person from their professional email address.
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"
}
}
INVALID_PARAMS.This endpoint consumes 1 credit per request."reverse_email".Show params properties
Show data properties
Show email_parsed properties
@)."high", "medium", or "low".full_name, first_name, last_name, headline, location, summary, industry, experience, education, skills, profile_picture_url, connection_count, etc.{full_name, first_name, last_name}.{
"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"
}
}
Was this page helpful?