Skip to main content
GET
/
streams
/
{streamId}
Get stream
curl --request GET \
  --url https://api.tenbyte.io/v1/livestream/streams/{streamId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Fetched Successfully",
  "data": {
    "id": "0000cf2e-ae90-46bc-b119-f5f626258434",
    "organization_id": "7f8c3a2e-1d4b-4e5a-9c6d-2b8e1f3a4d5c",
    "name": "Live TV Channel",
    "type": "linear",
    "mode": "video",
    "status": "live",
    "region": "sg-edge-04",
    "stream_key": "9f4c8a1e-2b6d-4e3f-8a7c-1d5b9e6f3a2c",
    "ingest": {
      "kind": "push",
      "protocols": [
        "rtmp",
        "srt"
      ],
      "rtmp": "rtmp://ingest.sg.vidinfra.com:1935/live",
      "srt": "srt://ingest.sg.vidinfra.com:9710?streamid=#!::r=live/9f4c8a1e-2b6d-4e3f-8a7c-1d5b9e6f3a2c,m=publish"
    },
    "output_protocols": [
      "hls",
      "dash"
    ],
    "ladder": {
      "video": [
        {
          "name": "720p",
          "width": 1280,
          "height": 720,
          "fps": 25,
          "gop": 50,
          "bitrate_kbps": 1500,
          "max_bitrate_kbps": 2000,
          "buf_size_kbps": 4000,
          "crf": 23,
          "codec": "h264",
          "preset": "veryfast",
          "profile": "main",
          "level": "4.0",
          "rate_control": "cbr",
          "ref_frames": 1,
          "rc_lookahead": 10,
          "audio": {
            "codec": "aac",
            "channels": 2,
            "sample_rate_hz": 48000,
            "audio_bitrate_kbps": 96
          }
        }
      ]
    },
    "packaging": {
      "hls": {
        "segment_format": "mpegts",
        "playlist_size": 6,
        "low_latency": false
      },
      "dash": {
        "segment_format": "fmp4",
        "window_s": 60,
        "min_buffer_s": 4
      }
    },
    "playback": {
      "hls": "https://cdn.vidinfra.com/0000cf2e-ae90-46bc-b119-f5f626258434/master.m3u8",
      "dash": "https://cdn.vidinfra.com/0000cf2e-ae90-46bc-b119-f5f626258434/manifest.mpd"
    },
    "meta": {},
    "last_live_at": "2026-04-26T11:00:00Z",
    "created_at": "2026-04-26T10:15:30Z",
    "updated_at": "2026-04-26T11:00:05Z"
  }
}

Authorizations

Authorization
string
header
required

RSA-signed JWT token

Path Parameters

streamId
string
required

Response

Stream details

success
boolean
Example:

true

message
string
data
object