Skip to main content

Bintu API

What is bintu?

Bintu is the stream management dashboard and API for nanoStream Cloud and CDN. By using bintu, you can create and manage your live streams, to enable ultra-low-latency live streaming at a global scale.

You can manage your streams via the dashboard or the REST API:

What do I need?

Before starting

To begin, please sign in using your nanoStream Cloud/Bintu account credentials.
If you have not created an account yet, you can sign up or reach out to our dedicated sales team via the contact form or by sending an email to sales(at)nanocosmos.de.

You need a bintu account, based on our trial or a paid plan. You also need a live encoder, currently based on RTMP, SRT, WHIP applications or WebRTC in the browser. Live playback will be supported by using our built-in nanoPlayer which you can easily embed into your own applications.

bintu REST API

Examples

Get latest live stream

CURL command line

curl -X GET "https://bintu.nanocosmos.de/stream?quantity=1" \
-H 'content-type: application/json' \
-H 'x-bintu-apikey: YOUR_BINTU_API_KEY'

Javascript

    fetch("https:bintu.nanocosmos.de/stream?quantity=1", {
"headers": { "x-bintu-apikey": BINTU_API_KEY }, "method": "GET",
}).then((response) => response.json())

Create MBR/ABR Stream including live transcoding

CURL command line

curl 'https://bintu.nanocosmos.de/stream' \
-H 'content-type: application/json' \
-H 'accept: application/json' \
-H 'x-bintu-apikey: YOUR_BINTU_API_KEY'
--data-raw '{"transcodes":[{"profile":"vtrans2-852x480x800x25","tags":[]},{"profile":"vtrans2-640x360x400x25","tags":[]}]}' \

Javascript

    fetch("https://bintu.nanocosmos.de/stream", {
"headers": { "x-bintu-apikey": BINTU_API_KEY }, "method": "POST",
"body": JSON.stringify({"transcodes":[{"profile":"vtrans2-852x480x800x25","tags":[]},{"profile":"vtrans2-640x360x400x25","tags":[]}]}),
})
Questions?

For business related questions reach out to our dedicated sales team via the contact form or by sending an email to sales(at)nanocosmos.de.
For technical questions you can use our support form.