## linkedin/group

`GET /v1/linkedin/group`

A LinkedIn group: name, members, description, rules, owners, industries and images.

*LinkedIn group*

| Parameter | Required | Description |
| --- | --- | --- |
| `group_id` | yes | A LinkedIn group id or URL — e.g. `62438` |
| `dry_run` | no | Read a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution. — e.g. `1` |

**Cost:** 3 credits at list price per successful uncached response; variable-cost operations may quote or settle a different charge. Confirmed uncharged or refunded failures report zero. Pending reconciliation can report credits_used:null; retain request_id and the original idempotency key.

```bash
curl "https://www.monocrawl.com/v1/linkedin/group?group_id=62438" \
  -H "x-api-key: mn_your_key_here"
```

### Response data

Illustrative abbreviated data; documented core fields are optional and may be null. Additional source fields are allowed.

```json
{
  "active": false,
  "cover": "example",
  "created_at": "2026-09-01T12:00:00Z",
  "description": "example",
  "id": "example",
  "industries": [
    "example"
  ],
  "logo": "example",
  "members": 0,
  "name": "example",
  "owners": [
    {
      "handle": "example",
      "headline": "example",
      "joined_at": "2026-09-01T12:00:00Z",
      "name": "example",
      "url": "https://example.com/example"
    }
  ],
  "platform": "example",
  "post_approval_required": false,
  "public": false,
  "rules": "example",
  "url": "https://example.com/example",
  "urn": "example"
}
```

[Field reference](https://www.monocrawl.com/docs/endpoints/linkedin/group#response) · [JSON Schema for response.data](https://www.monocrawl.com/schemas/linkedin/group.json)
