Endpoint
Request
Headers
Path Parameters
| Parameter | Type | Description |
|---|---|---|
id | string | Sandbox ID |
Example Request
Response
Success (200 OK)
Response Fields
| Field | Type | Description |
|---|---|---|
id | string | Sandbox ID |
status | string | Current status (running, stopped, paused, creating) |
public_host | string | VM Agent API base URL |
template_id | string | Template ID used to create sandbox |
resources | object | Allocated resources (vcpu, memory_mb, disk_mb) |
timeout_seconds | integer | Auto-kill timeout in seconds |
expires_at | string | ISO 8601 timestamp when sandbox expires |
Status Codes
| Code | Description |
|---|---|
200 | Success |
401 | Authentication required |
404 | Sandbox not found |
Errors
Sandbox Not Found (404)
GET /v1/sandboxes to find valid IDs.
Use Cases
Check Sandbox Status
Monitor sandbox status before executing code:Verify Resources
Confirm allocated resources match expectations:Related
- SDK: Sandbox.connect() - Python SDK method
- SDK: sandbox.get_info() - Python SDK method
- CLI Sandbox Commands - Manage sandboxes from CLI
Next Steps
- List Sandboxes - Query all your sandboxes
- Update Sandbox - Modify sandbox configuration
- Delete Sandbox - Clean up resources

