---
title: "List flow executions"
method: GET
path: "/executions"
tags: ["Executions"]
---

# List flow executions

`GET /executions`

Return a paginated history of flow executions. Supports filtering by `flowId`, `triggerId`, `status`, and a `from`/`to` time range, plus free-text `search` and ordering by startedAt, finishedAt, or status.

## Query parameters

- `page` integer
- `pageSize` integer
- `flowId` string, uuid
- `triggerId` string, uuid
- `status` 'pending' | 'running' | 'success' | 'failed' | 'cancelled' | 'skipped' | 'invalid'
- `from` string, nullable
- `to` string, nullable
- `search` string
- `orderBy` 'startedAt' | 'finishedAt' | 'status'
- `orderByDirection` 'asc' | 'desc'

## Response `200`

Execution history

- object
  - `items` FlowExecutionListItem[], required
    - `id` string, uuid, required
    - `flowId` string, uuid, required
    - `triggerId` string, uuid, required
    - `eventId` string, uuid, nullable, required
    - `flowName` string, nullable, required
    - `triggerName` string, nullable, required
    - `status` 'pending' | 'running' | 'success' | 'failed' | 'cancelled' | 'skipped' | 'invalid', nullable, required
    - `kind` 'live' | 'dry_run', required
    - `result` unknown
    - `error` string, nullable, required
    - `startedAt` string, nullable, required
    - `finishedAt` string, nullable, required
    - `createdBy` string, uuid, nullable, required
  - `pagination` Pagination, required
    - `hasNext` boolean, required
    - `hasPrev` boolean, required
    - `page` integer, required
    - `pageSize` integer, required
    - `pages` integer, required
    - `total` integer, required

## Changes

- **2026-08-13** `02da4f9ce3fd` — 13 breaking, 1 warning, 1 info
  - for the `query` request parameter `search`, the minLength was increased from `0` to `1`
  - the `items/items/` response's property type/format changed from `object`/`` to ``/`` for status `200`
  - removed the required property `items/items/error` from the response with the `200` status
  - removed the required property `items/items/eventId` from the response with the `200` status
  - …11 more
- **2026-06-29** `8f06726ac240` — 2 info
  - for the `query` request parameter `page`, the exclusiveMinimum was decreased from `true` to `0.00`
  - for the `query` request parameter `pageSize`, the exclusiveMinimum was decreased from `true` to `0.00`
- **2026-06-28** `fd8fb6b29e38` — 1 info
  - endpoint added
- **2026-06-27** `99b4ade46263` — 1 breaking
  - api path removed without deprecation
- **2026-06-19** `7f577998739b` — 1 info
  - endpoint added

[Full history](https://skmtc.dev/droidrun/apis/droidrun-cloud/changes/executions/get.md)

---

[API](https://skmtc.dev/droidrun/apis/droidrun-cloud.md) · [All operations](https://skmtc.dev/droidrun/apis/droidrun-cloud/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/droidrun/droidrun-cloud/revisions/fc388ab21a20/schema)
