***

title: get
slug: /reference/python/rest/video/streams/get
description: Retrieve a specific stream.
max-toc-depth: 3
---------------------

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

Retrieve a specific stream by its unique identifier, regardless of which room
or conference it belongs to.

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

## **Response Example**

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

## **Example**

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

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

stream = client.video.streams.get("stream-id")
```