LinkedIn API

LinkedIn Article API

Read a public LinkedIn article or newsletter issue by URL, including its full body text, author, publication time, and engagement counts.

POST/v1/run/linkedin.article
Uptime
100.00%
30d · 5 calls
Requests
5
30d · weekly, last 12 wks
Response
6.1s
median · 30d

Pricing

One price, in dollars

Providers
Octopus5 served100.00% uptime5972ms p50$5.69/1k reqflat

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": {
    "author": "Alex Rivera",
    "authorFollowers": 12500,
    "authorUrl": "https://example.com/page",
    "body": "A short example description of this item.",
    "comments": 12500,
    "createdUtc": 12.5,
    "description": "A short example description of this item.",
    "image": "https://example.com/image.jpg",
    "reactions": 42,
    "title": "Example title",
    "updatedUtc": 12.5,
    "url": "https://example.com/page"
  },
  "found": true
}
Response interface
interface LinkedinArticleResponse {
  data: {
    author?: string;
    authorFollowers?: number;
    authorUrl?: string;
    body: string;
    comments?: number;
    createdUtc?: number;
    description?: string;
    image?: string;
    reactions?: number;
    title: string;
    updatedUtc?: number;
    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-14 · uptime and latency measured over 30d
POST /v1/run/linkedin.article
curl -X POST https://api.getanyapi.com/v1/run/linkedin.article \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"https://www.linkedin.com/pulse/artificial-intelligence-primer-stephen-dover"}'
FieldTypeExample value
Request body
urlstring"https://www.linkedin.com/pulse/artificial-intelligence-primer-stephen-dover"Public LinkedIn article or newsletter issue URL, e.g. https://www.linkedin.com/pulse/your-article-slug. Pair it with the attachmentUrl returned by linkedin.search_posts_full to read the article behind a post.
Response
dataobject
data.authorstringDisplay name of the person or organization that published the article. Populated whenever the provider has data for the entity.
data.authorFollowersintegerFollower count of the author at capture time.
data.authorUrlstringCanonical LinkedIn profile or company URL of the author.
data.bodystringFull body text of the article as plain text. Populated whenever the provider has data for the entity.
data.commentsintegerTotal comments on the article.
data.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.descriptionstringShort summary of the article, as LinkedIn presents it in previews.
data.imagestringCover image URL of the article.
data.reactionsintegerTotal reactions on the article.
data.titlestringTitle of the article. Populated whenever the provider has data for the entity.
data.updatedUtcnumberUTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
data.urlstringCanonical URL of the article. Populated whenever the provider has data for the entity.
foundbooleanFalse when the URL does not resolve to a readable LinkedIn article.
Price
Price per requestUSD$0.00569
Price /1k reqUSD$5.69

FAQ

About the LinkedIn Article API

The AnyAPI LinkedIn Article API returns LinkedIn article data as normalized JSON from one POST call to /v1/run/linkedin.article. Read a public LinkedIn article or newsletter issue by URL, including its full body text, author, publication time, and engagement counts. AnyAPI returns one normalized schema whichever source serves it. It costs from $5.69 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 100.0% of LinkedIn article calls through AnyAPI succeeded, with a median response time of 6.1 seconds across 5 measured calls.

It costs from $5.69 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.

Read a public LinkedIn article or newsletter issue by URL, including its full body text, author, publication time, and engagement counts. 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, 100.0% of LinkedIn article calls through AnyAPI succeeded, with a median response time of 6.1 seconds across 5 measured calls. These are AnyAPI's own measurements of traffic through the gateway, recomputed continuously, not a published service-level target.