> ## 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 stop

> Stop a queued or running run.

Stop a run that is `READY` or `RUNNING`. Terminal runs (`COMPLETED`, `FAILED`) cannot be stopped.

## Usage

```bash theme={null}
monid runs stop -r <run-id> [--json]
```

## Flags

| Flag                   | Type    | Required | Description        |
| ---------------------- | ------- | -------- | ------------------ |
| `-r, --run-id <runId>` | string  | Yes      | The run ID to stop |
| `-j, --json`           | boolean | No       | Output raw JSON    |

## Examples

```bash theme={null}
monid runs stop -r 01HXYZ...
```

<Note>
  Stopped runs settle as `FAILED`. Any partial charges incurred before the stop are still applied.
</Note>
