---
title: "Get Workflow"
method: GET
path: "/api/workflows/{workflow_id}"
tags: ["Workflows"]
---

# Get Workflow

`GET /api/workflows/{workflow_id}`

Get a specific workflow by ID.

Path Parameters:
    - workflow_id: UUID of the workflow

Returns:
    Workflow details

## Path parameters

- `workflow_id` string, required

## Response `200`

Successful Response

- WorkflowResponse — Response model for a workflow
  - `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/versions/b6c76b02a94a/schema)
