---
title: "List flows"
method: GET
path: "/flows"
tags: ["Flows"]
---

# List flows

`GET /flows`

Return a paginated list of flows. Supports filtering by `triggerId`, `enabled`, one or more health `status` values (healthy, failing, blocked), `mine` (flows created by the calling actor), `createdBy` (flows created by a given actor id — mutually exclusive with `mine`), plus free-text `search` and ordering.

## Query parameters

- `page` integer
- `pageSize` integer
- `triggerId` string, uuid
- `enabled` 'true' | 'false' — Only include flows with this enabled state.
- `mine` 'true' | 'false' — Only include flows created by you.
- `createdBy` string, uuid
- `status` string[]
- `search` string
- `orderBy` 'name' | 'createdAt' | 'updatedAt'
- `orderByDirection` 'asc' | 'desc'

## Response `200`

List flows

- object
  - `items` Flow[], required
    - `id` string, uuid, required
    - `userId` string, uuid, required — Deprecated: use ownerId (tenancy) / createdBy (actor).
    - `ownerId` string, uuid, required
    - `createdBy` string, uuid, nullable, required
    - `name` string, required
    - `description` string, nullable, required
    - `triggerId` string, uuid, required
    - `enabled` boolean, required
    - `deviceIds` string[], required
    - `cooldownSeconds` integer, nullable, required
    - `cooldownScope` 'flow' | 'device', required
    - `notifyWebhookId` string, uuid, nullable, required
    - `notifyOnSuccess` boolean, required
    - `notifyOnFailure` boolean, required
    - `lastTriggeredAt` string, nullable, required
    - `status` 'healthy' | 'failing' | 'blocked', required
    - `templateResolutionVersion` integer, required — Template-resolver semantics this flow runs under (MVA-23). 1 = legacy (missing/forbidden/null all resolve to ''). 2 = typed (missing/forbidden throw, a whole-token null stays JSON null). Existing flows stay 1; new flows default to 2.
    - `consecutiveFailures` integer, required
    - `lastFailureCode` 'device_not_found' | 'permission_denied' | 'client_error' | 'transient' | 'logic' | 'invalid_config', nullable, required
    - `lastFailureAt` string, nullable, required
    - `blockedAt` string, nullable, required
    - `healthMonitoringEnabled` boolean, required
    - `selfHealingEnabled` boolean, required
    - `selfHealingMaxAttempts` integer, required
    - `createdAt` string, nullable, required
    - `updatedAt` string, 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` — 2 breaking, 8 info
  - the `query` request parameter `enabled` was restricted to a list of enum values
  - for the `query` request parameter `search`, the minLength was increased from `0` to `1`
  - added the new optional `query` request parameter `createdBy`
  - added the new optional `query` request parameter `mine`
  - …6 more
- **2026-07-24** `618bd1cc1aed` — 1 info
  - added the required property `items/items/templateResolutionVersion` to the response with the `200` status
- **2026-07-07** `d5d1e5ee8188` — 3 info
  - response property `items/items/userId` deprecated
  - added the required property `items/items/createdBy` to the response with the `200` status
  - added the required property `items/items/ownerId` to the response with the `200` status
- **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

[Full history](https://skmtc.dev/droidrun/apis/droidrun-cloud/changes/flows/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/a1453ac769d4/schema)
