***

title: create
slug: /reference/python/rest/video/rooms/create
description: Create a new video room.
max-toc-depth: 3
---------------------

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

Create a new video room.

<EndpointSchemaSnippet endpoint="POST /api/video/rooms" />

## **Response Example**

<EndpointResponseSnippet endpoint="POST /api/video/rooms" />

## **Example**

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

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

room = client.video.rooms.create(name="standup", max_members=10)
```