Get the current mouse cursor position on the browser instance
POST
/browsers/{id}/computer/get_mouse_positionAuthorization
bearerAuth AuthorizationBearer <token>
In: header
Path Parameters
id*string
Browser session ID
Response
application/json
Current mouse position
curl -X POST "https://example.com/browsers/string/computer/get_mouse_position"{ "x": 0, "y": 0}{ "code": "string", "message": "string", "details": [ { "code": "string", "message": "string" } ], "inner_error": { "code": "string", "message": "string" }}{ "code": "string", "message": "string", "details": [ { "code": "string", "message": "string" } ], "inner_error": { "code": "string", "message": "string" }}{ "code": "string", "message": "string", "details": [ { "code": "string", "message": "string" } ], "inner_error": { "code": "string", "message": "string" }}postExecute a batch of computer actions sequentially
Send an array of computer actions to execute in order on the browser instance. Execution stops on the first error. This reduces network latency compared to sending individual action requests.
postRead text from the clipboard on the browser instance
Next Page