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

# List cloud workflows

`GET /api/workflows`

[cloud-only] Returns a paginated list of the authenticated user's cloud workflows.

## Query parameters

- `limit` integer
- `offset` integer
- `sort` string
- `order` 'asc' | 'desc'
- `search` string

## Response `200`

Workflow list

- WorkflowListResponse — [cloud-only] Paginated list of saved workflows.
  - `data` WorkflowResponse[], required
    - `id` string, required
    - `name` string
    - `description` string
    - `default_view` 'workflow' | 'app'
    - `latest_version` integer, required
    - `forked_from` WorkflowForkedFrom — [cloud-only] Reference to the parent workflow from which this workflow was forked.
      - `workflow_id` string
      - `workflow_version_id` string
    - `created_by` string, required
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, required
  - `pagination` PaginationInfo, required — Pagination metadata returned alongside list responses.
    - `offset` integer
    - `limit` integer
    - `total` integer
    - `has_more` boolean

## Other responses

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

## Changes

- **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/c4db9e1283df/schema)
