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

# List workflow executions

`GET /workflows/{workflow_id}/executions`

Retrieve a paginated list of executions for a specific workflow with optional filtering and sorting.

## Path parameters

- `workflow_id` string, uuid, required

## Query parameters

- `limit` integer — Maximum number of executions to return (1-100)
- `offset` integer — Number of executions to skip for pagination
- `sort` string, nullable — Sort by field (prefix with '-' for descending). Options: created_at, started_at, completed_at, status
- `filter` string, nullable — Filter executions. Format: 'field:value'. Supported: status (pending/running/completed/failed/cancelled/timed_out), type (manual/api/scheduled/triggered/campaign)

## Response `200`

Successfully retrieved workflow executions

- object
  - `ok` boolean
  - `data` object[]
    - `id` string, uuid
    - `friendly_id` integer
    - `workflow_id` string, uuid
    - `type` string
    - `status` string
    - `created_at` string, date-time
    - `started_at` string, date-time
    - `completed_at` string, date-time
  - `meta` object
    - `limit` integer
    - `offset` integer
    - `total_items` integer

## Other responses

- `401` — Invalid or missing API key
- `403` — Insufficient permissions
- `404` — Resource not found

---

[API](https://skmtc.net/yourang/apis/yourang-ai-external-api-v1.md) · [All operations](https://skmtc.net/yourang/apis/yourang-ai-external-api-v1/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/yourang/yourang-ai-external-api-v1/versions/49680ee64400/schema)
