KonbiniAPI

Get user profile from LinkedIn with KonbiniAPI

Returns profile information for a public LinkedIn member: headline, location, and a simple list of job titles and school/employer names. Fields the member…

This API endpoint returns profile information for a public LinkedIn member: headline, location, and a simple list of job titles and school/employer names. Fields the member has restricted are omitted.

Perfect for

  • Data Analytics
  • Market Research
  • Platform Integration

1. Make the request

const response = await fetch("https://api.konbiniapi.com/v1/linkedin/users/satyanadella", {
  headers: { "Authorization": "Bearer YOUR_API_KEY" }
});

const data = await response.json();

2. Get clean JSON

Response (200 OK)
{
  "data": {
    "@context": [
      "https://www.w3.org/ns/activitystreams#",
      "https://konbiniapi.com/ns/social#"
    ],
    "type": "Person",
    "id": "https://www.linkedin.com/in/reidhoffman",
    "url": "https://www.linkedin.com/in/reidhoffman",
    "name": "Reid Hoffman",
    "preferredUsername": "reidhoffman",
    "summary": "Creator, Top Voice",
    "location": "United States, US",
    "address": {
      "addressLocality": "United States",
      "addressCountry": "US"
    },
    "followerCount": 2783363,
    "icon": {
      "type": "Image",
      "url": "https://media.licdn.com/dms/image/v2/D4E03AQExample/profile-displayphoto-shrink_800_800/0/1700000000000"
    },
    "role": [
      "Co-Founder, Executive Board Chair",
      "Co-Founder, Board Member"
    ],
    "affiliation": [
      "Manas AI",
      "Greylock"
    ],
    "education": [
      "Stanford University",
      "Oxford University"
    ],
    "language": [
      "English"
    ]
  }
}