---
title: "List workflow executions"
method: GET
path: "/v1/workflows/{id}/executions"
tags: ["workflows"]
---

# List workflow executions

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

Returns the paginated run history for a workflow, newest first. Filter by `status` and by `started_after` / `started_before`.

## Path parameters

- `id` string, required — Workflow (version) identifier.

## Query parameters

- `workspace_id` string — Optional workspace override. If omitted, Conduit resolves the workflow's workspace automatically.
- `limit` integer
- `cursor` string
- `status` 'STARTED' | 'RUNNING' | 'SUCCESS' | 'FAILED' | 'CANCELLED' — Filter executions by lifecycle status.
- `started_after` string, date-time — Only return executions started at or after this ISO 8601 timestamp.
- `started_before` string, date-time — Only return executions started strictly before this ISO 8601 timestamp.

## Response `200`

Workflow executions

- object — Cursor-paginated workflow executions response.
  - `data` object[], required
    - `execution_id` string, required
    - `workflow_id` string, required
    - `master_id` string, nullable, required
    - `status` string, nullable, required
    - `trigger_source` string, nullable, required
    - `started_at` string, required
    - `ended_at` string, nullable, required
    - `error_summary` string, nullable, required
  - `next_cursor` string, nullable, required
  - `has_more` boolean, required

## Other responses

- `400` — Invalid request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not found
- `429` — Rate limit exceeded

---

[API](https://skmtc.net/conduit/apis/conduit-api.md) · [All operations](https://skmtc.net/conduit/apis/conduit-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/conduit/conduit-api/versions/3ad7e17f96ad/schema)
