## cohort-queries/get

`GET /v1/cohort-queries/get`

The status of one cohort keyword sweep, with per-member progress while it runs.

*Check cohort query status*

| Parameter | Required | Description |
| --- | --- | --- |
| `query_id` | yes | Cohort query id (the {queryId} path segment) — e.g. `cq_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/cohort-queries/get?query_id=cq_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,
  "cohort_id": null,
  "keyword": null,
  "status": null,
  "job_id": null,
  "error": null,
  "created_at": null,
  "completed_at": null,
  "counts": {},
  "per_member": [],
  "matches": []
}
```

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