***

title: createStream
slug: /reference/typescript/rest/video/conferences/create-stream
description: Create a new stream for a conference.
max-toc-depth: 3
---------------------

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

Create a new stream for a conference, enabling external streaming output
(e.g., RTMP to a streaming platform).

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

## **Response Example**

<EndpointResponseSnippet endpoint="POST /api/video/conferences/{id}/streams" />

## **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",
});

const stream = await client.video.conferences.createStream("conference-id", {
  url: "rtmp://live.example.com/key",
});
```