Python
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 in the remote session.
Simplex API Key
Type response
The response is of type object.
object
Was this page helpful?