> ## 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.

# Delete Sandbox

> Tear down a sandbox and remove its workspace.

## Endpoint

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

## Parameters

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

## Response

Returns `204 No Content` on success.

## Example

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

<Warning>
  Deleting a sandbox is permanent. The workspace folder and all
  uploaded files will be removed.
</Warning>
