---
title: "List workflows"
method: GET
path: "/v1/workspaces/{id}/workflows"
tags: ["workflows"]
---

# List workflows

`GET /v1/workspaces/{id}/workflows`

Returns paginated workflow summaries for a workspace. Defaults to the latest version per workflow; pass `all_versions=true` to include version history.

## Path parameters

- `id` string, required — Workspace identifier.

## Query parameters

- `limit` integer
- `cursor` string
- `all_versions` 'true' | 'false' — When `true`, include every stored version of each workflow. Defaults to the latest version per workflow.

## Response `200`

Workflows

- object — Cursor-paginated workflows response.
  - `data` object[], required
    - `workflow_id` string, required
    - `master_id` string, nullable, required
    - `name` string, required
    - `enabled` boolean, required
    - `status` string, required
    - `version` number, required
    - `is_latest` boolean, required
    - `color` string, required
    - `trigger_summary` string, nullable, required
    - `created_at` string, required
    - `updated_at` string, required
  - `next_cursor` string, nullable, required
  - `has_more` boolean, required

## Other responses

- `400` — Invalid request
- `401` — Unauthorized
- `403` — Forbidden
- `429` — Rate limit exceeded

---

[API](https://skmtc.net/conduit/apis/conduit-api.md) · [All operations](https://skmtc.net/conduit/apis/conduit-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/conduit/conduit-api/versions/3ad7e17f96ad/schema)
