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

# Runs & actions

> Query runs and their actions from the platform.

## List runs

```text theme={null}
GET /api/v1/runs/
```

Supports basic filters like `status` and `min_cost`.

## Get a run

```text theme={null}
GET /api/v1/runs/{run_id}
```

Returns the run (and associated actions).

## List actions for a run

```text theme={null}
GET /api/v1/runs/{run_id}/actions
```

<Tip>
  For dashboards, pair these with <a href="/platform/stats">Stats</a>.
</Tip>
