> ## Documentation Index
> Fetch the complete documentation index at: https://docs.jhansi.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Status

> Retrieve the current status of a sandbox.

## Endpoint

```http theme={null}
GET /v1/sandboxes/{id}
```

## Parameters

| Parameter | Type   | Required | Description                      |
| --------- | ------ | -------- | -------------------------------- |
| `id`      | string | Yes      | Sandbox ID returned from create. |

## Response

```json theme={null}
{
  "id": "sb_abc123",
  "language": "python",
  "status": "created"
}
```

## Status Values

| Status    | Description                                         |
| --------- | --------------------------------------------------- |
| `created` | Sandbox is ready to accept files and exec requests. |

## Example

```bash theme={null}
curl http://localhost:8000/v1/sandboxes/sb_abc123
```
