List All Live Entities

Returns a list of existing live entities in descending order by creation date (the most recently created one is on top)

/v1/live_entities

GET https://api.uiza.sh/v1/live_entities

Query Parameters

{
  "data": [
    {
      "id": "22013d8a-d5fa-48f0-9a63-1f471ca9e81d",
      "name": "Demo app 1",
      "description": "Demo application for documentation",
      "dvr": true,
      "encode": true,
      "ingest": {
        "url": "rtmp://f45dd07a0e-in.uizadev.io/transcode",
        "key": "live_TB62vHgxSY"
      },
      "playback": {
        "hls": "https://f45dd07a0e.uizadev.io/fmp4/22013d8a-d5fa-48f0-9a63-1f471ca9e81d/master.m3u8",
        "dash": "https://f45dd07a0e.uizadev.io/fmp4/22013d8a-d5fa-48f0-9a63-1f471ca9e81d/manifest.mpd"
      },
      "preset": {
        "id": "3693d866-1577-48f4-a97c-6e15765ba0fe",
        "name": "Primary Preset",
        "description": "",
        "profiles": [
          {
            "id": "aaa",
            "name": "360p",
            "segment_duration": 6,
            "orientation": "portrait",
            "video_profile": {
              "video_resolution": "360",
              "video_codec": "h264",
              "video_bitrate": "1024K",
              "video_frame_rate": "30"
            },
            "audio_profile": {
              "audio_channel": "2",
              "audio_codec": "aac",
              "audio_bitrate": "96K",
              "audio_frame_rate": "12"
            }
          }
        ],
        "created_at": "2020-02-28T01:32:31Z",
        "updated_at": "2020-02-29T17:09:15Z"
      },
      "region": "in-mumbai-1",
      "relay": [
        {
          "id": "8cf47749-1fa4-40e9-8303-580b34f14683",
          "name": "Replay name3333",
          "url": "rtmp://a.rtmp.youtube.com/live2",
          "key": "0df3-76bz-6t4r-1by5xxxxxx",
          "status": "enable",
          "created_at": "2020-06-24T16:25:58Z",
          "updated_at": "2020-06-24T16:25:58Z"
        }
      ],
      "status": "ready",
      "created_at": "2020-03-10T03:20:37.202Z",
      "updated_at": "2020-03-10T03:20:37.202Z"
    }
  ],
  "next_page_token": "eyJjcmVhdGVkX2F0IjoxNTc2MDA4NjkxMDAwLCJpZCI6IjAwNzVmZjcyLWE0ODYtNDg0Ni05Y2NjLWY1ZWU4YTA0MmQ0NSJ9",
  "prev_page_token": null
}
Sample Request
curl -X GET https://api.uiza.sh/v1/live_entities 
    -H 'Accept: */*' 
    -H 'Authorization: uap-c1ffbff4db954ddcb050c6af0b43ba56-41193b64' 
    -H 'Cache-Control: no-cache' 
    -H 'Connection: keep-alive'

Last updated