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

# Move Mouse

> Move the mouse pointer across a browser page with configurable randomness

The Move Mouse command (Command Type: 1) moves the mouse pointer across a browser page with a specified level of randomness to simulate human-like behavior.

## Command Type

**Command Type ID:** 1

## Parameters

| Parameter   | Type   | Description                                                                           | Required |
| ----------- | ------ | ------------------------------------------------------------------------------------- | -------- |
| **spread**  | number | Randomness of mouse movement (0–100). `0` = straight line, `100` = maximum randomness | Yes      |
| **timeout** | number | Timeout for the command in milliseconds                                               | Yes      |

## Usage Examples

### Move Mouse with Moderate Randomness

```json theme={null}
{
  "command": "move-mouse",
  "params": {
    "spread": 30,
    "timeout": 5000
  }
}
```

### Move Mouse in a Straight Line

```json theme={null}
{
  "command": "move-mouse",
  "params": {
    "spread": 0,
    "timeout": 3000
  }
}
```

## Common Use Cases

* **Bot Detection Evasion**: Simulate natural mouse movement before clicking
* **Human-Like Navigation**: Add randomness to automated interactions

## Related Commands

* [Mouse Click On Elements](/stream/commands/interaction/mouse-click-on-elements) - Click elements after moving
