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

# create

> Create a new video conference.

Create a new video conference.

## **Response Example**

## **Example**

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

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

conf = client.video.conferences.create(display_name="Team Meeting", name="team-meeting")
```