***

title: list
slug: /reference/python/rest/video/room-sessions/list
description: List video room sessions.
max-toc-depth: 3
---------------------

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

List video room sessions.

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

## **Response Example**

<EndpointResponseSnippet endpoint="GET /api/video/room_sessions" />

## **Example**

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

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

sessions = client.video.room_sessions.list()
```