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

# Switch Timezone (Browser)

> Set the timezone of the OS on the browser machine

The Switch Timezone command (Command Type: 998) sets the timezone of the OS on the machine running the browser scraper.

## Command Type

**Command Type ID:** 998

## Parameters

| Parameter        | Type   | Description                                                                      | Required |
| ---------------- | ------ | -------------------------------------------------------------------------------- | -------- |
| **ianaTimezone** | string | The timezone to set in IANA format (e.g., `"Europe/London"`, `"Asia/Jerusalem"`) | Yes      |
| **timeout**      | number | Timeout in milliseconds                                                          | Yes      |

## Usage Examples

### Set Timezone to UTC

```json theme={null}
{
  "command": "switch-timezone",
  "params": {
    "ianaTimezone": "UTC",
    "timeout": 5000
  }
}
```

### Set to Israel Time

```json theme={null}
{
  "command": "switch-timezone",
  "params": {
    "ianaTimezone": "Asia/Jerusalem",
    "timeout": 5000
  }
}
```

## Related Commands

* [Switch Proxy (Browser)](/stream/commands/browser/switch-proxy) - Switch proxy settings
