***

title: list
slug: /reference/python/rest/video/rooms/list
description: List video rooms in the project.
max-toc-depth: 3
---------------------

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

List video rooms in the project.

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

## **Response Example**

<EndpointResponseSnippet endpoint="GET /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",
)

rooms = client.video.rooms.list()
```