***

title: get
slug: /reference/typescript/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**

```typescript {9}
import { RestClient } from "@signalwire/sdk";

const client = new RestClient({
  project: "your-project-id",
  token: "your-api-token",
  host: "your-space.signalwire.com",
});

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