---
title: "Get Workflow Run Detail"
method: GET
path: "/workflows/run/{workflow_run_id}"
tags: ["Workflow Runs"]
---

# Get Workflow Run Detail

`GET /workflows/run/{workflow_run_id}`

**Available for**: Chatflow, Workflow apps.

Get a single workflow run's status, inputs, outputs, and execution metrics.

## Path parameters

- `workflow_run_id` string, required

## Response `200`

Successfully retrieved workflow run details.

- WorkflowRunDetailResponse
  - `id` string, uuid — Workflow run ID.
  - `workflow_id` string, uuid — Workflow ID.
  - `status` string — Workflow execution status. `running` for in-progress executions, `succeeded` when completed successfully, `failed` when execution encountered an error, `stopped` when manually halted, `partial-succeeded` when some nodes succeeded but others failed, `paused` when awaiting human input.
  - `inputs` string, nullable — Input variables of the workflow run, returned as a raw JSON string that clients must parse (e.g., `{"query": "..."}`). May be `null`.
  - `outputs` object — Output data from the workflow. An empty object until outputs are available.
  - `error` string, nullable — Error message if the workflow failed.
  - `total_steps` integer — Total number of workflow steps executed.
  - `total_tokens` integer — Total tokens consumed.
  - `created_at` integer — Unix timestamp of when the workflow run was created.
  - `finished_at` integer, nullable — Unix timestamp of when the workflow run finished.
  - `elapsed_time` number, float, nullable — Total time elapsed in seconds.

## Other responses

- `400` — `not_workflow_app` : App mode does not match the API route.
- `404` — `not_found` : Workflow run not found.

---

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