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

# List Workflows

> Every Workflow in your workspace

Every [Workflow](/workflows), active or not — its view, trigger, current member
count, and last run.

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.clustr-ai.com/api/public/workflows" \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": {
      "workflows": [
        {
          "id": "7f1e2a33-...",
          "name": "Hot accounts",
          "is_active": true,
          "viewId": "3e5f1a22-...",
          "entity": "accounts",
          "on": "enter",
          "memberCount": 42,
          "last_run_at": "2026-09-13T09:00:00Z"
        }
      ],
      "count": 1
    }
  }
  ```
</ResponseExample>
