Videos
List saved videos
This endpoint retrieves a list of all your saved videos.
POSThttps://api.aiozstream.network/api/live_streams/:id/videos
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
offset The number of records to skip before starting to return results (default: 0)
limit The maximum number of records to return (default: 25, max: 100)
sort_by The field to sort by (default: created_at, allowed: created_at, updated_at, title, size)
order_by The sort order (default: desc, allowed: asc, desc)
search The keyword to search in both the title and description fields
status The status of the live streaming.
video_status The status of the video
Response
200: OK
curl --location --request POST 'https://api.aiozstream.network/api/live_streams/:id/videos' \
--header 'Authorization: Bearer <YOUR_JWT_TOKEN>' \
--header 'Content-Type: application/json' \
--data-raw '{
"sort_by": "created_at",
"order_by": "asc",
"offset": 0,
"limit": 10
}'
Get live streaming video details
This endpoint retrieves the details of a specific live streaming video.
GEThttps://api.aiozstream.network/api/live_streams/:id/videos
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 --location 'https://api.aiozstream.network/api/live_streams/:id/videos' \
--header 'accept: application/json, text/plain, */*' \
--header 'authorization: Bearer <YOUR_JWT_TOKEN>'
Delete live streaming video
This endpoint allows you to delete a live streaming video.
DELETEhttps://api.aiozstream.network/api/live_streams/:id/streamings/:stream_id
Parameters
id* The unique identifier of the live streaming key
stream_id* The unique identifier of the live streaming
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 --location --request DELETE 'https://api.aiozstream.network/api/live_streams/:id/streamings/:stream_id' \
--header 'accept: application/json' \
--header 'Authorization: Bearer <YOUR_JWT_TOKEN>' \