***

title: list_streams
slug: /reference/python/rest/video/rooms/list-streams
description: List active streams for a video room.
max-toc-depth: 3
---------------------

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

List active streams for a video room.

<EndpointSchemaSnippet endpoint="GET /api/video/rooms/{id}/streams" />

## **Response Example**

<EndpointResponseSnippet endpoint="GET /api/video/rooms/{id}/streams" />

## **Example**

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

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

streams = client.video.rooms.list_streams("room-id")
```