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

# List workflow execution events

`GET /v1/workflow-executions/{id}/events`

Returns the paginated, step-level event log for a single workflow execution. Ascending by timestamp by default. Payload summaries have credential/raw-request material redacted.

## Path parameters

- `id` string, required — Workflow execution identifier.

## Query parameters

- `workspace_id` string — Optional workspace override. If omitted, Conduit resolves the execution's workspace automatically.
- `limit` integer
- `cursor` string
- `order` 'asc' | 'desc' — Sort order by event timestamp. Ascending by default.

## Response `200`

Workflow execution events

- object — Cursor-paginated, step-level workflow execution event log (ascending by default).
  - `data` object[], required
    - `event_id` string, required
    - `step_id` string, nullable, required
    - `step_name` string, nullable, required
    - `type` string, nullable, required
    - `status` string, nullable, required
    - `timestamp` string, required
    - `payload_summary` unknown
  - `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/revisions/3ad7e17f96ad/schema)
