LinkedIn Profile posts thin API
Fetch recent public LinkedIn profile posts with portable identity, author, engagement, article, image, video, and repost fields.
Provider network
Providers ranked by traffic
capped at $0.143 per request1 result$0.0014350 results$0.0715100 results$0.143 capYou are charged for what comes back. Lower the limit to pay less - and no single request can cost more than the cap, however much comes back.
capped at $0.194 per request1 result$0.0030950 results$0.09766100 results$0.194 capYou are charged for what comes back. Lower the limit to pay less - and no single request can cost more than the cap, however much comes back.
Try it
Make your first request
{
"data": {
"items": [
{
"articleImage": "https://example.com/image.jpg",
"articleSubtitle": "Example title",
"articleTitle": "Example title",
"articleUrl": "https://example.com/page",
"author": {
"handle": "alex_rivera",
"headline": "Example title",
"image": "https://example.com/image.jpg",
"profileUrl": "https://example.com/page"
},
"createdUtc": 12.5,
"engagement": {
"comments": 12500,
"reactions": 42,
"reposts": 248
},
"id": "a1b2c3d4",
"images": [
{
"url": "https://example.com/page"
}
],
"repostArticleImage": "https://example.com/image.jpg",
"repostArticleSubtitle": "Example title",
"repostArticleTitle": "Example title",
"repostArticleUrl": "https://example.com/page",
"repostAuthorHeadline": "Alex Rivera",
"repostAuthorImage": "https://example.com/image.jpg",
"repostAuthorUrl": "https://example.com/page",
"repostCreatedUtc": 248,
"repostId": "a1b2c3d4",
"repostText": "A short example description of this item.",
"repostUrl": "https://example.com/page",
"text": "A short example description of this item.",
"url": "https://example.com/page",
"videoThumbnail": "https://example.com/image.jpg",
"videoUrl": "https://example.com/page"
}
]
},
"found": true,
"reason": "not_found"
}interface LinkedinProfilePostsThinResponse {
data: {
items: {
articleImage?: string;
articleSubtitle?: string;
articleTitle?: string;
articleUrl?: string;
author?: {
handle?: string;
headline?: string;
image?: string;
profileUrl?: string;
};
createdUtc: number;
engagement?: {
comments?: number;
reactions?: number;
reposts?: number;
};
id: string;
images?: {
url: string;
}[];
repostArticleImage?: string;
repostArticleSubtitle?: string;
repostArticleTitle?: string;
repostArticleUrl?: string;
repostAuthorHeadline?: string;
repostAuthorImage?: string;
repostAuthorUrl?: string;
repostCreatedUtc?: number;
repostId?: string;
repostText?: string;
repostUrl?: string;
text: string;
url: string;
videoThumbnail?: string;
videoUrl?: string;
}[];
} | null;
found: boolean;
reason?: "not_found";
}Full parameter and response reference - every field, type, and example for this endpoint.
Reference
Request, response, and price
Last verified 2026-09-20 · uptime and latency measured over 30dcurl -X POST https://api.getanyapi.com/v1/run/linkedin.profile_posts_thin \
-H "Authorization: Bearer $ANYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"limit":10,"url":"https://www.linkedin.com/in/williamhgates/"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| url | string | "https://www.linkedin.com/in/williamhgates/"Full URL of the public LinkedIn profile whose posts should be returned. |
| limit | integer | 10Maximum number of posts to return (10-100, default 10). |
| Response | ||
| data | object | The profile posts result, or null when no posts were found. |
| data.items | object[] | Recent posts published by the profile. Populated whenever the provider has data for the entity. |
| data.items[].articleImage | string | Image URL of the attached article, when present. |
| data.items[].articleSubtitle | string | Subtitle or publisher label of the attached article, when present. |
| data.items[].articleTitle | string | Title of the attached article, when present. |
| data.items[].articleUrl | string | Canonical URL of the attached article, when present. |
| data.items[].author | object | Portable details about the post author. Populated whenever the provider has data for the entity. |
| data.items[].author.handle | string | Public LinkedIn handle of the author. Populated whenever the provider has data for the entity. |
| data.items[].author.headline | string | Professional headline displayed for the author. Populated whenever the provider has data for the entity. |
| data.items[].author.image | string | Profile image URL of the author. Populated whenever the provider has data for the entity. |
| data.items[].author.profileUrl | string | Canonical LinkedIn profile URL of the author. Populated whenever the provider has data for the entity. |
| data.items[].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.items[].engagement | object | Portable engagement totals for the post. Populated whenever the provider has data for the entity. |
| data.items[].engagement.comments | integer | Total number of comments on the post. Populated whenever the provider has data for the entity. |
| data.items[].engagement.reactions | integer | Total number of reactions on the post. Populated whenever the provider has data for the entity. |
| data.items[].engagement.reposts | integer | Total number of reposts or shares of the post. Populated whenever the provider has data for the entity. |
| data.items[].id | string | Unique identifier of the LinkedIn post. Populated whenever the provider has data for the entity. |
| data.items[].images | object[] | Images attached to the post. |
| data.items[].images[].url | string | URL of an attached image. |
| data.items[].repostArticleImage | string | Cover image URL of the article attached to the reposted post. The query string is a signed token, so keep the URL intact. |
| data.items[].repostArticleSubtitle | string | Subtitle or source domain of the article attached to the reposted post. |
| data.items[].repostArticleTitle | string | Title of the article attached to the reposted post, when present. |
| data.items[].repostArticleUrl | string | Canonical URL of the article attached to the reposted post, when present. |
| data.items[].repostAuthorHeadline | string | Headline or follower line of the author of the reposted post. |
| data.items[].repostAuthorImage | string | Avatar or logo image URL of the author of the reposted post. The query string is a signed token, so keep the URL intact. |
| data.items[].repostAuthorUrl | string | Canonical LinkedIn URL of the author of the reposted post. |
| data.items[].repostCreatedUtc | number | UTC epoch timestamp in seconds (Unix time) when the reposted post was published. Multiply by 1000 for a JS Date in milliseconds. |
| data.items[].repostId | string | Unique identifier of the reposted post, when present. |
| data.items[].repostText | string | Text content of the reposted post, when present. |
| data.items[].repostUrl | string | Canonical URL of the reposted post, when present. |
| data.items[].text | string | Text content of the post. Populated whenever the provider has data for the entity. |
| data.items[].url | string | Canonical LinkedIn URL of the post. Populated whenever the provider has data for the entity. |
| data.items[].videoThumbnail | string | Thumbnail URL of the attached video, when present. |
| data.items[].videoUrl | string | URL of the attached video, when present. |
| found | boolean | Whether profile posts were found. |
| reason | "not_found" | Present only when `found` is false, and says why there is no result. `not_found`: the source states the target does not exist, or returned nothing for it. A `found: false` answer is a successful call, not an error, and `costUsd` is what it actually cost. |
| Price | ||
| Price per request | USD | $0.005 |
| Price /1k req | USD | $5.00 |
FAQ
About the LinkedIn Profile posts thin API
The AnyAPI LinkedIn Profile posts thin API returns LinkedIn profile posts thin data as normalized JSON from one POST call to /v1/run/linkedin.profile_posts_thin. Fetch recent public LinkedIn profile posts with portable identity, author, engagement, article, image, video, and repost fields. AnyAPI routes each request across 3 sources and falls back automatically when one fails. It costs from $5 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 93.3% of LinkedIn profile posts thin calls through AnyAPI succeeded, with a median response time of 3.4 seconds across 15 measured calls.