---
title: "ktm monitoring-results list"
description: "List recent monitoring results"
sidebarTitle: "list"
lastUpdated: "2026-09-23"
---

> **For AI agents:** the complete documentation index is at [llms.txt](/llms.txt). Append `.md` to any page URL for its markdown version.

{/* GENERATED FILE: do not edit by hand. Regenerate with: node scripts/generate.mjs */}

List recent monitoring results

## Usage

```bash
ktm monitoring-results list [flags]
```

## Examples

```bash
# List recent results for a monitor
ktm monitoring-results list --monitoring-id 2180

# Filter by product
ktm monitoring-results list --product my-operator~my-product

# Table format
ktm monitoring-results list --monitoring-id 2180 -o table
```

## Flags

| Flag | Type | Default | Description |
| --- | --- | --- | --- |
| `--end` | string |  | Results before this datetime (ISO 8601) |
| `--monitoring-id` | string |  | Filter by monitor ID (from 'monitors list'). Required for operator-scoped results — without this, results span all operators. |
| `--ordering` | string |  | Sort: -modified (default) or modified |
| `--page` | string |  | Page number (default: 1) |
| `--page-size` | string |  | Results per page (default: 20) |
| `--product` | string |  | Product slug (format: operator~product) |
| `--start` | string |  | Results after this datetime (ISO 8601) |
| `--test-id` | string |  | Filter by test ID |

## Details

List monitoring results (run outcomes from scheduled monitors).

Each result represents a single monitor execution with an overall status.
Results are always lean: the heavy result payload is excluded. Use
'monitoring-results get &lt;id&gt;' to investigate specific results.

Prerequisite: Without --monitoring-id or --product, results span ALL operators
the API key has access to. Always run 'monitors list --operator &lt;slug&gt;' first
to get monitor IDs, then pass --monitoring-id here to scope results to the
correct operator.

Status codes: S=success, F=failed, O=ongoing, P=pending, WA=waiting, B=broken, DI=dismissed

## Related

- [`ktm monitoring-results`](/cli/commands/monitoring-results)
- [`ktm monitors list`](/cli/commands/monitors/list)

<Note>
  Global flags (`--output`, `--debug`, `--host`, …) apply to every command. See the [command reference overview](/cli/commands/overview).
</Note>

## What's next?

<Columns cols={2}>
  <Card title="All commands" icon="terminal" href="/cli/commands/overview">
    Browse the full CLI reference.
  </Card>
  <Card title="Get started" icon="rocket" href="/cli/getting-started">
    Install the CLI and authenticate.
  </Card>
</Columns>
