## monitors/stories

`GET /v1/monitors/stories`

The developing stories a monitor's related findings have been grouped into, with counts, severity and when each was last seen.

*Monitor stories*

| Parameter | Required | Description |
| --- | --- | --- |
| `id` | yes | Monitor id — e.g. `mon_…` |
| `limit` | no | Stories, newest first — e.g. `20` |
| `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/stories?id=mon_%E2%80%A6" \
  -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
{
  "monitor_id": null,
  "items": []
}
```

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