---
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
    - `createdBy` string, uuid, nullable, required
    - `files` ExecutionFile[], required — Files produced by files.upload steps, plus files an agent.run step reported on its terminal response (agent-created output or a workflow upload minted during the turn); derived server-side at read time.
      - `fileId` string, uuid, required
      - `filename` string, required
      - `mimeType` string, required
      - `sizeBytes` integer, required

## Other responses

- `404` — Not Found

## Changes

- **2026-08-13** `02da4f9ce3fd` — 1 info
  - added the required property `data/allOf[subschema #2]/createdBy` to the response with the `200` status
- **2026-07-07** `d5d1e5ee8188` — 12 breaking, 1 warning, 1 info
  - the `data` response's property type/format changed from `object`/`` to ``/`` for status `200`
  - removed the required property `data/error` from the response with the `200` status
  - removed the required property `data/eventId` from the response with the `200` status
  - removed the required property `data/finishedAt` from the response with the `200` status
  - …10 more
- **2026-06-28** `fd8fb6b29e38` — 1 info
  - endpoint added
- **2026-06-27** `99b4ade46263` — 1 breaking
  - api path removed without deprecation
- **2026-06-19** `7f577998739b` — 1 info
  - endpoint added

[Full history](https://skmtc.dev/droidrun/apis/droidrun-cloud/changes/executions/:executionId/get.md)

---

[API](https://skmtc.dev/droidrun/apis/droidrun-cloud.md) · [All operations](https://skmtc.dev/droidrun/apis/droidrun-cloud/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/droidrun/droidrun-cloud/revisions/a1453ac769d4/schema)
