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: rt_live_xxx"
{
  "data": {
    "id": "sandbox-abc123",
    "status": "running",
    "resumedAt": "2025-01-21T11:00:00Z"
  }
}

Path Parameters

id
string
required
Sandbox ID

Response

id
string
Sandbox ID
status
string
New status: running
resumedAt
string
ISO 8601 timestamp when resumed
curl -X POST https://api.runtools.ai/v1/sandboxes/sandbox-abc123/resume \
  -H "X-API-Key: rt_live_xxx"
{
  "data": {
    "id": "sandbox-abc123",
    "status": "running",
    "resumedAt": "2025-01-21T11:00:00Z"
  }
}

Notes

  • Resume typically completes in under 1 second
  • All processes continue from where they were paused
  • File system state is fully restored
  • Network connections may need to be re-established