## monitors/index

`GET /v1/monitors`

Your monitors, newest first, with each one's schedule and next due time.

*List monitors*

| Parameter | Required | Description |
| --- | --- | --- |
| `status` | no | Filter by monitor status: active or paused — e.g. `active` |
| `cursor` | no | Opaque cursor from the previous page |
| `limit` | no | Page size, 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/monitors" \
  -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
}
```

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