Using this API client requires an active account.
Don't have an account yet? Sign up for a free Bitmovin trial plan!
- Full Bitmovin API reference documentation: https://bitmovin.com/docs/encoding/api-reference
- Release Notes: https://bitmovin.com/docs/encoding/changelogs/rest
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 👍
go get github.com/bitmovin/bitmovin-api-sdk-go
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)
}
// ...
}