GET : API to Get All Live streaming Rooms
GET
https://<appname>.metered.live/api/v1/realtimelivestreaming/rooms
<appname>
- replace it the name of your app.
Description
This endpoint allows you to GET all Meeting Rooms
Parameters
Parameters | Description | Required | Options | |
---|---|---|---|---|
Query | ||||
secretKey | string | your secret key | yes | - |
Request Samples
- cURL
- NodeJs
- Ruby
- Python
- Go
cURL
curl --request GET \
--url 'https://appname.metered.live/api/v1/realtimelivestreaming/rooms?secretKey={replace_this_with_your_secretKey}' \
--header 'Accept: application/json'
NodeJs (Axios)
//We are using axios to send requests in our example
const axios = require('axios');
async function (){
try{
const response = await axios.get('https://appname.metered.live/api/v1/realtimelivestreaming/rooms',
{
params: {
secretKey: 'your_secret_key'
}
})
console.log(response)
} catch(error){
console.log(error)
}
}
Ruby
require 'uri'
require 'net/http'
require 'openssl'
url = URI("https://yourapp.metered.live/api/v1/realtimelivestreaming/rooms")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Accept"] = 'application/json'
response = http.request(request)
puts response.read_body
Python
import requests
url = "https://yourapp.metered.live/api/v1/realtimelivestreaming/rooms"
headers = {"Accept": "application/json"}
response = requests.request("GET", url, headers=headers)
print(response.text)
Go
package main
import (
"fmt"
"io/ioutil"
"log"
"net/http"
)
func main() {
client := &http.Client{}
req, err := http.NewRequest("GET", "https://appname.metered.live/api/v1/realtimelivestreaming/rooms?secretKey={replace_this_with_your_secretKey}", nil)
if err != nil {
log.Fatal(err)
}
req.Header.Set("Accept", "application/json")
resp, err := client.Do(req)
if err != nil {
log.Fatal(err)
}
defer resp.Body.Close()
bodyText, err := ioutil.ReadAll(resp.Body)
if err != nil {
log.Fatal(err)
}
fmt.Printf("%s\n", bodyText)
}
Responses
200
[
{
"viewerURL": "https://livestreamingdemo.metered.live/62b5e390cb82524b9cee9816/player",
"broadcastManager": "https://dashboard.metered.ca/livestreaming-rooms/62b5e390cb82524b9cee9816/app/62b5d44bd00c04354f16af71/broadcast",
"roomName": "pepvxawbes",
"currentlyBroadcasting": false,
"displayMessage": "Live stream will begin shortly",
"created": "2022-06-24T16:17:20.976Z",
"_id": "62b5e390cb82524b9cee9816"
},
{
"viewerURL": "https://livestreamingdemo.metered.live/62b62990145eb30115333cff/player",
"broadcastManager": "https://dashboard.metered.ca/livestreaming-rooms/62b62990145eb30115333cff/app/62b5d44bd00c04354f16af71/broadcast",
"roomName": "o-yfhqnz7x",
"currentlyBroadcasting": false,
"displayMessage": "Live stream will begin shortly",
"created": "2022-06-24T21:16:00.456Z",
"_id": "62b62990145eb30115333cff"
},
{
"viewerURL": "https://livestreamingdemo.metered.live/62b629c01ec85a0189c9eac9/player",
"broadcastManager": "https://dashboard.metered.ca/livestreaming-rooms/62b629c01ec85a0189c9eac9/app/62b5d44bd00c04354f16af71/broadcast",
"roomName": "la7dq915fu",
"currentlyBroadcasting": false,
"displayMessage": "Live stream will start soon",
"created": "2022-06-24T21:16:48.953Z",
"_id": "62b629c01ec85a0189c9eac9"
},
{
"viewerURL": "https://livestreamingdemo.metered.live/62b633d7235a601a8e857ba0/player",
"broadcastManager": "https://dashboard.metered.ca/livestreaming-rooms/62b633d7235a601a8e857ba0/app/62b5d44bd00c04354f16af71/broadcast",
"roomName": "6bha4lsneh",
"currentlyBroadcasting": false,
"displayMessage": "Live stream will start soon",
"created": "2022-06-24T21:59:51.970Z",
"_id": "62b633d7235a601a8e857ba0"
},
{
"viewerURL": "https://livestreamingdemo.metered.live/62d81494290d7a0b36342419/player",
"broadcastManager": "https://dashboard.metered.ca/livestreaming-rooms/62d81494290d7a0b36342419/app/62b5d44bd00c04354f16af71/broadcast",
"roomName": "4rj98qadod",
"currentlyBroadcasting": false,
"created": "2022-07-20T14:43:32.429Z",
"_id": "62d81494290d7a0b36342419"
},
{
"viewerURL": "https://livestreamingdemo.metered.live/62d814fb6bf2ba0bd2f4e237/player",
"broadcastManager": "https://dashboard.metered.ca/livestreaming-rooms/62d814fb6bf2ba0bd2f4e237/app/62b5d44bd00c04354f16af71/broadcast",
"roomName": "vmfem6fflw",
"currentlyBroadcasting": false,
"created": "2022-07-20T14:45:15.810Z",
"_id": "62d814fb6bf2ba0bd2f4e237"
},
{
"viewerURL": "https://livestreamingdemo.metered.live/62d81eff8196a70d5d29538e/player",
"broadcastManager": "https://dashboard.metered.ca/livestreaming-rooms/62d81eff8196a70d5d29538e/app/62b5d44bd00c04354f16af71/broadcast",
"roomName": "mystreamingroom",
"currentlyBroadcasting": false,
"created": "2022-07-20T15:27:59.002Z",
"_id": "62d81eff8196a70d5d29538e"
}
]
400
{
"success": false,
"message": "Invalid request"
}