LinkedIn Post Details
Get full details for a single LinkedIn post as JSON - body text, url, timestamp, hashtags, images, video and document metadata, like and comment counts, tagged entities, top comments and the author. Provide `post_id` or `url`. Costs 1 credit.
POST/api/v1/linkedin/post
Authorizations
AuthorizationstringheaderrequiredBearer authentication header of the form Bearer <token>, where <token> is your Scavio API key (e.g. Bearer sk_live_your_key).
Body
application/jsonpost_idstringPost id or activity urn.
Example: 7488618410256523265
urlstringProvide post_id or url. Full LinkedIn post URL, as an alternative to post_id.
Example: https://www.linkedin.com/feed/update/urn:li:activity:7488618410256523265/
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
results = client.linkedin.post(post_id="7488618410256523265")
print(results)Response
"id": "7488618410256523265",
"post_type": "post",
"account_type": "Person",
"title": "The best things I read, listened to, and watched this year | Bill Gates | 240 comments",
"headline": "Summer is the best time of the year to relax with a good book or show.",
"text": "Summer is the best time of the year to relax with a good book or show. (Though to be fair, I feel that way every other season of the year, too.) Here are a few favorites I enjoyed recently:",
"url": "https://www.linkedin.com/posts/williamhgates_the-best-things-i-read-listened-to-and-activity-7488618410256523265-47dm",
"created_at": "2026-07-30T15:36:00.782Z",
"hashtags": [],
"embedded_links": [],
"videos": [],
"video_thumbnail": null,
"video_duration": null,
"document_cover": null,
"document_page_count": null,
"num_likes": 1450,
"num_comments": 240,
"tagged_companies": [],
"tagged_people": [],
},
"response_time": 3640,
"credits_used": 1,
"credits_remaining": 999
}