KonbiniAPI

Get user posts — LinkedIn API

Returns a public LinkedIn member's recent posts and shares. This endpoint is not paginated — everything available is returned in a single response.

GET/v1/linkedin/users/{username}/posts1 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/posts/",
    "url": "https://www.linkedin.com/in/reidhoffman/posts/",
    "totalItems": 1,
    "orderedItems": [
      {
        "type": "Note",
        "id": "https://www.linkedin.com/posts/reidhoffman_blake-scholl-is-leading-the-rebirth-of-american-activity-7486053762244079616-zWLl",
        "url": "https://www.linkedin.com/posts/reidhoffman_blake-scholl-is-leading-the-rebirth-of-american-activity-7486053762244079616-zWLl",
        "entityId": "7486053762244079616",
        "content": "Blake Scholl is leading the rebirth of American Aerospace, powered by AI. He told me something that sounds like the nightmare scenario for AI and jobs: a thousand-person engine team reduced to two people.",
        "published": "2026-07-23T13:45:01.045Z",
        "likeCount": 191,
        "attributedTo": {
          "type": "Person",
          "id": "https://www.linkedin.com/in/reidhoffman",
          "url": "https://www.linkedin.com/in/reidhoffman",
          "name": "Reid Hoffman",
          "preferredUsername": "reidhoffman",
          "followerCount": 2783365
        }
      }
    ]
  }
}

Make the request.

One authenticated GET to /v1/linkedin/users/{username}/posts. 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/posts", {
  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.