KonbiniAPI

Get company posts — LinkedIn API

Returns recent posts from a LinkedIn company page, newest first. Use `cursor` to page through further results.

GET/v1/linkedin/companies/{company}/posts1 credit per request
Example response200OK
{
  "data": {
    "@context": [
      "https://www.w3.org/ns/activitystreams#",
      "https://konbiniapi.com/ns/social#"
    ],
    "type": "OrderedCollectionPage",
    "partOf": "https://api.konbiniapi.com/v1/linkedin/companies/stripe/posts",
    "totalItems": null,
    "cursor": null,
    "nextCursor": "eyJvIjoi",
    "next": "https://api.konbiniapi.com/v1/linkedin/companies/stripe/posts?cursor=eyJvIjoi",
    "itemCount": 30,
    "orderedItems": [
      {
        "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": 93210,
        "attributedTo": {
          "type": "Organization",
          "id": "https://www.linkedin.com/company/stripe",
          "url": "https://www.linkedin.com/company/stripe",
          "name": "Stripe",
          "preferredUsername": "stripe"
        }
      }
    ]
  }
}

Make the request.

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

const data = await response.json();
Parameters2
  • companyrequiredIn · PathType · stringCompany vanity name
  • cursorIn · QueryType · stringPagination cursor

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.