---
title: "Get workflow execution status (latest run)"
method: GET
path: "/workflow/{id}/status"
---

# Get workflow execution status (latest run)

`GET /workflow/{id}/status`

Returns the status of the latest run for the given workflow. To pin a specific run, use `/workflow/{id}/runs/{rid}/status`.

## Path parameters

- `id` string, required

## Response `200`

The workflow status

- WorkflowStatusResponse
  - `workflowId` string — The id of workflow
  - `runId` string — The specific run id for this execution
  - `status` 'cancelled' | 'completed' | 'continued_as_new' | 'failed' | 'running' | 'terminated' | 'timed_out' | 'unspecified' — The workflow execution status
  - `startedAt` number — An epoch timestamp representing when the workflow started
  - `completedAt` number — An epoch timestamp representing when the workflow ended

## Other responses

- `404` — Workflow execution, workflow type, or catalog not found
- `500` — Internal server error (e.g. Temporal connection failure)

## Changes

- **2026-08-07** `09a49e598435` — 1 warning, 1 info
  - added the new `cancelled` enum value to the `status` response property for the response status `200`
  - removed the `canceled` enum value from the `status` response property for the response status `200`
- **2026-04-17** `a3368f919949` — 1 info
  - added the optional property `runId` to the response with the `200` status
- **2026-03-13** `0f0e49049ef1` — 1 warning
  - removed the optional property `runId` from the response with the `200` status

[Change history](https://skmtc.dev/growthxai/apis/output-ai-api/changes/workflow/:id/status/get.md)

---

[API](https://skmtc.dev/growthxai/apis/output-ai-api.md) · [All operations](https://skmtc.dev/growthxai/apis/output-ai-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/growthxai/output-ai-api/revisions/09a49e598435/schema)
