SDK
API clients
Nodejs

AIOZ Stream Node.js 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.

Project description

AIOZ Stream's Node.js is a lightweight client built in TypeScript that streamlines the coding process. Chunking files is handled for you, as is pagination and refreshing your tokens.

Getting started

Installation

With npm:

npm install @aiozstream/nodejs-client

...or with yarn:

yarn add @aiozstream/nodejs-client

Code sample

import StreamClient from "@aiozstream/nodejs-client";
 
(async () => {
  try {
    const client = new StreamClient({
      publicKey: "YOUR_PUBLIC_KEY",
      secretKey: "YOUR_SECRET_KEY",
    });
    const videoCreationPayload = {
      title: "First video", // The title of your new video.
      description: "A new video.", // A brief description of your video.
    };
 
    const video = await client.video.create(videoCreationPayload);
    if (!video.data) {
      throw new Error("Failed to create video");
    }
    if (!video.data.id) {
      throw new Error("Failed to create video");
    }
    // Option 1: Use client upload with videoId
    // await client.uploadVideo(video.data.id, "./path/to/video.mp4");
    // console.log("Upload successfully");
    // Option 2: Upload parts yourself
    const uploadResult = await client.video.uploadPart(
      video.data.id,
      "./path/to/video.mp4",
    );
    console.log(uploadResult);
 
    const checkResult = await client.video.uploadVideoComplete(video.data.id);
    // Check if the video upload is complete
    console.log(checkResult);
  } catch (e) {
    console.error(e);
  }
})();
 
 
 

Documentation

API endpoints

API key

MethodDescriptionHTTP request
create() (opens in a new tab)Create API keyPOST /api_keys
update() (opens in a new tab)Rename API keyPATCH /api_keys/{id}
delete() (opens in a new tab)Delete API keyDELETE /api_keys/{id}
list() (opens in a new tab)Get list API keysGET /api_keys

Live stream

MethodDescriptionHTTP request
createLiveStreamKey() (opens in a new tab)Create live stream keyPOST /live_streams
createStreaming() (opens in a new tab)Create a new live stream videoPOST /live_streams/{id}/streamings
deleteLiveStreamKey() (opens in a new tab)Delete live stream keyDELETE /live_streams/{id}
deleteStreaming() (opens in a new tab)Delete live stream videoDELETE /live_streams/{id}/streamings/{stream_id}
getLiveStreamKey() (opens in a new tab)Get live stream keyGET /live_streams/{id}
getLiveStreamKeys() (opens in a new tab)Get live stream key listGET /live_streams
getLiveStreamPlayerInfo() (opens in a new tab)Get live stream video publicGET /live_streams/player/{id}/videos
getLiveStreamVideo() (opens in a new tab)Get live stream videoGET /live_streams/{id}/videos
getLiveStreamVideos() (opens in a new tab)Get live stream videosPOST /live_streams/{id}/videos
getStreaming() (opens in a new tab)Get live stream video streamingGET /live_streams/{id}/streamings/{stream_id}
getStreamings() (opens in a new tab)Get live stream video streamingsGET /live_streams/{id}/streamings
updateLiveStreamKey() (opens in a new tab)Update live stream keyPUT /live_streams/{id}
updateLiveStreamVideo() (opens in a new tab)Update live stream videoPUT /live_streams/{id}/streamings

Players

MethodDescriptionHTTP request
create() (opens in a new tab)Create a player themePOST /players
get() (opens in a new tab)Get a player theme by IDGET /players/{id}
update() (opens in a new tab)Update a player theme by IDPATCH /players/{id}
delete() (opens in a new tab)Delete a player theme by IDDELETE /players/{id}
list() (opens in a new tab)List all player themesGET /players
uploadLogo() (opens in a new tab)Upload a logo for a player theme by IDPOST /players/{id}/logo
deleteLogo() (opens in a new tab)Delete a logo for a player theme by IDDELETE /players/{id}/logo
addPlayer() (opens in a new tab)Add a player theme to a videoPOST /players/add-player
removePlayer() (opens in a new tab)Remove a player theme from a videoPOST /players/remove-player

Playlist

