## cohort-queries/results

`GET /v1/cohort-queries/results`

The keyword matches a finished cohort sweep found, per member, newest page first.

*Read cohort query results*

| Parameter | Required | Description |
| --- | --- | --- |
| `query_id` | yes | Cohort query id (the {queryId} path segment) — e.g. `cq_0f2c8b1d4e6a7c9b0d1e2f3a` |
| `cursor` | no | Opaque cursor from the previous page of matches |
| `limit` | no | Matches per page, 1-100 (default 25) — e.g. `25` |
| `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/results?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
{
  "items": [],
  "count": 0,
  "cursor": null,
  "has_more": false,
  "query_id": null,
  "cohort_id": null,
  "keyword": null,
  "status": null,
  "error": null,
  "completed_at": null,
  "ready": false,
  "total": 0,
  "counts": {},
  "per_member": []
}
```

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