GET
/
streaming
/
streams
Python
from gcore import Gcore

client = Gcore(
    api_key="My API Key",
)
page = client.streaming.streams.list()
page = page.items[0]
print(page.id)
[
  {
    "name": "Live stream by user e4d0f942-f35d",
    "pull": true,
    "active": true,
    "auto_record": false,
    "client_user_id": 1001,
    "uri": "srt://domain.com:5000/?streamid=12345",
    "html_overlay": false
  }
]

Authorizations

Authorization
string
header
required

API key for authentication. Make sure to include the word apikey, followed by a single space and then your token. Example: apikey 1234$abcdef

Query Parameters

page
integer

Query parameter. Use it to list the paginated content

with_broadcasts
integer

Query parameter. Set to 1 to get details of the broadcasts associated with the stream

Response

200 - application/json

Successful

The response is of type object[].