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

# Get Window Data Simple

> Retrieve a window object property using a simple dot-separated path

The Get Window Data Simple command (Command Type: 14) retrieves the value of a specified property from the browser's `window` object using a simple dot-separated path string.

## Command Type

**Command Type ID:** 14

## Parameters

| Parameter   | Type   | Description                                                                                                           | Required |
| ----------- | ------ | --------------------------------------------------------------------------------------------------------------------- | -------- |
| **path**    | string | Dot-separated path to the property. Example: `"app.state.selectedOption"` retrieves `window.app.state.selectedOption` | Yes      |
| **timeout** | number | Timeout in milliseconds                                                                                               | Yes      |

## Usage Examples

### Get a Simple Window Property

```json theme={null}
{
  "command": "get-window-data-simple",
  "params": {
    "path": "app.config.apiUrl",
    "timeout": 5000
  }
}
```

### Get Nested State

```json theme={null}
{
  "command": "get-window-data-simple",
  "params": {
    "path": "store.state.currentSport",
    "timeout": 8000
  }
}
```

## Related Commands

* [Get Window Data](/stream/commands/browser/get-window-data) - Array-path variant with ObjectMapper support
* [Set Window Data](/stream/commands/browser/set-window-data) - Write to the window object
