Find Emails by LinkedIn URL

Use this endpoint to find a person's email based on their LinkedIn profile URL. It extracts public profile data - such as name, title, and company - and applies advanced verification to return accurate, privacy-compliant results.

Endpoint

POST
https://api.anymailfinder.com
/v5.1/find-email/linkedin-url

Pricing

  • 2 credits: charged only when a valid email is found.
  • Free: if the result is risky, blacklisted, or not found.
  • Repeated searches within the past 30 days are free.

Authentication

Include your API key using the Authorization header.
Refer to the Authentication page for setup instructions.

Performance

  • Timeout recommendation: 180 seconds.
    Searches are performed in real time. Response times depend on factors like the company's SMTP server, website responsiveness, and advanced operations to uncover catch-all emails.
  • Rate limit recommendation: 6 requests per minute.
    We recommend no more than 6 requests per minute (1 every 10 seconds) to ensure stable performance.

Code example

curl -X POST "https://api.anymailfinder.com/v5.1/find-email/linkedin-url" \
-H "Authorization: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"linkedin_url": "https://www.linkedin.com/in/satyanadella/"}'

Request parameters

Send as JSON in the POST body:

ParameterExample valueDescription
linkedin_url
string
"https://www.linkedin.com/in/satyanadella/"The LinkedIn profile URL of the person.

Headers

ParameterExample valueDescription
x-webhook-url
string - optional
"https://yourdomain.com/webhook"If provided, the result will be POSTed to this URL instead of waiting for the response.

Response

200OK
  • Without webhook: The request responds once the search completes, returning the full result below.
  • With webhook: The request returns immediately with 200 OK, and the result will be sent to the specified x-webhook-url via POST.
{
"email": "satyan@microsoft.com",
"email_status": "valid",
"person_company_name": "Microsoft",
"person_full_name": "Satya Nadella",
"person_job_title": "Chairman and CEO"
}
PropertyTypeDescription
emailstring | nullThe email found, or null if not found.
email_statusstringThe email status. One of the following:
validThe email is deliverable and verified. More info
riskyThe email may exist, but verification is inconclusive. More info
not_foundNo email could be found for this person. More info
blacklistedThis email or domain is blocked due to a request or policy restriction.
Risky emails might bounce. They're provided for free. Use only valid emails to protect your sender reputation. More info
person_company_namestring | nullThe person's company name.
person_full_namestring | nullThe full name of the person.
person_job_titlestring | nullThe job title of the person.
Note: The original input is also returned in the response under the input field. This can help with debugging or automating workflows in no-code tools.
400Bad Request
401Unauthorized
402Payment Needed

Need Help?

Our team is experienced with APIs and is here to help. Contact us via chat or email at team@anymailfinder.com.