import os
from gcore import Gcore
client = Gcore(
api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted
)
client.streaming.videos.list_names()
Videos
Get names of videos
Returns names for specified video IDs
GET
/
streaming
/
videos
/
names
Python
Copy
Ask AI
import os
from gcore import Gcore
client = Gcore(
api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted
)
client.streaming.videos.list_names()