# LinkedIn Group API (https://www.socialcrawl.dev/platforms/linkedin/group) > Get LinkedIn group details — via the Fresh LinkedIn Scraper upstream, normalised to the SocialCrawl schema. TL;DR: `GET /v1/linkedin/group` 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. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/linkedin/group?group_id=62438" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I get LinkedIn group details with an API? Send a GET request to /v1/linkedin/group with a numeric group_id in the group_id parameter. The response is a single object with the group's name, description, member count, and its rules where LinkedIn makes them public. ### What fields does the LinkedIn group endpoint return? The group name, description, total member count, and the group rules where public. All fields come back in SocialCrawl's unified schema, so a group response lines up with the shapes you get from other platforms. ### Where do I find the group_id this endpoint needs? The group_id is the numeric identifier in a LinkedIn group URL (linkedin.com/groups/{group_id}). Copy that number and pass it in the group_id parameter. The same id feeds /v1/linkedin/group/posts to read the group's feed. ### How much does the LinkedIn group endpoint cost? Each request costs 5 credits on the advanced tier, and the response is one object per call. New accounts get 100 free credits with no credit card, enough for 20 group lookups before you ever need to upgrade. ### What can I use LinkedIn group data for? Community research and audience sizing are common use cases. Read a group's member count and description to gauge how active a professional community is, then pull its feed from /v1/linkedin/group/posts to study the topics being discussed. 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 LinkedIn group details and member count with an API - Which API returns LinkedIn group name, description, and rules