## facebook/group

`GET /v1/facebook/group`

A public Facebook group: name, member count and description.

*Group details*

| Parameter | Required | Description |
| --- | --- | --- |
| `url` | yes | Facebook group URL. — e.g. `https://www.facebook.com/groups/366190054572553/` |
| `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:** 2 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/facebook/group?url=https%3A%2F%2Fwww.facebook.com%2Fgroups%2F366190054572553%2F" \
  -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
{
  "activity": {
    "new_members_text": "example",
    "posts_last_day": 0,
    "posts_last_month": 0
  },
  "administrator_count": 0,
  "administrators": [
    {
      "avatar_url": "https://example.com/example",
      "id": "example",
      "name": "example",
      "url": "https://example.com/example"
    }
  ],
  "categories": [],
  "created_at": "2026-09-01T12:00:00Z",
  "description": "example",
  "history_summary": "example",
  "id": "example",
  "members": 0,
  "moderator_count": 0,
  "moderators": [
    {
      "avatar_url": "https://example.com/example",
      "id": "example",
      "name": "example",
      "url": "https://example.com/example"
    }
  ],
  "name": "example",
  "platform": "example",
  "privacy": "example",
  "privacy_description": "example",
  "rules": [],
  "url": "https://example.com/example",
  "visibility": "example"
}
```

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