# LinkedIn Group Posts API (https://www.socialcrawl.dev/platforms/linkedin/group-posts) > List posts in a LinkedIn group — via the Fresh LinkedIn Scraper upstream, normalised to the SocialCrawl schema. TL;DR: `GET /v1/linkedin/group/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 | | --- | --- | --- | | `group_id` | yes | LinkedIn numeric group ID. | | `page` | no | | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/linkedin/group/posts?group_id=62438" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I list the posts inside a LinkedIn group? Send a GET request to /v1/linkedin/group/posts with a numeric group_id in the group_id parameter. The response returns a feed of posts from inside that group, each with text, author info, and engagement counts. ### How do I paginate through a LinkedIn group feed? Add the optional page query parameter (integer) to request older posts. Start at page 1 and increment to walk back through the feed until the response returns an empty list, which marks the end of the available posts. ### What fields come back for each group post? Each post carries its text, author info, publish timestamp, and engagement counts such as reactions and comments. The shape stays consistent with the other LinkedIn post endpoints so you can reuse the same parsing code. ### How much does the group posts endpoint cost? Each page costs 5 credits on the advanced tier, regardless of how many posts come back in that page. New accounts get 100 free credits with no credit card, enough for 20 pages of group content before you upgrade. ### What can I use a LinkedIn group feed for? Community and topic monitoring are the main use cases. Read a group's feed to see what a professional community is discussing, track recurring themes, and surface active members or trending questions in your niche. 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 read the posts inside a LinkedIn group with an API - Which API returns a LinkedIn group's feed for community monitoring