Press Enter
import requests

url = 'https://api.simplex.sh/press_enter'
headers = {
    'X-API-Key': 'your_api_key_here'
}
data = {
    'session_id': 'your_session_id'  # Optional
}

response = requests.post(url, headers=headers, data=data)
print(response.json())
{
  "succeeded": true,
  "error": "<string>"
}
Simulates pressing the Enter key.

Authorizations

X-API-Key
string
header
required

Simplex API Key

Body

multipart/form-data

Response

Press enter response

The response is of type object.