## cohorts/get

`GET /v1/cohorts/get`

One cohort with its members and the most recent keyword queries run against it.

*Get a cohort*

| Parameter | Required | Description |
| --- | --- | --- |
| `cohort_id` | yes | Cohort id (the {cohortId} path segment) — e.g. `coh_0f2c8b1d4e6a7c9b0d1e2f3a` |
| `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:** free — 0 credits.

```bash
curl "https://www.monocrawl.com/v1/cohorts/get?cohort_id=coh_0f2c8b1d4e6a7c9b0d1e2f3a" \
  -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
{
  "id": null,
  "name": null,
  "created_at": null,
  "member_count": 0,
  "sweepable_count": 0,
  "members": [],
  "replaced": false
}
```

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