LinkedIn Company Posts
A company's recent posts as JSON, in the same shape as member posts. 50 per page. Provide `company` or `url`. Costs 10 credits per page.
POST/api/v1/linkedin/company/posts
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/jsoncompanystringCompany universal name (slug).
Example: microsoft
urlstringProvide company or url. Full LinkedIn company URL, as an alternative to company.
Example: https://www.linkedin.com/company/microsoft/
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.company_posts(company="microsoft")
print(results)Response
"count": 50,
"has_more": false
},
"response_time": 5236,
"credits_used": 10,
"credits_remaining": 990
}