SDK
API clients
Go

AIOZ Stream Go client

AIOZ Stream is the video infrastructure for product builders. Lightning fast video APIs for integrating, scaling, and managing on-demand & low latency live streaming features in your app.

Getting started

Installation

go get github.com/AIOZNetwork/aioz-stream-go-client

Code sample

For a more advanced usage you can checkout the rest of the documentation in the docs directory (opens in a new tab)

 
import (
	"context"
	"fmt"
	"os"
 
	aiozstreamsdk "github.com/AIOZNetwork/aioz-stream-go-client"
)
 
func main() {
    // Connect to production environment
    publicKey := "YOUR_PUBLIC_KEY" // Replace with your public key
    secretKey := "YOUR_SECRET_KEY" // Replace with your actual API secret key
	apiCreds := aiozstreamsdk.AuthCredentials{
		PublicKey: publicKey,
		SecretKey: secretKey,
	}
    client := aiozstreamsdk.ClientBuilder(apiCreds).Build()
 
    // Create a video object
	title := "Sample Video Title"
	videoData := aiozstreamsdk.CreateVideoRequest{
		Title: &title,
	}
	createResult, err := client.Video.Create(videoData)
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error creating video: %v\n", err)
		return
	}
 
    videoId := createResult.Data.Id // Get the video ID from the response
 
    // Open the video file
    videoFile, err := os.Open("./path/to/video.mp4")
    if err != nil {
        fmt.Println("Error opening video file:", err)
        return
    }
    defer videoFile.Close() // Close the file after use
 
    fileInfo, err := videoFile.Stat()
    if err != nil {
        fmt.Fprintf(os.Stderr, "Error getting file info: %v\n", err)
        return
    }
 
    fileSize := fileInfo.Size()
    fileName := fileInfo.Name()
 
    // Option 1: Use client upload with videoId
	err = client.UploadVideo(context.Background(), *videoId, fileName, videoFile, fileSize)
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error uploading video with client: %v\n", err)
		return
	}
 
    // Option 2: Upload parts yourself
    // This example is commented out as you already used option 1
	//_, err = client.Video.UploadPart(*videoId, nil, nil, "./path/to/video.mp4", videoFile, fileInfo.Size())
	//if err != nil {
	//	fmt.Fprintf(os.Stderr, "Error uploading video part: %v\n", err)
	//	return
	//}
	//
	//success, err := client.Video.UploadVideoComplete(*videoId)
	//if err != nil {
	//	fmt.Fprintf(os.Stderr, "Error completing video upload: %v\n", err)
	//	return
	//}
	//
	//jsonString, err := json.MarshalIndent(success, "", "  ")
	//if err != nil {
	//	fmt.Fprintf(os.Stderr, "Error marshalling response: %v\n", err)
	//	return
	//}
	//fmt.Println(string(jsonString))
    fmt.Println("Video uploaded successfully!")
}

Documentation

API endpoints

All urls are relative to https://api.aiozstream.network/api (opens in a new tab)

API key

Retrieve an instance of the API key:
secretKey := "YOUR_SECRET_KEY" // Replace with your actual secret key
publicKey := "YOUR_PUBLIC_KEY" // Replace with your public key
apiCreds := aiozstreamsdk.AuthCredentials{
	PublicKey: publicKey,
	SecretKey: secretKey,
}
client := aiozstreamsdk.ClientBuilder(apiCreds).Build()
apiKeyApi := client.ApiKey
Endpoints
MethodHTTP requestDescription
Create (opens in a new tab)Post /api_keysCreate API key
Update (opens in a new tab)Patch /api_keys/{id}Rename API key
Delete (opens in a new tab)Delete /api_keys/{id}Delete API key
List (opens in a new tab)Get /api_keysGet list API keys

Live stream

