LinkedIn Article API
Read a public LinkedIn article or newsletter issue by URL, including its full body text, author, publication time, and engagement counts.
- Category SocialRequests / mo 2Routing 1 lane · no failover
Pricing
One price, in dollars
pay per request · no subscription · fallbacks added as the catalog growsTry it
Make your first request
run it free, no key · same shape for every API{
"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
}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-08-23 · uptime and latency measured over 30dcurl -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"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| url | string | "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 | ||
| data | object | |
| data.author | string | Display name of the person or organization that published the article. Populated whenever the provider has data for the entity. |
| data.authorFollowers | integer | Follower count of the author at capture time. |
| data.authorUrl | string | Canonical LinkedIn profile or company URL of the author. |
| data.body | string | Full body text of the article as plain text. Populated whenever the provider has data for the entity. |
| data.comments | integer | Total comments on the article. |
| data.createdUtc | number | UTC 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.description | string | Short summary of the article, as LinkedIn presents it in previews. |
| data.image | string | Cover image URL of the article. |
| data.reactions | integer | Total reactions on the article. |
| data.title | string | Title of the article. Populated whenever the provider has data for the entity. |
| data.updatedUtc | number | UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds. |
| data.url | string | Canonical URL of the article. Populated whenever the provider has data for the entity. |
| found | boolean | False when the URL does not resolve to a readable LinkedIn article. |
| Price | ||
| Price per request | USD | $0.00569 |
| Price /1k req | USD | $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.5 seconds across 2 measured calls.
More to call
Other LinkedIn endpoints
Get started
Two ways to start on AnyAPI
Humans fund a USD wallet and pay per request. Agents point a coding agent at one URL and onboard themselves.