Skip to main content
POST
/
api
/
keyboard
/
type
Type Text
curl --request POST \
  --url http://localhost:4242/{computer_name}/api/keyboard/type \
  --header 'Content-Type: application/json' \
  --data '
{
  "display_num": 1,
  "text": "Hello, World!",
  "typing_delay": 12,
  "typing_group_size": 50
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Body

application/json

Text to type and typing parameters

text
string
required

Text to type

Example:

"Hello, World!"

display_num
integer
default:1

Display number to target

Example:

1

typing_delay
integer
default:12

Delay between keystrokes in milliseconds

Required range: x >= 0
Example:

12

typing_group_size
integer
default:50

Number of characters to type at once

Example:

50

Response

Successfully typed the text