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'

The Email Finder API is an asynchronous endpoint that may return a status code 202, indicating that the request has been accepted and the client should retry the same payload after a short delay, as specified in the response message.

Example response

Status Code: 202 ACCEPTED

{
    "status": "in_progress",
    "message": "Request queued. Retry again after a few seconds with the same parameters"
}

Status Code: 200 OK

{
    "email": "username.lastname@example.com",
    "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