KonbiniAPI

Get user articles — LinkedIn API

Returns a public LinkedIn member's published articles. This endpoint is not paginated — everything available is returned in a single response.

GET/v1/linkedin/users/{username}/articles1 credit per request
Example response200OK
{
  "data": {
    "@context": [
      "https://www.w3.org/ns/activitystreams#",
      "https://konbiniapi.com/ns/social#"
    ],
    "type": "string",
    "id": "https://www.linkedin.com/in/reidhoffman/articles/",
    "url": "https://www.linkedin.com/in/reidhoffman/articles/",
    "totalItems": 1,
    "orderedItems": [
      {
        "type": "Article",
        "url": "https://www.linkedin.com/pulse/can-you-outsource-taste-reid-hoffman-qcu3c",
        "name": "Can you outsource taste?",
        "image": [
          {
            "type": "Image",
            "url": "https://media.licdn.com/dms/image/v2/D5612AQF6uHExWXPl8Q/article-cover_image-shrink_720_1280/B56Z.u3RNSLAAQ-/0/1785345152512"
          }
        ],
        "likeCount": 257,
        "attributedTo": {
          "type": "Person",
          "id": "https://www.linkedin.com/in/reidhoffman",
          "url": "https://www.linkedin.com/in/reidhoffman",
          "name": "Reid Hoffman",
          "preferredUsername": "reidhoffman",
          "followerCount": 2783366
        }
      }
    ]
  }
}

Make the request.

One authenticated GET to /v1/linkedin/users/{username}/articles. Authentication and error conventions stay consistent across endpoints. This page shows the path, parameters, response shape, limits, and credit rule for this operation.

Built for

  • Data Analytics
  • Market Research
  • Platform Integration
const response = await fetch("https://api.konbiniapi.com/v1/linkedin/users/satyanadella/articles", {
  headers: { "Authorization": "Bearer YOUR_API_KEY" }
});

const data = await response.json();
Parameters1
  • usernamerequiredIn · PathType · stringLinkedIn username

What you will probably call next.

The LinkedIn endpoints around this one — the same object at a different depth, or the same kind of read.

Try it on your own data.

Get a free API key and make this request in minutes. Failed and timed-out requests are automatically refunded.