KonbiniAPI

Get user posts from LinkedIn with KonbiniAPI

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

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

Perfect for

  • Data Analytics
  • Market Research
  • Platform Integration

1. Make the request

const response = await fetch("https://api.konbiniapi.com/v1/linkedin/users/satyanadella/posts", {
  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": "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
        }
      }
    ]
  }
}