---
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)
    - project_id: Filter by Kiwi project. Pass a UUID for that project,
      ``__none__`` for workflows NOT bound to any project, or omit to
      list every workflow the user owns regardless of project.

Returns:
    List of workflows ordered by last updated

## Query parameters

- `workflow_type` string, nullable
- `is_template` boolean, nullable
- `is_active` boolean, nullable
- `project_id` string, 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
  - `project_id` string, nullable
  - `has_dashboard` boolean

## Other responses

- `422` — Validation Error

---

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