---
title: "ktm executions get"
description: "Retrieve detailed results for a specific test execution by ID, including status, pass/fail counts, and full JSON output via the ktm CLI."
sidebarTitle: "get"
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 */}

Get detailed results of a test execution

## Usage

```bash
ktm executions get <id> [flags]
```

## Examples

```bash
# Get execution detail as JSON
ktm executions get 12345

# Get execution detail as table
ktm executions get 12345 -o table
```

## Arguments

| Argument | Required |
| --- | --- |
| `id` | Yes |

## Details

Fetch a single execution by ID and display its detailed results.

The response includes:
  - Execution metadata: name, status, pass/fail counts, creator, timestamps
  - tests_overview: quick per-test pass/fail summary
  - json: full execution data with per-test actions, timing, errors, and variables

In table mode, a human-readable summary is shown with a link to the Kapptivate UI.
In JSON mode, the full response is returned including the raw json field.

## Related

- [`ktm executions`](/cli/commands/executions)

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