Get current cursor position
import requests
url = "https://api.13-215-85-171.sslip.io/v1/machines/{id}/desktop/cursor"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)curl --request GET \
--url https://api.13-215-85-171.sslip.io/v1/machines/{id}/desktop/cursor \
--header 'Authorization: Bearer <token>'{
"x": 123,
"y": 123
}Desktop
Get current cursor position
GET
/
v1
/
machines
/
{id}
/
desktop
/
cursor
Get current cursor position
import requests
url = "https://api.13-215-85-171.sslip.io/v1/machines/{id}/desktop/cursor"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)curl --request GET \
--url https://api.13-215-85-171.sslip.io/v1/machines/{id}/desktop/cursor \
--header 'Authorization: Bearer <token>'{
"x": 123,
"y": 123
}