LinkedIn API

LinkedIn Profile API

Public profile for a LinkedIn member by URL: name, location, follower count, about and avatar.

POST/v1/run/linkedin.profile
Uptime
99.79%
30d · 12,160 calls
Requests
12,187
30d · weekly, last 12 wks
Response
6.6s
median · 30d

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.
{
  "found": true,
  "data": {
    "name": "Bill Gates",
    "location": "Seattle, Washington, United States",
    "followers": 36400000,
    "about": "Chair of the Gates Foundation. Founder of Breakthrough Energy. Co-founder of Microsoft.",
    "avatarUrl": "https://media.licdn.com/dms/image/williamhgates.jpg"
  }
}
Response interface
interface LinkedinProfileResponse {
  data: {
    about?: string;
    certifications?: {
      issuedAt?: string;
      issuedBy?: string;
      title?: string;
    }[];
    connectionsCount?: number;
    currentPosition?: {
      companyLinkedinUrl?: string;
      companyName?: string;
      duration?: string;
      location?: string;
      position?: string;
    }[];
    education?: {
      degree?: string;
      endDate?: string;
      fieldOfStudy?: string;
      school: string;
      schoolUrl?: string;
      startDate?: string;
    }[];
    experience?: {
      companyLinkedinUrl?: string;
      companyName?: string;
      description?: string;
      duration?: string;
      employmentType?: string;
      endDate?: string;
      location?: string;
      position: string;
      skills?: any[];
      startDate?: string;
      workplaceType?: string;
    }[];
    firstName: string;
    followerCount?: number;
    headline: string;
    honorsAndAwards?: {
      description?: string;
      issuedAt?: string;
      issuedBy?: string;
      title?: string;
    }[];
    languages?: any[];
    lastName: string;
    location?: string;
    openToWork?: boolean;
    photo?: string;
    premium?: boolean;
    projects?: any[];
    publicIdentifier?: string;
    publications?: {
      description?: string;
      publishedText?: string;
      title?: string;
    }[];
    skills?: any[];
    topSkills?: any[];
    url: string;
    verified?: boolean;
  } | 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.profile
curl -X POST https://api.getanyapi.com/v1/run/linkedin.profile \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"https://www.linkedin.com/in/williamhgates"}'
FieldTypeExample value
Request body
urlstring"https://www.linkedin.com/in/williamhgates"Full LinkedIn profile URL.
Response
foundbooleantrue
dataobject
data.namestring"Bill Gates"
data.locationstring"Seattle, Washington, United States"
data.followersnumber36400000
data.aboutstring"Chair of the Gates Foundation. Founder of Breakthrough Energy. Co-founder of Microsoft."
data.avatarUrlstring"https://media.licdn.com/dms/image/williamhgates.jpg"
Price
Price per requestUSD$0.004
Price /1k reqUSD$4.00

FAQ

About the LinkedIn Profile API

The AnyAPI LinkedIn Profile API returns LinkedIn profile data as normalized JSON from one POST call to /v1/run/linkedin.profile. Public profile for a LinkedIn member by URL: name, location, follower count, about and avatar. AnyAPI routes each request across 2 sources and falls back automatically when one fails. It costs from $4 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 99.8% of LinkedIn profile calls through AnyAPI succeeded, with a median response time of 6.6 seconds across 12,160 measured calls.

It costs from $4 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.

Public profile for a LinkedIn member by URL: name, location, follower count, about and avatar. 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 profile calls through AnyAPI succeeded, with a median response time of 6.6 seconds across 12,160 measured calls. These are AnyAPI's own measurements of traffic through the gateway, recomputed continuously, not a published service-level target.