Fetch all HLS
GET
|
https://api.videosdk.live/v2/hls/
NodeJS
import fetch from 'node-fetch';
const options = {
method: "GET",
headers: {
"Authorization": "$YOUR_TOKEN",
"Content-Type": "application/json",
},
};
const url= `https://api.videosdk.live/v2/hls/?roomId=xyz&sessionId=xyz&page=1&perPage=20`;
const response = await fetch(url, options);
const data = await response.json();
console.log(data);
RESPONSE
{
"pageInfo": {
"currentPage": 1,
"perPage": 20,
"lastPage": 7,
"total": 125
},
"data": [
{
"sessionId": "abcde94c96e17e03fb0abcde4",
"start": "2022-04-19T09:18:13.432Z",
"end": "2022-04-19T09:19:34.552Z",
"roomId": "abcd-efgh-ijkl",
"duration": 75.173,
"links": {
"get_room": "https://api.videosdk.live/v2/rooms/abcd-efgh-ijkl",
"get_session": "https://api.videosdk.live/v2/sessions/abcde94c96e17e03fb0abcde4"
},
"downstreamUrl": "https://cdn.videosdk.live/meetings-hls/abcdefgh-ijkl-mnop-1234-abcdefghijkl/index.m3u8",
"id": "abcdef9879288c1f48339f64"
}
]
}