> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blobhub.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Execution

Retrieve details of a specific execution.

## **POST** `/revisions/:id/data/query` (Command: `get_execution`)

### Request Body

| Parameter      | Type   | Required | Description                 |
| :------------- | :----- | :------- | :-------------------------- |
| `engine`       | string | Yes      | Must be `workflow_blobhub`. |
| `command`      | string | Yes      | Must be `get_execution`.    |
| `execution_id` | string | Yes      | The ID of the execution.    |

### Response

| Parameter   | Type   | Description           |
| :---------- | :----- | :-------------------- |
| `execution` | object | The execution object. |

### Example

<CodeGroup>
  ```json Request theme={null}
  {
    "engine": "workflow_blobhub",
    "command": "get_execution",
    "execution_id": "exec_001"
  }
  ```

  ```json Response theme={null}
  {
    "execution": {
      "id": "exec_001",
      "status": "running"
    }
  }
  ```
</CodeGroup>
