## web/jobs

`GET /v1/web/jobs`

List your asynchronous jobs, newest first, with keyset pagination. Free.

*List async web jobs*

| Parameter | Required | Description |
| --- | --- | --- |
| `limit` | no | Jobs per page (default 25, cap 100) — e.g. `25` |
| `cursor` | no | Opaque cursor from the previous page; omit for the first page |
| `status` | no | Filter by status: queued, running, completed, failed, cancelled (comma-separated for several) — e.g. `completed` |
| `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/web/jobs" \
  -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/web/jobs#response) · [JSON Schema for response.data](https://www.monocrawl.com/schemas/web/jobs.json)
