Skip to main content
POST
/
computers
/
{id}
/
scroll
Scroll
curl --request POST \
  --url https://www.orgo.ai/api/computers/{id}/scroll \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "direction": "down",
  "amount": 3
}
'
{
  "success": true
}
Scrolls the mouse wheel up or down.

Path parameters

id
string
required
Computer ID.

Request

direction
string
required
Scroll direction: up or down.
amount
integer
default:"3"
Number of scroll clicks.

Response

success
boolean
true if scroll was performed.

Example

# Scroll down
curl -X POST https://www.orgo.ai/api/computers/a3bb189e-8bf9-3888-9912-ace4e6543002/scroll \
  -H "Authorization: Bearer $ORGO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"direction": "down", "amount": 3}'

# Scroll up more
curl -X POST https://www.orgo.ai/api/computers/a3bb189e-8bf9-3888-9912-ace4e6543002/scroll \
  -H "Authorization: Bearer $ORGO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"direction": "up", "amount": 10}'

Response

{
  "success": true
}

Authorizations

Authorization
string
header
required

API key authentication. Get your key at orgo.ai/workspaces

Path Parameters

id
string
required

Computer ID

Body

application/json
direction
enum<string>
required

Scroll direction

Available options:
up,
down
amount
integer
default:3

Scroll amount (clicks)

Required range: x >= 1

Response

Scroll performed

success
boolean
Example:

true