---
title: "List Workflows"
method: GET
path: "/api/workflows"
tags: ["Workflows"]
---

# List Workflows

`GET /api/workflows`

List all workflows for the current user.

Query Parameters:
    - workflow_type: Filter by workflow type (extract, fill, split, etc.)
    - is_template: Filter by template status
    - is_active: Filter by active status (default: True)

Returns:
    List of workflows ordered by last updated

## Query parameters

- `workflow_type` string, nullable
- `is_template` boolean, nullable
- `is_active` boolean, nullable

## Response `200`

Successful Response

- WorkflowResponse[]
  - `id` string, required
  - `user_id` string, required
  - `name` string, required
  - `description` string, nullable, required
  - `workflow_type` string, required
  - `nodes` object[], required
  - `edges` object[], required
  - `is_active` boolean, required
  - `is_template` boolean, required
  - `last_executed_at` string, nullable, required
  - `last_execution_status` string, nullable, required
  - `execution_count` integer, required
  - `created_at` string, required
  - `updated_at` string, required
  - `metadata_json` object, required

## Other responses

- `422` — Validation Error

## Changes

- **2026-08-29** `7a7c8e2b5afc` — 3 warning
  - deleted the `query` request parameter `project_id`
  - removed the optional property `items/has_dashboard` from the response with the `200` status
  - removed the optional property `items/project_id` from the response with the `200` status

[Change history](https://skmtc.dev/qomplement/apis/fastapi/changes/api/workflows/get.md)

---

[API](https://skmtc.dev/qomplement/apis/fastapi.md) · [All operations](https://skmtc.dev/qomplement/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/qomplement/fastapi/revisions/7a7c8e2b5afc/schema)
