# Mouse Movements

Source: https://docs.scrappey.com/docs/mouse-movements

> Simulate realistic mouse movement patterns to better emulate real user behavior on sites that analyze behavioral signals.

## Command

`"mouseMovements"`

## Parameters

| Parameter        | Type    | Required | Description                                       |
| ---------------- | ------- | -------- | ------------------------------------------------- |
| `mouseMovements` | boolean | Yes      | Set to `true` to enable realistic mouse movement. |

## Example

```bash
curl -X POST "https://publisher.scrappey.com/api/v1?key=YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "cmd": "request.get",
    "url": "https://example.com",
    "mouseMovements": true
  }'
```

## Notes

Enable this feature when:

- Navigating sites with bot protection based on behavioral analysis.
- Clicking buttons, filling out forms, or interacting with content.
- Needing more human-like scraping sessions.

This is ideal for interacting naturally with advanced bot-detection systems like those used on login forms, checkout pages, or gated content behind interaction-based verification. The feature uses actual recorded patterns instead of fully random coordinates.

## Related concepts

Go deeper in the [Scrappey knowledge base](https://scrappey.com/qa):

- [Behavioural detection](https://scrappey.com/qa/anti-bot/what-is-behavioural-detection) — why human-like movement matters
- [Playwright](https://scrappey.com/qa/web-scraping-apis/what-is-playwright) — the automation engine behind browser actions
