LinkedIn API

LinkedIn Email API

Find the deliverability-validated work email behind a LinkedIn profile URL or public ID. Returns each discovered email with its deliverability, validation status, and quality score, plus the person's name and headline.

POST/v1/run/linkedin.email
Uptime
99.85%
30d · 651 calls
Requests
652
30d · weekly, last 12 wks
Response
9.0s
median · 30d

Pricing

One price, in dollars

Try it

Make your first request

Open in
Get a free key
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
  "data": {
    "avatarUrl": "https://example.com/image.jpg",
    "emails": [
      {
        "deliverable": true,
        "email": "alex@example.com",
        "qualityScore": 5,
        "status": "active",
        "validEmailServer": true
      }
    ],
    "firstName": "Alex",
    "headline": "Example title",
    "lastName": "Rivera",
    "linkedinUrl": "https://example.com/page"
  },
  "found": true
}
Response interface
interface LinkedinEmailResponse {
  data: {
    avatarUrl?: string;
    emails: {
      deliverable?: boolean;
      email: string;
      qualityScore?: number;
      status?: string;
      validEmailServer?: boolean;
    }[];
    firstName?: string;
    headline?: string;
    lastName?: string;
    linkedinUrl?: string;
  } | null;
  found: boolean;
}

Full parameter and response reference - every field, type, and example for this endpoint.

Reference

Request, response, and price

Last verified 2026-09-16 · uptime and latency measured over 30d
POST /v1/run/linkedin.email
curl -X POST https://api.getanyapi.com/v1/run/linkedin.email \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"profileUrl":"https://www.linkedin.com/in/satyanadella"}'
FieldTypeExample value
Request body
profileUrlstring"https://www.linkedin.com/in/satyanadella"LinkedIn profile URL or public identifier (the last part of the URL) to find the deliverability-validated work email for.
Response
dataobjectThe profile with its discovered emails, or null when nothing was found.
data.avatarUrlstringURL of the profile avatar image.
data.emailsobject[]Deliverability-validated work emails discovered for the profile. Populated whenever the provider has data for the entity.
data.emails[].deliverablebooleanTrue when the email passed deliverability checks (including SMTP).
data.emails[].emailstringDiscovered work email address. Populated whenever the provider has data for the entity.
data.emails[].qualityScoreintegerConfidence score for the email, 0-100.
data.emails[].statusstringValidation status of the email (e.g. valid). Populated whenever the provider has data for the entity.
data.emails[].validEmailServerbooleanTrue when the domain has a valid mail server.
data.firstNamestringFirst name on the LinkedIn profile.
data.headlinestringProfile headline.
data.lastNamestringLast name on the LinkedIn profile.
data.linkedinUrlstringCanonical LinkedIn profile URL.
foundbooleanTrue when at least one email was discovered for the profile.
Price
Price per requestUSD$0.011
Price /1k reqUSD$11.00

FAQ

About the LinkedIn Email API

The AnyAPI LinkedIn Email API returns LinkedIn email data as normalized JSON from one POST call to /v1/run/linkedin.email. Find the deliverability-validated work email behind a LinkedIn profile URL or public ID. Returns each discovered email with its deliverability, validation status, and quality score, plus the person's name and headline. AnyAPI returns one normalized schema whichever source serves it. It costs from $11 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 99.8% of LinkedIn email calls through AnyAPI succeeded, with a median response time of 9.0 seconds across 651 measured calls.

It costs from $11 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.

Find the deliverability-validated work email behind a LinkedIn profile URL or public ID. Returns each discovered email with its deliverability, validation status, and quality score, plus the person's name and headline. The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.

Over the last 30 days, 99.8% of LinkedIn email calls through AnyAPI succeeded, with a median response time of 9.0 seconds across 651 measured calls. These are AnyAPI's own measurements of traffic through the gateway, recomputed continuously, not a published service-level target.