LinkedIn Person Posts
A member's posts, or the posts they commented on or reacted to, as JSON - text, url, timestamps, a full reaction breakdown, comment and repost counts, images and article metadata. 50 per page. Provide `username` or `url`. Costs 10 credits per page.
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/jsonusernamestringPublic identifier (vanity handle).
Example: williamhgates
urlstringProvide username or url. Full LinkedIn profile URL, as an alternative to username.
Example: https://www.linkedin.com/in/williamhgates/
typestringWhich feed to return: posts (default), comments (posts the member commented on), or reactions (posts they reacted to).
Example: posts
cursorstringOpaque cursor from a previous response's next_cursor, to fetch the following page.
Example: eyJzdGFydCI6NTB9
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
results = client.linkedin.person_posts(username="williamhgates")
print(results)Response