Find the email address associated with a LinkedIn profile. This endpoint analyzes the LinkedIn profile and attempts to find the professional email address.
This endpoint costs 1 credit per request.
Body Parameters
Person’s first name
Required if linkedin_url is not provided
Person’s last name
Required if linkedin_url is not provided
Company domain (e.g., “company.com”)
Recommended over company_name for better accuracy
Company name (will be used to find domain)
Less accurate than providing company_domain directly
Response
Request status (success/error)
Array of alternative email addresses found
Whether the domain has catch-all email enabled
Primary domain used for the email
Array of domains that were tested
Array of domains after filtering
Whether this is the current company
Array of domains extracted from profile analysis
Success Response
Email Not Found
{
"status" : "success" ,
"data" : {
"email" : "jeff@amazon.com" ,
"alternatives" : [ "jbezos@amazon.com" ],
"catchall" : false ,
"domain_used" : "amazon.com" ,
"domains_tested" : [ "amazon.com" , "blueorigin.com" ],
"domains_filtered" : [ "amazon.com" ],
"companies_found" : [
{
"name" : "Amazon" ,
"linkedin_url" : "https://linkedin.com/company/amazon" ,
"domain" : "amazon.com" ,
"is_current" : false
},
{
"name" : "Blue Origin" ,
"linkedin_url" : "https://linkedin.com/company/blue-origin" ,
"domain" : "blueorigin.com" ,
"is_current" : true
}
],
"domains_extracted" : [ "amazon.com" , "blueorigin.com" ],
"person_info" : {
"full_name" : "Jeff Bezos" ,
"first_name" : "Jeff" ,
"last_name" : "Bezos" ,
"headline" : "Executive Chairman at Amazon, Founder of Blue Origin" ,
"location" : "Seattle, Washington, United States"
}
}
}
Notes
You can use either a LinkedIn URL or provide first_name + last_name with company information
Recommendation : Provide company_domain
directly instead of company_name
for better accuracy and faster processing
If no email is found, the email
field will be null
The catchall
field indicates if the domain accepts all email addresses
Alternative email addresses may be provided when multiple options are found