> ## 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.

# List Execution Events

List events for a specific execution.

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

### Request Body

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

### Response

| Parameter          | Type  | Description            |
| :----------------- | :---- | :--------------------- |
| `execution_events` | array | List of event objects. |

### Example

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

  ```json Response theme={null}
  {
    "execution_events": []
  }
  ```
</CodeGroup>
