POST
/
step_to_action

This endpoint converts a natural language step description into structured browser interaction commands. The response is in natural language.

The interactions can be executed by the browser actor if desired.

Request

step
string
required

Natural language description of the step to take (e.g. “Click the login button”)

api_key
string
required

Your API key for authentication

Response

Returns a string containing the browser interaction commands needed to complete the step.

Example Request

curl -X POST 'https://u3mvtbirxf.us-east-1.awsapprunner.com/step_to_action' \
  -H "Content-Type: multipart/form-data" \
  -F 'step=Click the submit button' \
  -F 'api_key=your_api_key'

Example Response

"CLICK, the submit button"