LinkedIn Post Details
Get the full details for a single LinkedIn post — text, post type, url, created date, activity counts (likes, comments, shares, reactions), author, and attached content (images, video, article, document, poll) — as JSON. Costs 4 credits.
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_idstringrequiredThe post id or activity urn from the post URL.
Example: 7486820977411145728
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
results = client.linkedin.post(post_id="7486820977411145728")
print(results)Response
"id": "7486820977411145728",
"post_type": "share",
"text": "AI is starting to transform how we diagnose and treat disease. Here is what excites me most about the next decade of progress.",
"url": "https://www.linkedin.com/posts/williamhgates_activity-7486820977411145728",
"created_at": "2026-05-14T15:02:00Z",
"share_urn": "urn:li:activity:7486820977411145728",
},
"response_time": 3450,
"credits_used": 4,
"credits_remaining": 4710
}