Find Email by LinkedIn
Find Email by LinkedIn
Find a person's professional email address using their LinkedIn profile URL. This enrichment returns the discovered email along with person details like full name, job title, and company name when available.
[!NOTE]
See the API Guide for the shared request lifecycle (sync, async polling, async webhook), error envelope, rate limits, custom_vars, and deduplication. This page documents only the fields and behaviour unique to this endpoint.
Try it
Pricing
Endpoint
Examples
Output Fields
Email Status Values
| Status |
Description |
valid |
Email address has been verified as deliverable |
risky |
Email address exists but may have deliverability issues (catch-all domain, etc.) |
not_found |
No email address could be found for this LinkedIn profile |
blacklisted |
Domain is blacklisted and cannot be queried |
Validation Errors
Missing LinkedIn URL
{
"message": "The linkedin url field is required.",
"errors": {
"linkedin_url": ["The linkedin url field is required."]
}
}
{
"message": "The linkedin url field must be a valid URL.",
"errors": {
"linkedin_url": ["The linkedin url field must be a valid URL."]
}
}
URL Too Long
{
"message": "The linkedin url field must not be greater than 500 characters.",
"errors": {
"linkedin_url": [
"The linkedin url field must not be greater than 500 characters."
]
}
}
Async Mode
For asynchronous processing, add async: true to your request:
curl -X POST https://api.skael.de/api/enrichments/find_email_linkedin \
-H "Authorization: Bearer eak_your_api_key_here" \
-H "Content-Type: application/json" \
-d '{
"linkedin_url": "https://www.linkedin.com/in/johndoe",
"async": true,
"callback_url": "https://yourapp.com/webhooks/enrichment"
}'
See the API Guide for details on async polling and webhook modes.