GET
/
streaming
/
streams
/
{stream_id}
/
overlays
curl --request GET \
  --url https://api.gcore.com/streaming/streams/{stream_id}/overlays \
  --header 'APIKey: <api-key>'
[
  {
    "id": 1,
    "stream_id": 12345,
    "url": "http://domain.tld/myoverlay1.html",
    "width": 120,
    "height": 40,
    "x": 10,
    "y": 10,
    "stretch": false,
    "created_at": "2023-09-20T00:01:01.000Z",
    "updated_at": "2023-10-01T12:01:01.000Z"
  },
  {
    "id": 2,
    "stream_id": 12345,
    "url": "http://domain.tld/myoverlay2.html",
    "width": null,
    "height": null,
    "x": null,
    "y": null,
    "stretch": true,
    "created_at": "2023-09-20T00:01:01.000Z",
    "updated_at": "2023-10-01T12:01:01.000Z"
  }
]

Authorizations

APIKey
string
header
required

API key for authentication.

Path Parameters

stream_id
integer
required

Stream ID

Response

200 - application/json

Successful

The response is of type object[].