Skip to main content
POST
/
api
/
sandboxes
/
{id}
/
exec
/
{sessionID}
/
kill
Kill Exec Session
curl --request POST \
  --url https://app.opencomputer.dev/api/sandboxes/{id}/exec/{sessionID}/kill \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "signal": 123
}'
{}

Documentation Index

Fetch the complete documentation index at: https://docs.opencomputer.dev/llms.txt

Use this file to discover all available pages before exploring further.

Kill an exec session.
id
string
required
Sandbox ID
sessionID
string
required
Exec session ID
signal
integer
Signal number (default: 9 / SIGKILL)
{}