POST
/
v1
/
sessions
/
{sessionId}
/
keyboard
/
type
curl --request POST \
  --url https://api.anchorbrowser.io/v1/sessions/{sessionId}/keyboard/type \
  --header 'Content-Type: application/json' \
  --header 'anchor-api-key: <api-key>' \
  --data '{
  "text": "Hello from Session Manager VNC API test!",
  "delay": 30
}'
{
  "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
text
string
required

Text to type

Example:

"Hello from Session Manager VNC API test!"

delay
integer
default:0

Delay between keystrokes in milliseconds

Example:

30

Response

200
application/json
Text typed successfully
status
string
Example:

"success"