List live streams

Use this request to list and filter through live stream objects of a workspace. The response is paginated.

This list can be filtered by room_id, session_id or status to find the relevant live stream object.

GEThttps://api.100ms.live/v2/live-streams
curl --location --request GET 'https://api.100ms.live/v2/live-streams' \ --header 'Authorization: Bearer <management_token>'
RESPONSE
Status: 200 OK
{ "limit": 10, "data": [ { "id": "<stream_id>", "room_id": "<room_id>>", "session_id": "<session_id>", "status": "<status>", "destination": "<destination_name>", "playback": { "url": "<master-manifest>" }, "meeting_url": "<meeting_url>", "recording": { "hls_vod": false, "single_file_per_layer": false }, "created_at": "2023-03-02T07:44:27.010516042Z", "started_at": "2023-03-02T07:44:27.010516042Z", "updated_at": "2023-03-02T07:44:27.010516042Z", "stopped_at": "2023-03-02T07:44:27.010516042Z", "started_by": "<peer_id>", "stopped_by": "<peer_id>", "recording_assets": null } ], "last": "<stream-id-of-last>" }

Query params

NameDescriptionRequired
room_idFilter live streams for a particular room with its identifierNo
session_idFilter live streams for a particular session with its identifierNo
statusCan be one of starting, running, stopping, post_processing, completed, failedNo
startSets the starting point for paginationNo
limitSets the number of objects to returned in the responseNo

Have a suggestion? Recommend changes ->

Run in postman

Was this helpful?

1234