Skip to main content
POST
/
v1
/
sandboxes
/
{id}
/
resume
curl -X POST https://api.runtools.ai/v1/sandboxes/sandbox-abc123/resume \
  -H "X-API-Key: $RUNTOOLS_API_KEY"
{
  "data": {
    "id": "sandbox-abc123",
    "status": "resuming"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.runtools.ai/llms.txt

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

Path Parameters

id
string
required
Sandbox ID.

Response

id
string
Sandbox ID.
status
string
Usually resuming while the sandbox is coming back online.
curl -X POST https://api.runtools.ai/v1/sandboxes/sandbox-abc123/resume \
  -H "X-API-Key: $RUNTOOLS_API_KEY"
{
  "data": {
    "id": "sandbox-abc123",
    "status": "resuming"
  }
}

Notes

  • Resumed sandboxes may need a short readiness window before SSH or desktop access is available.
  • Use sandbox.waitForReady() to wait for SSH readiness from SDK code.