Get Group Details
Get group insights including member highlights. Note that this returns member demographics rather than full group info.
POST
/linkedin/groups/detailsGet Group Details
Get group insights including member highlights. Note that this returns member demographics rather than full group info.
Authentication requiredLinkedIn Search
Code Examples
curl -X POST 'https://api.connectsafely.ai/linkedin/groups/details' \ -H 'Authorization: Bearer <your_api_key>' \ -H 'Content-Type: application/json' \ -d '{"groupId":"9357376"}'Parameters
No parameters.
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
accountId | string | No | |
groupId | string | Yes | Group ID |
Example
{
"groupId": "9357376"
}Responses
| Status | Description |
|---|---|
| 200 | Successful response |
200 Example
{
"success": true,
"memberInsights": [
{
"insight": "Software Engineer",
"count": 1250
},
{
"insight": "Product Manager",
"count": 890
},
{
"insight": "Works at Google",
"count": 456
}
],
"totalInsights": 3
}