---
title: "Get Workflow Execution"
method: GET
path: "/v1/workflows/executions/{execution_id}"
tags: ["workflows.executions"]
---

# Get Workflow Execution

`GET /v1/workflows/executions/{execution_id}`

Get Workflow Execution

## Path parameters

- `execution_id` string, required

## Query parameters

- `include_search_keys` boolean — Include the execution's search keys (metadata) in the response.

## Response `200`

Successful Response

- WorkflowExecutionResponse
  - `workflow_name` string, required — The name of the workflow
  - `workflow_id` string, uuid, nullable — The ID of the workflow
  - `deployment_name` string, nullable — The name of the deployment that ran this execution
  - `execution_id` string, required — The ID of the workflow execution
  - `parent_execution_id` string, nullable — The parent execution ID of the workflow execution
  - `root_execution_id` string, required — The root execution ID of the workflow execution
  - `run_id` string, nullable — The unique run identifier (database UUID)
  - `user_id` string, nullable — The ID of the user who triggered the execution
  - `status` 'RUNNING' | 'COMPLETED' | 'FAILED' | 'CANCELED' | 'TERMINATED' | 'CONTINUED_AS_NEW' | 'TIMED_OUT' | 'RETRYING_AFTER_ERROR', required
  - `start_time` string, date-time, required — The start time of the workflow execution
  - `end_time` string, date-time, nullable, required — The end time of the workflow execution, if available
  - `total_duration_ms` integer, nullable — The total duration of the trace in milliseconds
  - `result` unknown, required
  - `search_keys` object, nullable — The execution's search keys (metadata), if requested via include_search_keys.

## Other responses

- `422` — Validation Error

## Changes

- **2026-09-23** `fa73befe1c61` — 2 info
  - added the new optional `query` request parameter `include_search_keys`
  - added the optional property `search_keys` to the response with the `200` status

[Change history](https://skmtc.dev/mistral/apis/mistral-ai-api/changes/v1/workflows/executions/:execution_id/get.md)

---

[API](https://skmtc.dev/mistral/apis/mistral-ai-api.md) · [All operations](https://skmtc.dev/mistral/apis/mistral-ai-api/llms.txt) · [OpenAPI document](https://skmtc.dev/mistral/apis/mistral-ai-api/revisions/fa73befe1c61?raw)
