POST
/
api
/
run
/
async
curl --request POST \
  --url https://api.avm.codes/api/run/async \
  --header 'Content-Type: application/json' \
  --header 'avm-x-api-key: <api-key>' \
  --data '{
  "code": "print(\"Hello, World\")",
  "webhook": "https://example.com/webhook"
}'
{
  "runId": "1",
  "status": "IN_PROGRESS"
}

Authorizations

avm-x-api-key
string
header
required

Body

application/json
code
string
required
Example:

"print(\"Hello, World\")"

webhook
string
Example:

"https://example.com/webhook"

Response

200
application/json
A successful response containing user Run details.
runId
string
required
Example:

"1"

status
enum<string>
required
Available options:
IN_PROGRESS,
COMPLETED,
TIMEOUT,
ERROR
Example:

"IN_PROGRESS"