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

# Criterion Runs

> View per-criterion results within a task run.

View [Criterion Runs](/api-reference/resources/criterion-runs), the per-criterion results produced by the verification engine.

## Actions

| Action | Description                            |
| ------ | -------------------------------------- |
| `list` | List all criterion runs for a task run |
| `get`  | Get a criterion run by ID              |

## Parameters

### `list`

| Parameter   | Type   | Required | Description                            |
| ----------- | ------ | -------- | -------------------------------------- |
| `taskRunId` | string | yes      | Task run ID to list criterion runs for |

### `get`

| Parameter | Type   | Required | Description      |
| --------- | ------ | -------- | ---------------- |
| `id`      | string | yes      | Criterion run ID |

## Examples

### List criterion runs for a task run

```json theme={null}
{
  "action": "list",
  "taskRunId": "tr_abc123"
}
```

### Get a criterion run with evidence

```json theme={null}
{
  "action": "get",
  "id": "crun_01H..."
}
```
