***

title: delete
slug: /reference/typescript/rest/video/streams/delete
description: Delete a stream.
max-toc-depth: 3
---------------------

For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

Delete a stream.

<EndpointSchemaSnippet endpoint="DELETE /api/video/streams/{id}" />

## **Example**

```typescript {9}
import { RestClient } from "@signalwire/sdk";

const client = new RestClient({
  project: "your-project-id",
  token: "your-api-token",
  host: "your-space.signalwire.com",
});

await client.video.streams.delete("stream-id");
```