---
title: "List Executions"
method: GET
path: "/api/workflows/{workflow_id}/executions"
tags: ["Workflows"]
---

# List Executions

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

Get execution history for a workflow.

Path Parameters:
    - workflow_id: UUID of the workflow

Query Parameters:
    - limit: Maximum number of executions to return (default: 50)

Returns:
    List of workflow executions ordered by most recent

## Path parameters

- `workflow_id` string, required

## Query parameters

- `limit` integer

## Response `200`

Successful Response

- ExecutionResponse[]
  - `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.net/qomplement/apis/fastapi.md) · [All operations](https://skmtc.net/qomplement/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/qomplement/fastapi/versions/718de1c0d866/schema)
