---
title: "Get execution details"
method: GET
path: "/executions/{executionId}"
tags: ["Executions"]
---

# Get execution details

`GET /executions/{executionId}`

Fetch a single flow execution by its ID, including its status, kind, result or error, and start/finish timestamps. Returns 404 if no execution matches.

## Path parameters

- `executionId` string, uuid, required

## Response `200`

Execution details

- object
  - `data` FlowExecutionDetail, required
    - `id` string, uuid, required
    - `flowId` string, uuid, required
    - `triggerId` string, uuid, required
    - `eventId` string, uuid, nullable, required
    - `flowName` string, nullable, required
    - `triggerName` string, nullable, required
    - `status` 'pending' | 'running' | 'success' | 'failed' | 'cancelled' | 'skipped' | 'invalid', nullable, required
    - `kind` 'live' | 'dry_run', required
    - `result` unknown
    - `error` string, nullable, required
    - `startedAt` string, nullable, required
    - `finishedAt` string, nullable, required
    - `files` ExecutionFile[], required — Files produced by files.upload steps; derived server-side at read time.
      - `fileId` string, uuid, required
      - `filename` string, required
      - `mimeType` string, required
      - `sizeBytes` integer, required

## Other responses

- `404` — Not Found

---

[API](https://skmtc.net/mobilerun/apis/workflows.md) · [All operations](https://skmtc.net/mobilerun/apis/workflows/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/mobilerun/workflows/revisions/1bc499aa8f99/schema)
