---
title: "List room streams"
method: GET
path: "/api/video/rooms/{id}/streams"
tags: ["Streams"]
---

# List room streams

`GET /api/video/rooms/{id}/streams`

#### Permissions

The API token used to authenticate must have the following scope(s) enabled to make a successful request: _Video_.

[Learn more about API scopes](/docs/platform/your-signalwire-api-space).

## Path parameters

- `id` string, uuid, required — Universal Unique Identifier.

## Response `200`

The request has succeeded.

- VideoListStreamsResponse — List streams response.
  - `links` VideoPaginationLinks, required — Pagination links for list responses.
    - `self` string, required — Link to the current page.
    - `first` string, required — Link to the first page.
    - `next` string — Link to the next page.
    - `prev` string — Link to the previous page.
  - `data` VideoStream[], required — List of streams.
    - `id` string, uuid, required — Universal Unique Identifier.
    - `url` string, nullable, required — RTMP or RTMPS URL. This must be the address of a server accepting incoming RTMP/RTMPS streams.
    - `stream_type` string, nullable, required — The type of stream.
    - `width` integer, nullable, required — The stream's width in pixels.
    - `height` integer, nullable, required — The stream's height in pixels.
    - `fps` integer, nullable, required — The stream's frames per second.
    - `created_at` string, date-time, required — Timestamp when the stream was created.
    - `updated_at` string, date-time, required — Timestamp when the stream was last updated.

## Other responses

- `401` — Access is unauthorized.
- `422` — The request contains invalid parameters. See errors for details.
- `500` — An internal server error occurred.

---

[API](https://skmtc.net/signalwire/apis/signalwire-rest-api.md) · [All operations](https://skmtc.net/signalwire/apis/signalwire-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/signalwire/signalwire-rest-api/versions/05c5164b85c7/schema)
