Linkedin to Email V2

Find email address of an individual using their linkedin profile url.

cURL 'https://api.enrich.so/v2/api/linkedin-to-email?linkedin_profile=https://www.linkedin.com/in/williamhgates'
--header 'Authorization: Bearer <token>'
--header 'Content-Type: application/json'

The Linkedin Email Finder API is an asynchronous endpoint that may return a status code 202 in case the request is taking longer to process, 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",
    "found": true,
    "total_credits": 25000,
    "credits_used": 229,
    "credits_remaining": 24771
}

Status code: 404 NOT FOUND

{
    "error": true,
    "message": "Sorry we couldn't find the email for https://www.linkedin.com/in/williamhgates"
}

Last updated