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

> Delete a stream and its data.

<ParamField path="bucket" type="string" required>
  Bucket ID.
</ParamField>

<ParamField path="stream" type="string" required>
  Stream ID within the bucket.
</ParamField>

## Response

| Status | Meaning           |
| ------ | ----------------- |
| `204`  | Stream deleted.   |
| `404`  | Stream not found. |

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

<Warning>
  Deletion is permanent. The stream's data will be asynchronously garbage-collected after the delete is committed.
</Warning>
