# Workflow Run ## Status `client.workflowRun.status(stringrunID, RequestOptionsoptions?): WorkflowRunStatusResponse` **get** `/v1/workflowRun/{runId}/status` Returns the current status of a workflow run. ### Parameters - `runID: string` Unique identifier of the workflow run. ### Returns - `WorkflowRunStatusResponse` - `status: string` Current status of the workflow run (e.g. `running`, `completed`, `failed`). ### Example ```typescript import Lightfield from 'lightfield'; const client = new Lightfield(); const workflowRunStatusResponse = await client.workflowRun.status('runId'); console.log(workflowRunStatusResponse.status); ``` ## Domain Types ### Workflow Run Status Response - `WorkflowRunStatusResponse` - `status: string` Current status of the workflow run (e.g. `running`, `completed`, `failed`).