VideoStreams

View as MarkdownOpen in Claude

Top-level stream management for retrieving, updating, and deleting individual streams regardless of which room or conference they belong to.

Access via client.video.streams on a RestClient instance.

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");

Methods