List Workspaces

List all live stream workspaces.

Responses
  • application/json
Request Example for get/video/sources/live
import Gumlet from '@gumlet/nodejs-sdk';

const client = new Gumlet({
  apiKey: process.env['API_KEY'], // defaults to the API_KEY env var
});

const liveStreamWorkspace = await client.liveStreamWorkspaces.list();

console.log(liveStreamWorkspace);
{
  "all_live_sources": [
    {
      "name": "string",
      "created_at": "2026-09-18T04:36:43.773Z",
      "updated_at": "2026-09-18T04:36:43.773Z",
      "video_workspace_id": "string",
      "id": "string"
    }
  ]
}