LinkedIn API

LinkedIn Company posts thin API

Post text and link only. No engagement counts, author details, media, or reaction breakdown - for those use linkedin.company_posts.

POST/v1/run/linkedin.company_posts_thin
Uptime
66.67%
30d · 15 calls
Requests
28
30d · weekly, last 12 wks
Response
3.6s
median · 30d

Provider network

Providers ranked by traffic

Try it

Make your first request

Open in
Get a free key
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
  "data": {
    "items": [
      {
        "createdUtc": 12.5,
        "id": "a1b2c3d4",
        "text": "A short example description of this item.",
        "url": "https://example.com/page"
      }
    ]
  },
  "found": true
}
Response interface
interface LinkedinCompanyPostsThinResponse {
  data: {
    items: {
      createdUtc: number;
      id: string;
      text: string;
      url: string;
    }[];
  } | null;
  found: boolean;
}

Full parameter and response reference - every field, type, and example for this endpoint.

Reference

Request, response, and price

Last verified 2026-09-16 · uptime and latency measured over 30d
POST /v1/run/linkedin.company_posts_thin
curl -X POST https://api.getanyapi.com/v1/run/linkedin.company_posts_thin \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"https://www.linkedin.com/company/stripe"}'
FieldTypeExample value
Request body
urlstring"https://www.linkedin.com/company/stripe"Full LinkedIn company page URL.
pageintegerPage number for pagination.
Response
dataobjectThe company posts result, or null when not found.
data.itemsobject[]The company's recent posts. Populated whenever the provider has data for the entity.
data.items[].createdUtcnumberUTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds. Populated whenever the provider has data for the entity.
data.items[].idstringUnique identifier of the post. Populated whenever the provider has data for the entity.
data.items[].textstringText content of the post. Populated whenever the provider has data for the entity.
data.items[].urlstringCanonical URL of the post. Populated whenever the provider has data for the entity.
foundbooleanWhether the company posts were found.
Price
Price per requestUSD$0.0012
Price /1k reqUSD$1.20

FAQ

About the LinkedIn Company posts thin API

The AnyAPI LinkedIn Company posts thin API returns LinkedIn company posts thin data as normalized JSON from one POST call to /v1/run/linkedin.company_posts_thin. Post text and link only. No engagement counts, author details, media, or reaction breakdown - for those use linkedin.company_posts. AnyAPI routes each request across 2 sources and falls back automatically when one fails. It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 66.7% of LinkedIn company posts thin calls through AnyAPI succeeded, with a median response time of 3.6 seconds across 15 measured calls.

It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.

Post text and link only. No engagement counts, author details, media, or reaction breakdown - for those use linkedin.company_posts. The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.

Over the last 30 days, 66.7% of LinkedIn company posts thin calls through AnyAPI succeeded, with a median response time of 3.6 seconds across 15 measured calls. These are AnyAPI's own measurements of traffic through the gateway, recomputed continuously, not a published service-level target.