Find a Stream by ID
GET/streams/:id
Permissions
The API token must include the following scopes: Video.
Request
Path Parameters
id uuidrequired
Unique ID of the stream
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
id uuid
A unique identifier for the stream
url string
RTMP or RTMPS url. This must be the address of a server accepting incoming RTMP/RTMPS streams.
stream_type string
The type of stream.
width integer
The stream's width.
height integer
The stream's height.
fps integer
The stream's fps
created_at date-time
updated_at date-time
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"url": "rtmp://broadcaster",
"stream_type": "rtmp",
"width": 0,
"height": 0,
"fps": "20",
"created_at": "2024-07-29T15:51:28.071Z",
"updated_at": "2024-07-29T15:51:28.071Z"
}
Loading...