Type text
import requests

url = 'https://api.simplex.sh/type'
headers = {
    'X-API-Key': 'your_api_key_here'
}
data = {
    'text': 'Hello World',
    'session_id': 'your_session_id',  # Optional
    'is_password': False  # Optional, set to True for passwords
}

response = requests.post(url, headers=headers, data=data)
print(response.json())
{
  "succeeded": true,
  "error": "<string>"
}
Types text into the currently focused input field.

Authorizations

X-API-Key
string
header
required

Simplex API Key

Body

multipart/form-data

Response

Type response

The response is of type object.