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

# Describe a session

The `get` command in MarinaBox CLI, referred to here as the "Describe Session" command, is used to retrieve detailed information about a specific active session using its session ID.

***

## Command Syntax

```bash theme={null}
mb local get <SESSION_ID>
```

***

## Description

This command provides detailed information about a single active session, including:

* **Session ID**: Unique identifier for the session.
* **Environment Type**: Type of environment (`browser` or `desktop`).
* **Status**: Current status of the session (`running`).
* **Resolution**: Resolution of the sandbox environment.
* **Tag**: Custom tag assigned to the session (if any).
* **Runtime Seconds**: Total runtime of the session (in seconds).

***

## Example Usage

### Retrieve Details for a Specific Session:

```bash theme={null}
mb local get abc123xyz
```

#### Example Output:

```json theme={null}
{
  "session_id": "abc123xyz",
  "env_type": "browser",
  "status": "running",
  "resolution": "1920x1080x24",
  "tag": "Development",
  "runtime_seconds": 3600
}
```

***

## Notes

* Use the `session_id` obtained from the `list` command to ensure you're targeting the correct session.
* This command is useful for monitoring or debugging a specific session.

***

### Get Support & Join Our Community

* Discord: [https://discord.gg/nAyFBSSU87](https://discord.gg/nAyFBSSU87)
* Email: [askmarinabox@gmail.com](mailto:askmarinabox@gmail.com)
