Email Finder
Find email address of an individual using their name and company domain.
cURL 'https://api.enrich.so/v1/api/find-email?fullName=<FirstName LastName>&companyDomain=<example.com>'
--header 'Authorization: Bearer <token>'
--header 'Content-Type: application/json'
Example response
Status Code: 202 ACCEPTED
{
"success": true,
"message": "Your request has been queued. Please try again later"
}
Status Code: 200 OK
{
"email": "[email protected]",
"firstName": "username",
"lastName": "lastname",
"domain": "example.com",
"acceptAll": true,
"found": true,
"total_credits": 25000,
"credits_used": 229,
"credits_remaining": 24771
}
Status code: 404 NOT FOUND
{
"error": true,
"message": "No email found"
}
Last updated