KonbiniAPI

Get post — LinkedIn API

Returns a public LinkedIn post including author, engagement counts, and up to ~5 inline comments.

GET/v1/linkedin/posts/{postId}1 credit per request
Example response200OK
{
  "data": {
    "@context": [
      "https://www.w3.org/ns/activitystreams#",
      "https://konbiniapi.com/ns/social#"
    ],
    "type": "Note",
    "id": "https://www.linkedin.com/posts/stripe_new-providers-on-stripe-projects-are-available-activity-7483253516766109696-xCr3",
    "url": "https://www.linkedin.com/posts/stripe_new-providers-on-stripe-projects-are-available-activity-7483253516766109696-xCr3",
    "entityId": "7483253516766109696",
    "content": "New providers on Stripe Projects are available now:\n\nChatbase\nComposio\nNodeOps\nCustomer.io\nDatadog",
    "published": "2026-07-15T20:17:50.459Z",
    "likeCount": 185,
    "replyCount": 39,
    "attributedTo": {
      "type": "Organization",
      "id": "https://www.linkedin.com/company/stripe",
      "url": "https://www.linkedin.com/company/stripe",
      "name": "Stripe",
      "preferredUsername": "stripe",
      "followerCount": 1601918
    },
    "image": [
      {
        "type": "Image",
        "url": "https://media.licdn.com/dms/image/v2/D4E05AQGnh5Qo2aZfGw/videocover-high/B4EZ9nRqAzJEBM-/0/1784144110876"
      }
    ],
    "attachment": [
      {
        "type": "Video",
        "url": [
          "https://dms.licdn.com/playlist/vid/v2/D4E05AQGnh5Qo2aZfGw/mp4-720p-30fp-crf28/B4EZ9nRqAzJEB8-/0/1784144111064"
        ],
        "mediaType": "video/mp4",
        "duration": 4,
        "preview": {
          "type": "Image",
          "url": "https://media.licdn.com/dms/image/v2/D4E05AQGnh5Qo2aZfGw/videocover-high/B4EZ9nRqAzJEBM-/0/1784144110876"
        }
      }
    ],
    "replies": [
      {
        "type": "Note",
        "content": "Very excited to have Schematic in here and to be building with Stripe on this front!",
        "published": "2026-07-15T20:28:36.758Z",
        "likeCount": 5,
        "attributedTo": {
          "type": "Person",
          "name": "Fynn Glover"
        }
      }
    ]
  }
}

Make the request.

One authenticated GET to /v1/linkedin/posts/{postId}. 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/posts/DGS29x", {
  headers: { "Authorization": "Bearer YOUR_API_KEY" }
});

const data = await response.json();
Parameters1
  • postIdrequiredIn · PathType · stringLinkedIn post activity ID: the full slug (from linkedin.com/posts/{id}), a bare `urn:li:activity:{id}` (from linkedin.com/feed/update/{urn}/), or a bare numeric activity ID (e.g. `7476310414297968640`)

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.