---
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` FlowExecution[], 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
  - `pagination` Pagination, required
    - `hasNext` boolean, required
    - `hasPrev` boolean, required
    - `page` integer, required
    - `pageSize` integer, required
    - `pages` integer, required
    - `total` integer, required

---

[API](https://skmtc.net/mobilerun/apis/workflows.md) · [All operations](https://skmtc.net/mobilerun/apis/workflows/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/mobilerun/workflows/revisions/1bc499aa8f99/schema)
