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

# Delete bucket

> Delete an empty bucket.

<ParamField path="bucket" type="string" required>
  Bucket ID. Must match `[a-z0-9_-]{4,64}`.
</ParamField>

## Response

| Status | Meaning              |
| ------ | -------------------- |
| `204`  | Bucket deleted.      |
| `400`  | Invalid bucket ID.   |
| `404`  | Bucket not found.    |
| `409`  | Bucket is not empty. |

<RequestExample>
  ```bash Example theme={null}
  curl -X DELETE https://stream.tonbo.dev/ds/demo
  ```
</RequestExample>
