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

Retrieve details of a specific session.

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

### Request Body

| Parameter    | Type   | Required | Description                 |
| :----------- | :----- | :------- | :-------------------------- |
| `engine`     | string | Yes      | Must be `workflow_blobhub`. |
| `command`    | string | Yes      | Must be `get_session`.      |
| `session_id` | string | Yes      | The ID of the session.      |

### Response

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

### Example

<CodeGroup>
  ```json Request theme={null}
  {
    "engine": "workflow_blobhub",
    "command": "get_session",
    "session_id": "sess_001"
  }
  ```

  ```json Response theme={null}
  {
    "session": {
      "id": "sess_001",
      "status": "open"
    }
  }
  ```
</CodeGroup>
