Execute code
Run a script in a secure, isolated environment. Scripts can read from stdin
and write to stdout
or stderr
. They can access input files, environment variables and command line arguments.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
The interpreter to use when executing code.
PYTHON
, JAVASCRIPT
, TYPESCRIPT
, RUBY
, PHP
The runtime to use when executing code.
The code to execute.
Input made available to the script via stdin
.
List of command line arguments to pass to the script.
Set of key-value pairs to add to the script's execution environment.
List of input files.
List of allowed hosts for HTTP requests.
Configuration for execution environment limits.
Configuration for HTTP requests and authentication.
Response
The exit code returned by the script. Will often be 0
on success and non-zero on failure.
The contents of stdout
after executing the script.
The contents of stderr
after executing the script.