Skip to content

Latest commit

 

History

History
54 lines (39 loc) · 1.52 KB

README.md

File metadata and controls

54 lines (39 loc) · 1.52 KB

Bitmovin Go API SDK Header

Go API SDK which enables you to seamlessly integrate the Bitmovin API into your projects.

License

Using this API client requires an active account.

Don't have an account yet? Sign up for a free Bitmovin trial plan!


Documentation & Release Notes

Support

If you have any questions regarding the SDK, provided examples or our services, please log in to your Bitmovin Dashboard at https://bitmovin.com/dashboard and create a support ticket. Our team will get back to you as soon as possible 👍


Installation:

go get github.com/bitmovin/bitmovin-api-sdk-go

Initializiation

package main

import (
    "github.com/bitmovin/bitmovin-api-sdk-go"
    "github.com/bitmovin/bitmovin-api-sdk-go/apiclient"
)

func main() {
    bitmovinAPI, err := bitmovin.NewBitmovinAPI(apiclient.WithAPIKey("<YOUR_API_KEY>"))
    if err != nil {
        panic(err)
    }

   // ...
}