AIOZ Stream API
Videos

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
 
{ "status": "success", "data": { "videos": [ { "id": "streaming_id",
"live_stream_key_id": "live_stream_key_id", "user_id": "user_id", "title":
"streaming_title", "duration": 8322, // milliseconds "assets": {
"thumbnail_url": "thumbnail_url", "hls_url": "hls_url", "iframe": "iframe",
"player_url": "player_url" }, "save": true, "created_at":
"2024-11-11T11:11:11.111111Z", "updated_at": "2024-11-11T11:11:11.111111Z",
"status": "status", "video": { "id": "video_id", "user_id": "user_id", "title":
"title", "description": "description", "metadata": [ { "key": "live_stream_id",
"value": "live_stream_id" } ], "tags": null, "qualities": [ { "name":
"quality_name", "status": "quality_status", "type": "quality_type" } ],
"captions": null, "chapters": null, "view": 0, "player_theme": null, "duration":
0, "size": 710919, "is_mp4": false, "is_public": true, "status": "status",
"created_at": "2024-11-11T11:11:11.111111Z", "updated_at":
"2024-11-11T11:11:11.111111Z", "assets": { "source_url": "source_url",
"thumbnail_url": "thumbnail_url", "hls_url": "hls_url", "mp4_url": "mp4_url",
"iframe": "iframe", "player_url": "player_url" }, "player_theme_id":
"player_theme_id" }, "qualities": [ "quality_name" ], "frame_rate": 0,
"audio_bitrate": 0, "current_view": 0, "total_view": 0 }, ], "total": 1 } }
 
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
{
    "status": "success",
    "data": {
        "id": "video_id",
        "live_stream_key_id": "live_stream_key_id",
        "user_id": "user_id",
        "title": "title",
        "duration": 166232,
        "assets": {
            "thumbnail_url": "thumbnail_url",
            "hls_url": "hls_url",
            "iframe": "iframe",
            "player_url": "player_url"
        },
        "save": true,
        "created_at": "2024-11-11T11:11:11.111111Z",
        "updated_at": "2024-11-11T11:11:11.111111Z",
        "status": "streaming",
        "video": {
            "id": "video_id",
            "user_id": "user_id",
            "title": "title",
            "description": "description",
            "metadata": [
                {
                    "key": "live_stream_id",
                    "value": "live_stream_id"
                }
            ],
            "tags": null,
            "qualities": null,
            "captions": null,
            "chapters": null,
            "view": 0,
            "player_theme": {
                "id": "player_theme_id",
                "user_id": "user_id",
                "name": "player_theme_name",
                "theme": {
                    "main_color": "main_color",
                    "text_color": "text_color",
                    "text_track_color": "text_track_color",
                    "text_track_background": "text_track_background",
                    "control_bar_height": "control_bar_height",
                    "control_bar_background_color": "control_bar_background_color",
                    "progress_bar_height": "progress_bar_height",
                    "progress_bar_circle_size": "progress_bar_circle_size",
                    "menu_background_color": "menu_background_color",
                    "menu_item_background_hover": "menu_item_background_hover"
                },
                "controls": {
                    "enable_api": true,
                    "enable_controls": true,
                    "force_autoplay": true,
                    "hide_title": true,
                    "force_loop": true
                },
                "asset": {},
                "created_at": "2024-11-11T11:11:11.111111Z",
                "is_default": true
            },
            "duration": 0,
            "size": 0,
            "is_mp4": false,
            "is_public": true,
            "status": "new",
            "created_at": "2024-11-11T11:11:11.111111Z",
            "updated_at": "2024-11-11T11:11:11.111111Z",
            "assets": {
                "source_url": "source_url",
                "thumbnail_url": "thumbnail_url",
                "hls_url": "hls_url",
                "mp4_url": "mp4_url",
                "iframe": "iframe",
                "player_url": "player_url"
            },
            "player_theme_id": "player_theme_id"
        },
        "qualities": [
            "quality_name"
        ],
        "frame_rate": 0,
        "audio_bitrate": 0,
        "current_view": 0,
        "total_view": 0
    }
}
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
{
    "status": "success",
    "message": "Delete streaming success"
}
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>' \