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"
}
}
Find a professional email address from name + company.
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"
}
}
company_name or company_domain)"find_email".Show params properties
linkedin_url is provided.linkedin_url is provided."acme-corp.com"). Provide either this or company_name. Also accepts domain as an alias.company as an alias.first_name/last_name/company_* become optional. Also accepts profile_url as an alias.Show data properties
null if no valid pattern matched.true if the company domain is catch-all (deliverability not guaranteed).{
"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"
}
}
Was this page helpful?