POST
/
v1
/
sessions
/
{sessionId}
/
mouse
/
move
curl --request POST \
  --url https://api.anchorbrowser.io/v1/sessions/{sessionId}/mouse/move \
  --header 'Content-Type: application/json' \
  --header 'anchor-api-key: <api-key>' \
  --data '{
  "x": 350,
  "y": 250
}'
{
  "status": "success"
}

Authorizations

anchor-api-key
string
header
required

API key passed in the header

Path Parameters

sessionId
string
required

The ID of the browser session

Body

application/json
x
integer
required

X coordinate to move to

Example:

350

y
integer
required

Y coordinate to move to

Example:

250

Response

200
application/json
Mouse move performed successfully
status
string
Example:

"success"