API Reference
Get Status
Retrieve the current status of a sandbox.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Retrieve the current status of a sandbox.
GET /v1/sandboxes/{id}
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | Yes | Sandbox ID returned from create. |
{
"id": "sb_abc123",
"language": "python",
"status": "created"
}
| Status | Description |
|---|---|
created | Sandbox is ready to accept files and exec requests. |
curl http://localhost:8000/v1/sandboxes/sb_abc123