Facebook Pixel

Get Group Details

Get group insights including member highlights. Note that this returns member demographics rather than full group info.

POST/linkedin/groups/details

Get 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

FieldTypeRequiredDescription
accountIdstringNo
groupIdstringYesGroup ID

Example

{
  "groupId": "9357376"
}

Responses

StatusDescription
200Successful response

200 Example

{
  "success": true,
  "memberInsights": [
    {
      "insight": "Software Engineer",
      "count": 1250
    },
    {
      "insight": "Product Manager",
      "count": 890
    },
    {
      "insight": "Works at Google",
      "count": 456
    }
  ],
  "totalInsights": 3
}