secretKey := "YOUR_SECRET_KEY" // Replace with your actual secret key
publicKey := "YOUR_PUBLIC_KEY" // Replace with your public key
apiCreds := aiozstreamsdk.AuthCredentials{
	PublicKey: publicKey,
	SecretKey: secretKey,
}
client := aiozstreamsdk.ClientBuilder(apiCreds).Build()
liveStreamApi := client.LiveStream
Endpoints
MethodHTTP requestDescription
CreateLiveStreamKey (opens in a new tab)Post /live_streamsCreate live stream key
CreateStreaming (opens in a new tab)Post /live_streams/{id}/streamingsCreate a new live stream video
DeleteLiveStreamKey (opens in a new tab)Delete /live_streams/{id}Delete live stream key
DeleteStreaming (opens in a new tab)Delete /live_streams/{id}/streamings/{stream_id}Delete live stream video
GetLiveStreamKey (opens in a new tab)Get /live_streams/{id}Get live stream key
GetLiveStreamKeys (opens in a new tab)Get /live_streamsGet live stream key list
GetLiveStreamPlayerInfo (opens in a new tab)Get /live_streams/player/{id}/videosGet live stream video public
GetLiveStreamVideo (opens in a new tab)Get /live_streams/{id}/videosGet live stream video
GetLiveStreamVideos (opens in a new tab)Post /live_streams/{id}/videosGet live stream videos
GetStreaming (opens in a new tab)Get /live_streams/{id}/streamings/{stream_id}Get live stream video streaming
GetStreamings (opens in a new tab)Get /live_streams/{id}/streamingsGet live stream video streamings
UpdateLiveStreamKey (opens in a new tab)Put /live_streams/{id}Update live stream key
UpdateLiveStreamVideo (opens in a new tab)Put /live_streams/{id}/streamingsUpdate live stream video

Players

Retrieve an instance of the players API:
secretKey := "YOUR_SECRET_KEY" // Replace with your actual secret key
publicKey := "YOUR_PUBLIC_KEY" // Replace with your public key
apiCreds := aiozstreamsdk.AuthCredentials{
	PublicKey: publicKey,
	SecretKey: secretKey,
}
client := aiozstreamsdk.ClientBuilder(apiCreds).Build()
playersApi := client.Players
Endpoints
MethodHTTP requestDescription
Create (opens in a new tab)Post /playersCreate a player theme
Get (opens in a new tab)Get /players/{id}Get a player theme by ID
Update (opens in a new tab)Patch /players/{id}Update a player theme by ID
Delete (opens in a new tab)Delete /players/{id}Delete a player theme by ID
List (opens in a new tab)Get /playersList all player themes
UploadLogo (opens in a new tab)Post /players/{id}/logoUpload a logo for a player theme by ID
DeleteLogo (opens in a new tab)Delete /players/{id}/logoDelete a logo for a player theme by ID
AddPlayer (opens in a new tab)Post /players/add-playerAdd a player theme to a video
RemovePlayer (opens in a new tab)Post /players/remove-playerRemove a player theme from a video

Playlist

Retrieve an instance of the playlist API:
secretKey := "YOUR_SECRET_KEY" // Replace with your actual secret key
publicKey := "YOUR_PUBLIC_KEY" // Replace with your public key
apiCreds := aiozstreamsdk.AuthCredentials{
	PublicKey: publicKey,
	SecretKey: secretKey,
}
client := aiozstreamsdk.ClientBuilder(apiCreds).Build()
playlistApi := client.Playlist
Endpoints
MethodHTTP requestDescription
AddVideoToPlaylist (opens in a new tab)Post /playlists/{id}/itemsAdd a video to a playlist
CreatePlaylist (opens in a new tab)Post /playlists/createCreate a playlist
DeletePlaylistById (opens in a new tab)Delete /playlists/{id}Delete a playlist by ID
DeletePlaylistThumbnail (opens in a new tab)Delete /playlists/{id}/thumbnailDelete a playlist thumbnail
GetPlaylistById (opens in a new tab)Get /playlists/{id}Get playlist by ID
GetPlaylistPublicInfo (opens in a new tab)Get /playlists/{id}/player.jsonGet a playlist public
GetPlaylists (opens in a new tab)Post /playlistsGet user's playlists
MoveVideoInPlaylist (opens in a new tab)Put /playlists/{id}/itemsMove a video in a playlist
RemoveVideoFromPlaylist (opens in a new tab)Delete /playlists/{id}/items/{item_id}Remove a video from a playlist
UpdatePlaylist (opens in a new tab)Patch /playlists/{id}Update a playlist

