***

title: start_stream
slug: /reference/python/rest/compat/conferences/start-stream
description: Start a media stream on a conference.
max-toc-depth: 3
---------------------

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

Start a media stream on a conference, sending real-time audio to a WebSocket URL.

<EndpointSchemaSnippet endpoint="POST /Accounts/{AccountSid}/Conferences/{ConferenceSid}/Streams" />

## **Response Example**

<EndpointResponseSnippet endpoint="POST /Accounts/{AccountSid}/Conferences/{ConferenceSid}/Streams" />

## **Example**

```python {9}
from signalwire.rest import RestClient

client = RestClient(
    project="your-project-id",
    token="your-api-token",
    host="your-space.signalwire.com",
)

stream = client.compat.conferences.start_stream(
    "CF...",
    Url="wss://stream.example.com"
)
```