> ## Documentation Index
> Fetch the complete documentation index at: https://monid.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# monid runs list

> List recent runs.

List recent runs with cursor-based pagination.

## Usage

```bash theme={null}
monid runs list [--limit <limit>] [--cursor <cursor>] [--json]
```

## Flags

| Flag                | Type    | Required | Description                                |
| ------------------- | ------- | -------- | ------------------------------------------ |
| `--limit <limit>`   | number  | No       | Maximum number of runs to return           |
| `--cursor <cursor>` | string  | No       | Pagination cursor from a previous response |
| `-j, --json`        | boolean | No       | Output raw JSON                            |

## Examples

```bash theme={null}
# List recent runs
monid runs list

# List with a limit
monid runs list --limit 5

# Paginate
monid runs list --cursor <cursor-value>
```
