Skip to main content
POST
/
computers
/
{id}
/
type
Type text
curl --request POST \
  --url https://www.orgo.ai/api/computers/{id}/type \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "text": "Hello, world!"
}
'
{
  "success": true
}
Types text on the computer keyboard.

Path parameters

id
string
required
Computer ID.

Request

text
string
required
Text to type. Supports unicode characters.

Response

success
boolean
true if text was typed.

Example

curl -X POST https://www.orgo.ai/api/computers/a3bb189e-8bf9-3888-9912-ace4e6543002/type \
  -H "Authorization: Bearer $ORGO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"text": "Hello, world!"}'

Response

{
  "success": true
}
Use Press key for special keys like Enter, Tab, or keyboard shortcuts.

Authorizations

Authorization
string
header
required

API key authentication. Get your key at orgo.ai/workspaces

Path Parameters

id
string
required

Computer ID

Body

application/json
text
string
required

Text to type

Response

Text typed

success
boolean
Example:

true