---
title: "Get Execution Results"
method: GET
path: "/v1/executions/{id}/results"
tags: ["Executions API"]
---

# Get Execution Results

`GET /v1/executions/{id}/results`

Use this endpoint to retrieve the results of a completed workflow execution. The execution must be in a terminal state.

## Path parameters

- `id` string, uuid, required

## Response `200`

Indicates that the request was successful and the response contains the requested data.

- ExecutionResultsOutput
  - `completedAt` string, date-time — Timestamp when the execution finished.
  - `executionId` string, uuid — Unique identifier of the execution.
  - `finalOutput` object — Aggregated output from the last step or the workflow's final result.
  - `startedAt` string, date-time — Timestamp when the execution started.
  - `status` string — Final status of the execution.
  - `stepResults` StepResultOutput[] — Ordered list of results for each step executed.
    - `durationMs` integer — Time taken to execute this step, in milliseconds.
    - `errorMessage` string — Error message if the step failed. Null on success.
    - `executedAt` string, date-time — Timestamp when this step was executed.
    - `nodeId` string — ID of the workflow node that was executed.
    - `output` object — Output data produced by this step.
    - `status` string — Status of this step: `completed`, `failed`, or `skipped`.
    - `stepName` string — Human-readable name of the step.
    - `stepNumber` integer — Position of this step in the execution sequence (1-indexed).
  - `workflowId` string, uuid — ID of the workflow that was executed.

## Other responses

- `400` — Indicates that the request was malformed or contained invalid parameters.
- `404` — Indicates that the requested resource could not be found.
- `422` — Indicates that the execution is still in progress and results are not yet available.
- `500` — Indicates an unexpected internal error. If this persists, please contact support.

---

[API](https://skmtc.net/lerian/apis/identity-plugin.md) · [All operations](https://skmtc.net/lerian/apis/identity-plugin/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/lerian/identity-plugin/versions/25daba385532/schema)
