---
title: "Get Execution"
method: GET
path: "/api/workflows/{workflow_id}/executions/{execution_id}"
tags: ["Workflows"]
---

# Get Execution

`GET /api/workflows/{workflow_id}/executions/{execution_id}`

Get details of a specific workflow execution.

Path Parameters:
    - workflow_id: UUID of the workflow
    - execution_id: UUID of the execution

Returns:
    Execution details including logs and results

## Path parameters

- `workflow_id` string, required
- `execution_id` string, required

## Response `200`

Successful Response

- ExecutionResponse — Response model for a workflow execution
  - `id` string, required
  - `workflow_id` string, required
  - `user_id` string, required
  - `status` string, required
  - `started_at` string, required
  - `completed_at` string, nullable, required
  - `result_data` object, nullable, required
  - `error_message` string, nullable, required
  - `execution_log` object[], required
  - `rows_processed` integer, required
  - `bytes_processed` integer, required
  - `execution_time_ms` integer, nullable, required
  - `metadata_json` object, required
  - `workflow_name` string, nullable
  - `workflow_snapshot` object, nullable

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/qomplement/apis/fastapi.md) · [All operations](https://skmtc.dev/qomplement/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/qomplement/fastapi/revisions/7a7c8e2b5afc/schema)
