Streamings
Create live streaming
This endpoint allows you to create a new live streaming.
POSThttps://api.aiozstream.network/api/live_streams/:id/streamings
Parameters
id* The unique identifier of the live stream key
Headers
Authorization Bearer your_access_token_here
stream-public-key your_public_key_here
stream-secret-key your_secret_key_here
Body
title* The name of the live streaming
save Whether the live streaming should be saved after streaming (default: false)
qualities An array of quality options for the live streaming (e.g., ["144p", "240p", "360p", "480p", "720p", "1080p", "1440p", "2160p"])
Response
200: OK
curl --location --request POST 'https://api.aiozstream.network/api/live_streams/:id/streamings' \
--header 'accept: application/json' \
--header 'Authorization: Bearer <YOUR_JWT_TOKEN>' \
--data-raw '{
"title": "live_streaming_title",
"save": true,
"qualities": [
"360p",
"720p",
"1080p"
]
}'
List streamings
This endpoint retrieves a list of all your streamings.
GEThttps://api.aiozstream.network/api/live_streams/:id/streamings
Parameters
id* The unique identifier of the live streaming key
Headers
Authorization Bearer your_access_token_here
stream-public-key your_public_key_here
stream-secret-key your_secret_key_here
Response
200: OK
curl 'https://api.aiozstream.network/api/live_streams/:id/streamings' \
-H 'accept: application/json, text/plain, */*' \
-H 'authorization: Bearer <YOUR_JWT_TOKEN>' \
Update live streaming
This endpoint allows you to update the information of a live streaming.
PUThttps://api.aiozstream.network/api/live_streams/:id/streamings
Parameters
id* The unique identifier of the live streaming key
Headers
Authorization Bearer your_access_token_here
stream-public-key your_public_key_here
stream-secret-key your_secret_key_here
Body
title* The title of the live streaming
save Whether the live streaming should be saved after streaming (default: false)
Response
200: OK
curl --location --request PUT 'https://api.aiozstream.network/api/live_streams/:id/streamings' \
--header 'accept: application/json' \
--header 'Authorization: Bearer <YOUR_JWT_TOKEN>' \
--data '{
"title": "test",
"save": true
}'