Video

Retrieve an instance of the video API:
secretKey := "YOUR_SECRET_KEY" // Replace with your actual secret key
publicKey := "YOUR_PUBLIC_KEY" // Replace with your public key
apiCreds := aiozstreamsdk.AuthCredentials{
	PublicKey: publicKey,
	SecretKey: secretKey,
}
client := aiozstreamsdk.ClientBuilder(apiCreds).Build()
videoApi := client.Video
Endpoints
MethodHTTP requestDescription
Create (opens in a new tab)Post /videos/createCreate video object
Update (opens in a new tab)Patch /videos/{id}update video info
Delete (opens in a new tab)Delete /videos/{id}Delete video
UploadThumbnail (opens in a new tab)Post /videos/{id}/thumbnailUpload video thumbnail
CreateCaption (opens in a new tab)Post /videos/{id}/captions/{lan}Create a new video caption
DeleteCaption (opens in a new tab)Delete /videos/{id}/captions/{lan}Delete a video caption
GetCaptions (opens in a new tab)Get /videos/{id}/captionsGet video captions
GetCost (opens in a new tab)Get /videos/costget video transcoding cost
GetDetail (opens in a new tab)Get /videos/{id}get video detail
GetVideoList (opens in a new tab)Post /videosGet user videos list
GetVideoPlayerInfo (opens in a new tab)Get /videos/{id}/player.jsonGet video player info
SetDefaultCaption (opens in a new tab)Patch /videos/{id}/captions/{lan}Set default caption
UploadPart (opens in a new tab)Post /videos/{id}/partUpload part of video
UploadVideoComplete (opens in a new tab)Get /videos/{id}/completeGet upload video when complete

Video chapter

Retrieve an instance of the video chapter API:
secretKey := "YOUR_SECRET_KEY" // Replace with your actual secret key
publicKey := "YOUR_PUBLIC_KEY" // Replace with your public key
apiCreds := aiozstreamsdk.AuthCredentials{
	PublicKey: publicKey,
	SecretKey: secretKey,
}
client := aiozstreamsdk.ClientBuilder(apiCreds).Build()
videoChapterApi := client.VideoChapter
Endpoints
MethodHTTP requestDescription
Create (opens in a new tab)Post /videos/{id}/chapters/{lan}Create a video chapter
Get (opens in a new tab)Get /videos/{id}/chaptersGet video chapters
Delete (opens in a new tab)Delete /videos/{id}/chapters/{lan}Delete a video chapter

Webhook

Retrieve an instance of the webhook API:
secretKey := "YOUR_SECRET_KEY" // Replace with your actual secret key
publicKey := "YOUR_PUBLIC_KEY" // Replace with your public key
apiCreds := aiozstreamsdk.AuthCredentials{
	PublicKey: publicKey,
	SecretKey: secretKey,
}
client := aiozstreamsdk.ClientBuilder(apiCreds).Build()
webhookApi := client.Webhook
Endpoints
MethodHTTP requestDescription
Create (opens in a new tab)Post /webhooksCreate webhook
Get (opens in a new tab)Get /webhooks/{id}Get user's webhook by id
Update (opens in a new tab)Patch /webhooks/{id}Update event webhook
Delete (opens in a new tab)Delete /webhooks/{id}Delete webhook
List (opens in a new tab)Get /webhooksGet list webhooks
Check (opens in a new tab)Post /webhooks/check/{id}Check webhook by id