> ## Documentation Index
> Fetch the complete documentation index at: https://docs.base44.com/llms.txt
> Use this file to discover all available pages before exploring further.

# workflows list

> List this app's workflows

List this app's [workflows](/Building-your-app/Creating-workflows), along with their status and a summary of their runs.

## Usage

```bash theme={null}
base44 workflows list
```

## Flags

| Flag              | Description                                                                                               |
| ----------------- | --------------------------------------------------------------------------------------------------------- |
| `-n, --limit <n>` | Number of workflows to return, between `1` and `200`. Defaults to `30`.                                   |
| `--json`          | Output the list as JSON. See [JSON output](/developers/references/cli/commands/introduction#json-output). |

## Output format

Each line shows the workflow's name, its status in brackets, and a summary of its runs:

```
Weekly digest  [active]  runs: 42, last run success at 2026-08-30T09:00:00Z
Retry webhook sync  [active]  runs: 128, last run failed at 2026-08-29T14:12:03Z (3 consecutive failures)
Onboarding email  [inactive]  runs: 0, never ran
```

A workflow's status is `active` or `inactive`. The consecutive-failures count only appears once the most recent run has failed, and it clears the next time a run succeeds.

## See also

* [`workflows runs`](/developers/references/cli/commands/workflows-runs): List individual runs across all workflows
* [Creating workflows](/Building-your-app/Creating-workflows): Learn about workflows and how they run
