# LinkedIn Profile Posts API (https://www.socialcrawl.dev/platforms/linkedin/profile-posts) > List a LinkedIn member's posts — via the Fresh LinkedIn Scraper upstream, normalised to the SocialCrawl schema. TL;DR: `GET /v1/linkedin/profile/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 | | --- | --- | --- | | `url` | yes | Full URL of the LinkedIn profile, company, or post. | | `cursor` | no | | | `page` | no | | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/linkedin/profile/posts?url=https%3A%2F%2Fwww.linkedin.com%2Fin%2Fwilliamhgates%2F" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I get a LinkedIn member's own posts with an API? Send a GET request to /v1/linkedin/profile/posts with the member's profile URL in the url parameter. SocialCrawl returns a feed of the posts that member authored, each with text, reaction count, comment count, share count, and media. ### How do I paginate through a member's post history? Use the cursor parameter (or page) returned in the response to fetch older posts. Pass the cursor back on the next call to walk further down the feed until the response comes back empty. ### How much does the LinkedIn Profile Posts API cost? Each page costs 5 credits on the advanced tier, no matter how many posts come back in that page. New accounts get 100 free credits with no credit card, enough for 20 pages before you upgrade. ### Can I use this for engagement analytics on a person? Yes. Because every post carries its reaction, comment, and share counts, you can compute a member's average engagement, posting cadence, and top content over their recent feed for creator or thought-leadership analytics. ### How is this different from the company posts endpoint? This endpoint returns an individual member's authored posts from their profile URL, while /v1/linkedin/company/posts returns a company page feed. Both paginate the same way and share the same post shape. ### Is scraping LinkedIn member posts legal? SocialCrawl reads only public LinkedIn posts any logged-out visitor can see. You remain responsible for complying with LinkedIn's User Agreement and data-protection law (GDPR, CCPA) for your use case. 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 get a LinkedIn member's own posts with SocialCrawl - How to paginate a LinkedIn profile's post history via API