Skip to main content

Get Company Posts

GET /get-company-posts

Retrieve posts published by a LinkedIn company page.

Pricing

1 credit per call.

Parameters

ParameterTypeRequiredDescription
linkedin_urlstringYesLinkedIn company URL
typestringNoPost type: posts or reposts (default: posts)
startintegerNoStarting offset (default: 0)
pagination_tokenstringNoToken for pagination

Example Request

curl --request GET \
--url 'https://api.infoplug.io/get-company-posts?linkedin_url=https://www.linkedin.com/company/apple/&type=posts' \
--header 'X-INFOPLUG-API-KEY: YOUR_API_KEY'

Example Response

{
"data": {
"posts": [
{
"urn": "urn:li:activity:1234567890",
"text": "Post content here...",
"posted_at": "2024-01-15T10:30:00Z",
"reactions_count": 1500,
"comments_count": 250,
"reposts_count": 100
}
],
"paging": {
"start": 0,
"count": 10,
"total": 500
}
}
}