from gcore import Gcore
client = Gcore(
api_key="My API Key",
)
playlist_videos = client.streaming.playlists.list_videos(
0,
)
print(playlist_videos)
[
{
"name": "IBC 2025 - International Broadcasting Convention",
"description": "We look forward to welcoming you at IBC2025, which will take place 12-15 September 2025.",
"origin_url": "https://www.googleapis.com/drive/v3/files/...?alt=media",
"origin_http_headers": "Authorization: Bearer ...",
"priority": 0,
"clip_start_seconds": 137,
"clip_duration_seconds": 60,
"directory_id": 800,
"projection": "regular",
"client_user_id": 10,
"stream_id": 1,
"poster": "data:image/jpeg;base64,/9j/4AA...qf/2Q==",
"screenshot_id": -1,
"auto_transcribe_audio_language": "auto"
}
]
Shows ordered array of playlist videos
from gcore import Gcore
client = Gcore(
api_key="My API Key",
)
playlist_videos = client.streaming.playlists.list_videos(
0,
)
print(playlist_videos)
[
{
"name": "IBC 2025 - International Broadcasting Convention",
"description": "We look forward to welcoming you at IBC2025, which will take place 12-15 September 2025.",
"origin_url": "https://www.googleapis.com/drive/v3/files/...?alt=media",
"origin_http_headers": "Authorization: Bearer ...",
"priority": 0,
"clip_start_seconds": 137,
"clip_duration_seconds": 60,
"directory_id": 800,
"projection": "regular",
"client_user_id": 10,
"stream_id": 1,
"poster": "data:image/jpeg;base64,/9j/4AA...qf/2Q==",
"screenshot_id": -1,
"auto_transcribe_audio_language": "auto"
}
]
API key for authentication. Make sure to include the word apikey
, followed by a single space and then your token.
Example: apikey 1234$abcdef
Playlist ID.
IDs of all created playlists can be received via Get All Playlists request
Successful
The response is of type object[]
.
Was this page helpful?