Skip to main content
GET
/
streaming
/
streams
/
{stream_id}
/
clip_recording
Python
from gcore import Gcore

client = Gcore(
    api_key="My API Key",
)
clips = client.streaming.streams.list_clips(
    0,
)
print(clips)
[
  {
    "id": "d7bsli54p8n4",
    "created_at": "2024-01-05T20:15:00.000Z",
    "vod_required": true,
    "video_id": 459857,
    "renditions": [
      "media_1_360",
      "media_2_468",
      "media_3_720",
      "media_4_1080"
    ],
    "hls_master": "https://CID.domain.com/rec/12345_330031/rec_d7bsli54p8n4_qsid42_master.m3u8",
    "mp4_master": "https://CID.domain.com/rec/12345_330031/rec_d7bsli54p8n4_qsid42_master.mp4",
    "start": 1716559200,
    "duration": 60,
    "expiration": 1716562860
  }
]

Authorizations

Authorization
string
header
required

Path Parameters

stream_id
integer
required

Response

duration
integer
required
id
string
required
start
integer
expiration
integer
created_at
string
vod_required
boolean
default:true
video_id
integer
renditions
string[]
hls_master
string
mp4_master
string