An open API service indexing awesome lists of open source software.

https://github.com/as/bitmovin-api-sdk-go

Go API SDK which enables you to seamlessly integrate the Bitmovin API into your projects
https://github.com/as/bitmovin-api-sdk-go

Last synced: 6 months ago
JSON representation

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

Awesome Lists containing this project

README

          



Bitmovin Go API SDK Header


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


License

***Important! This is an alpha version, there may be breaking changes.***

Using this API client requires an active account.

> Don't have an account yet? [Sign up for a free Bitmovin trial plan](https://dashboard.bitmovin.com/signup)!

For full documentation of all available API endpoints, see the [Bitmovin API reference](https://bitmovin.com/docs).

## Installation:

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

## Initializiation

```go
package main

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

func main() {
bitmovinApi, err := bitmovin.NewBitmovinApi(func(apiClient *common.ApiClient) {
apiClient.ApiKey = ""
})
if err != nil {
panic(err)
}

// ...
}
```