---
title: "Get Workflow Status"
method: GET
path: "/api/v2/workflows"
tags: ["Workflow"]
---

# Get Workflow Status

`GET /api/v2/workflows`

Get status of workflow job by job ID

## Query parameters

- `job_id` union — Job ID to query
  - string
  - string, uuid

## Response `200`

Workflow status response

- object — Synchronous workflow execution response.
  - `created_timestamp` string
  - `errors` ErrorDetail[]
    - `code` string, nullable
    - `details` object, nullable
    - `error` string, required
  - `flow_id` string, required
  - `globals` object
  - `human_request` object, nullable — Set when ``status`` is ``suspended``: the human-input request the run paused on (``prompt``, ``options``, ``allowed_decisions``, ``request_id``). Resume by running the same session/task again with the chosen decision.
  - `inputs` object
  - `job_id` union
    - string
    - string, uuid
  - `object` 'response'
  - `output` WorkflowOutput — The run's primary text answer plus the reason it resolved that way.
    - `reason` 'single' | 'multiple' | 'none' | 'non_string' | 'failed', required — Why ``WorkflowOutput.text`` resolved the way it did. Mirrors the LLM-domain ``finish_reason`` / ``stop_reason`` convention: a machine-readable enum explaining the disposition of the answer, distinct from the lifecycle ``status``.
    - `source` string, nullable — Component id that produced ``text``. Set only when ``reason`` is ``single``.
    - `text` string, nullable — The run's text answer. Set only when ``reason`` is ``single``. Empty string is a valid answer.
  - `outputs` object
  - `session_id` string, nullable — The session the run executed under. Echoes the request ``session_id`` when provided, otherwise the server-generated one. Pass it back on the next call to continue the same chat history / memory thread.
  - `status` 'queued' | 'in_progress' | 'completed' | 'failed' | 'cancelled' | 'timed_out' | 'suspended', required — Job execution status.

## Other responses

- `422` — Validation Error

---

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