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

# Get Workflow

`GET /api/v1/workflows/{workflow_id}`

Retrieve detailed information for a specific workflow by its ID.

## Path parameters

- `workflow_id` union, required
  - string, uuid
  - string

## Headers

- `unstructured-api-key` string, nullable

## Response `200`

Successful Response

- WorkflowInformation
  - `id` string, uuid, required
  - `name` string, required
  - `key` string, nullable
  - `sources` string[], required
  - `destinations` string[], required
  - `workflow_type` 'basic' | 'advanced' | 'platinum' | 'custom'
  - `workflow_nodes` WorkflowNode[], required
    - `id` string, uuid, nullable
    - `name` string, required
    - `type` string, required
    - `subtype` string, required
    - `settings` object, nullable
  - `schedule` WorkflowSchedule
    - `crontab_entries` CronTabEntry[], required
      - `cron_expression` string, required
  - `status` 'active' | 'inactive', required
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, nullable
  - `reprocess_all` boolean
  - `skip_preflight` boolean

## Other responses

- `422` — Validation Error

## Changes

- **2026-08-27** `ccebd049e012` — 1 info
  - added the optional property `skip_preflight` to the response with the `200` status

[Change history](https://skmtc.dev/unstructuredapp/apis/platform-api/changes/api/v1/workflows/:workflow_id/get.md)

---

[API](https://skmtc.dev/unstructuredapp/apis/platform-api.md) · [All operations](https://skmtc.dev/unstructuredapp/apis/platform-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/unstructuredapp/platform-api/revisions/ccebd049e012/schema)
