Get the title for a specific window
import requests
url = "https://api.13-215-85-171.sslip.io/v1/machines/{id}/desktop/window/{window_id}/title"
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/window/{window_id}/title \
--header 'Authorization: Bearer <token>'{
"window_id": "<string>",
"title": "<string>"
}Desktop
Get the title for a specific window
GET
/
v1
/
machines
/
{id}
/
desktop
/
window
/
{window_id}
/
title
Get the title for a specific window
import requests
url = "https://api.13-215-85-171.sslip.io/v1/machines/{id}/desktop/window/{window_id}/title"
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/window/{window_id}/title \
--header 'Authorization: Bearer <token>'{
"window_id": "<string>",
"title": "<string>"
}