## monitors/findings

`GET /v1/monitors/findings`

The findings a subject or feed monitor has recorded, newest first: each with its platform, author, link, posted time, relationship to the subject and the purpose filters it matched. A finding is recorded once per monitor, however many runs see it.

*List monitor findings*

| Parameter | Required | Description |
| --- | --- | --- |
| `id` | yes | Monitor id — e.g. `mon_0f2c8b1d4e6a7c9b0d1e2f3a` |
| `unseen` | no | Only findings not yet marked as seen — e.g. `true` |
| `run_id` | no | Only findings first recorded by this run — e.g. `42` |
| `limit` | no | Page size, 1-200 (default 50) — e.g. `50` |
| `cursor` | no | Opaque cursor from the previous page |
| `mark_seen` | no | Mark the returned findings as seen — e.g. `true` |
| `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/monitors/findings?id=mon_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,
  "unseen": 0
}
```

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