Skip to main content
POST
/
api
/
sandboxes
/
{id}
/
wake
Wake Sandbox
curl --request POST \
  --url https://app.opencomputer.dev/api/sandboxes/{id}/wake \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "timeout": 123
}'
{
  "sandboxID": "sb-abc123",
  "status": "running",
  "region": "use2",
  "workerID": "w-use2-abc123"
}
Resume a hibernated sandbox. Control plane only.
id
string
required
Sandbox ID
timeout
integer
Idle timeout after wake (default: 300)
{
  "sandboxID": "sb-abc123",
  "status": "running",
  "region": "use2",
  "workerID": "w-use2-abc123"
}