MethodDescriptionHTTP request
addVideoToPlaylist() (opens in a new tab)Add a video to a playlistPOST /playlists/{id}/items
createPlaylist() (opens in a new tab)Create a playlistPOST /playlists/create
deletePlaylistById() (opens in a new tab)Delete a playlist by IDDELETE /playlists/{id}
deletePlaylistThumbnail() (opens in a new tab)Delete a playlist thumbnailDELETE /playlists/{id}/thumbnail
getPlaylistById() (opens in a new tab)Get playlist by IDGET /playlists/{id}
getPlaylistPublicInfo() (opens in a new tab)Get a playlist publicGET /playlists/{id}/player.json
getPlaylists() (opens in a new tab)Get user's playlistsPOST /playlists
moveVideoInPlaylist() (opens in a new tab)Move a video in a playlistPUT /playlists/{id}/items
removeVideoFromPlaylist() (opens in a new tab)Remove a video from a playlistDELETE /playlists/{id}/items/{item_id}
updatePlaylist() (opens in a new tab)Update a playlistPATCH /playlists/{id}

Video

MethodDescriptionHTTP request
create() (opens in a new tab)Create video objectPOST /videos/create
update() (opens in a new tab)update video infoPATCH /videos/{id}
delete() (opens in a new tab)Delete videoDELETE /videos/{id}
uploadThumbnail() (opens in a new tab)Upload video thumbnailPOST /videos/{id}/thumbnail
createCaption() (opens in a new tab)Create a new video captionPOST /videos/{id}/captions/{lan}
deleteCaption() (opens in a new tab)Delete a video captionDELETE /videos/{id}/captions/{lan}
getCaptions() (opens in a new tab)Get video captionsGET /videos/{id}/captions
getCost() (opens in a new tab)get video transcoding costGET /videos/cost
getDetail() (opens in a new tab)get video detailGET /videos/{id}
getVideoList() (opens in a new tab)Get user videos listPOST /videos
getVideoPlayerInfo() (opens in a new tab)Get video player infoGET /videos/{id}/player.json
setDefaultCaption() (opens in a new tab)Set default captionPATCH /videos/{id}/captions/{lan}
uploadPart() (opens in a new tab)Upload part of videoPOST /videos/{id}/part
uploadVideoComplete() (opens in a new tab)Get upload video when completeGET /videos/{id}/complete

Video chapter

MethodDescriptionHTTP request
create() (opens in a new tab)Create a video chapterPOST /videos/{id}/chapters/{lan}
get() (opens in a new tab)Get video chaptersGET /videos/{id}/chapters
delete() (opens in a new tab)Delete a video chapterDELETE /videos/{id}/chapters/{lan}

Webhook

MethodDescriptionHTTP request
create() (opens in a new tab)Create webhookPOST /webhooks
get() (opens in a new tab)Get user's webhook by idGET /webhooks/{id}
update() (opens in a new tab)Update event webhookPATCH /webhooks/{id}
delete() (opens in a new tab)Delete webhookDELETE /webhooks/{id}
list() (opens in a new tab)Get list webhooksGET /webhooks
check() (opens in a new tab)Check webhook by idPOST /webhooks/check/{id}

Rate limiting

AIOZ Stream implements rate limiting to ensure fair usage and stability of the service. The API provides the rate limit values in the response headers for any API requests you make.

In this Node.js client, you can access these headers by using the listWithResponseHeaders() versions of the methods. These methods return both the response body and the headers, allowing you to check the X-RateLimit-Limit, X-RateLimit-Remaining, and X-RateLimit-Retry-After headers to understand your current rate limit status.

Here is an example of how to use these methods:

const client = new StreamClient({
  secretKey: "YOUR_SECRET_KEY",
  publicKey: "YOUR_PUBLIC_KEY"
});
 
const { headers, body } = const webhook = await client.webhook.listWithResponseHeaders();

Authorization

API key and public key

All endpoints required to be authenticated using the API key and public key mechanism described in our documentation (opens in a new tab).

All you have to do is provide an API key and public key when instantiating the StreamClient:

const client = new StreamClient({
  secretKey: 'YOUR_SECRET_KEY',
  publicKey: 'YOUR_PUBLIC_KEY'
})