---
title: "Get workflow details"
method: GET
path: "/v1/workflows/{id}"
tags: ["Workflows"]
---

# Get workflow details

`GET /v1/workflows/{id}`

Returns details about a specific published workflow, including its graph schema.

## Path parameters

- `id` string, uuid, required

## Headers

- `X-Runway-Version` '2024-11-06', required

## Response `200`

The workflow details including graph schema.

- object
  - `id` string, uuid, required — The globally unique ID of the published workflow.
  - `name` string, required — The name of the published workflow.
  - `description` string, nullable, required — The description of the published workflow.
  - `version` integer, required — A monotonically increasing version number. Each workflow version for the same published workflow has a unique version number.
  - `createdAt` string, date-time, required — When this version was published
  - `updatedAt` string, date-time, required — When this version was last updated
  - `graph` object, required — The workflow graph definition.
    - `nodes` unknown[], required — The list of nodes in the workflow graph.
      - unknown
    - `edges` unknown[], required — The list of edges connecting nodes in the workflow graph.
      - unknown
    - `version` integer, required — The schema version of the workflow graph format.

## Other responses

- `404` — The workflow does not exist or was deleted.

---

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