# LinkedIn Company Posts API (https://www.socialcrawl.dev/platforms/linkedin/company-posts) > Returns recent posts from a LinkedIn company page. Each post includes text, reaction count, comment count, and media. TL;DR: `GET /v1/linkedin/company/posts` costs 5 credits per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `company_id` | yes | LinkedIn numeric company ID (from /v1/linkedin/company). | | `page` | no | Page number for pagination (default 1). | | `sort_by` | no | Post ordering: 'top' or 'recent'. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/linkedin/company/posts?company_id=1035" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I list recent posts from a LinkedIn company page? Send a GET request to /v1/linkedin/company/posts with the company page URL (e.g. https://www.linkedin.com/company/microsoft/) in the url parameter. The response returns an array of recent posts with text, reaction count, comment count, and media. ### How do I paginate through a LinkedIn company feed? Add the page query parameter (integer) to request older posts. Start at page=1 and increment to walk back through the feed. Continue until the response returns an empty array or you hit the depth you need. ### How much does the LinkedIn Company Posts API cost? Each page of results costs 1 credit on the standard tier — regardless of how many posts come back in that page. New accounts get 100 credits free with no credit card, which is enough to pull 100 pages of company content. ### Can I use this endpoint for B2B content monitoring? Yes, competitive content monitoring is the main use case. Poll a competitor's page daily, store the post IDs you've seen, and flag new content — giving you a real-time feed of competitor announcements, hires, product launches, and thought leadership. ### What fields come back for each post in the company feed? Post URL, post ID, text, publish timestamp, reaction count, comment count, share count, media attachments (images, video, documents), and author info. The shape matches the standalone /v1/linkedin/post endpoint for consistency. ### Is this different from the LinkedIn Post endpoint? Yes. /v1/linkedin/post fetches a single post by URL. /v1/linkedin/company/posts returns a paginated feed of recent posts from a company page — perfect for content monitoring without knowing individual post URLs in advance. See the full LinkedIn API: https://www.socialcrawl.dev/platforms/linkedin ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing ## Explore with AI Questions this API answers, phrased for an AI assistant: - How to list a LinkedIn company page feed with SocialCrawl - How to monitor a competitor's LinkedIn content feed - LinkedIn company page posts API for B2B content monitoring