## web/sessions

`GET /v1/web/sessions`

Your browser sessions, newest first, with a cursor to the next page. Expired sessions are marked as they are listed.

*List browser sessions*

| Parameter | Required | Description |
| --- | --- | --- |
| `limit` | no | Sessions per page (default 25, cap 100) — e.g. `25` |
| `cursor` | no | Opaque cursor from the previous page — e.g. `1757100000000` |
| `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/sessions" \
  -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/sessions#response) · [JSON Schema for response.data](https://www.monocrawl.com/schemas/web/sessions.json)
