Basic Request
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
sandbox_id | string | Yes | Sandbox ID (UUID) |
context_id | string | Yes | Context ID (UUID) |
Response
Response Fields
| Field | Type | Description |
|---|---|---|
context_id | string | Unique context identifier |
name | string | Context name |
language | string | Programming language |
created_at | string | Creation timestamp (ISO 8601) |
variables | object | Current variables and their types/values |
List All Contexts
Get all contexts in a sandbox:Context Management
Use contexts to:- Isolate variables: Keep different tasks separate
- Maintain state: Variables persist between executions
- Debug code: Inspect current variable values
- Organize work: Name contexts by purpose

