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

# List workflows

`GET /api/workflows`

Returns a paginated list of workflows for the authenticated user in the current workspace.

## Query parameters

- `limit` integer
- `offset` integer
- `name` string
- `default_view` 'workflow' | 'app'
- `sort` 'create_time' | 'update_time' | 'name'
- `order` 'asc' | 'desc'

## Response `200`

Success

- WorkflowListResponse — Paginated list of saved workflows.
  - `data` WorkflowResponse[], required
    - `created_at` string, date-time, required
    - `created_by` string, required
    - `default_view` 'workflow' | 'app'
    - `description` string
    - `forked_from` WorkflowForkedFrom — Reference to the parent workflow from which this workflow was forked.
      - `workflow_id` string
      - `workflow_version_id` string
    - `id` string, required
    - `latest_version` integer, required
    - `name` string
    - `updated_at` string, date-time, required
  - `pagination` PaginationInfo, required — Offset/limit-based pagination metadata included in list responses.
    - `has_more` boolean, required — Whether more items are available beyond this page
    - `limit` integer, required — Items per page
    - `offset` integer, required — Current offset (0-based)
    - `total` integer, required — Total number of items matching filters

## Other responses

- `401` — Unauthorized
- `500` — Internal server error

## Changes

- **2026-06-03** `8560879e6188` — 6 breaking, 2 warning, 12 info
  - the `query` request parameter `sort` was restricted to a list of enum values
  - for the `query` request parameter `limit`, default value `20` was added
  - for the `query` request parameter `offset`, default value `0` was added
  - for the `query` request parameter `order`, default value `desc` was added
  - …16 more
- **2026-05-22** `c4db9e1283df` — 3 breaking, 2 info
  - removed the required property `has_more` from the response with the `200` status
  - removed the required property `total` from the response with the `200` status
  - removed the required property `workflows` from the response with the `200` status
  - added the required property `data` to the response with the `200` status
  - …1 more
- **2026-05-22** `09a5075587c8` — 2 info
  - api operation id `listCloudWorkflows` removed and replaced with `listWorkflows`
  - added the non-success response with the status `500`
- **2026-05-08** `c9640fded659` — 1 info
  - endpoint added
- **2026-04-24** `a66055fa384e` — 1 breaking
  - api path removed without deprecation

[Change history](https://skmtc.dev/comfy-org/apis/comfyui-api/changes/api/workflows/get.md)

---

[API](https://skmtc.dev/comfy-org/apis/comfyui-api.md) · [All operations](https://skmtc.dev/comfy-org/apis/comfyui-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/comfy-org/comfyui-api/revisions/8560879e6188/schema)
