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

client = Gcore(
    api_key="My API Key",
)
overlays = client.streaming.streams.overlays.list(
    0,
)
print(overlays)
[
  {
    "id": 1,
    "stream_id": 12345,
    "url": "http://domain.com/myoverlay1.html",
    "width": 120,
    "height": 40,
    "x": 30,
    "y": 30,
    "stretch": false,
    "created_at": "2023-09-20T00:01:01.000Z",
    "updated_at": "2023-10-01T12:01:01.000Z"
  }
]

Authorizations

Authorization
string
header
required

Path Parameters

stream_id
integer
required

Response

200 - application/json
url
string
required
id
integer
required
stream_id
integer
required
created_at
string
required
updated_at
string
required
width
integer
height
integer
x
integer
y
integer
stretch
boolean
default:false