Developer Platform

Video hosting infrastructure,
for teams that ship.

Upload, transcode and deliver video at scale. Playback, thumbnails and analytics through a single API.

v3.1.0 ● operational Region: eu-vienna TLS 1.3

Platform services

Upload & Ingest

Resumable, chunked video ingest with automatic format detection.

/v1/uploads

Transcoding

Adaptive bitrate renditions for web, mobile and embedded playback.

/v1/transcode

Playback Delivery

Signed playback URLs served from the nearest edge location.

/v1/playback

Partner Auth

OAuth2 client credentials flow for partner and internal service authentication.

/v1/oauth/token

System status

API Gateway eu-vienna-1 operational
Transcoding Cluster eu-vienna-1 operational
Playback Edge Network eu-vienna-1 / eu-frankfurt-1 operational
Auth & Identity eu-vienna-1 operational

Quick start

// authenticate
POST https://api.audio.entertainment/v1/oauth/token
Content-Type: application/json

{
  "grant_type": "client_credentials",
  "client_id": "...",
  "client_scope": "playback.read uploads.write"
}

// request a playback URL
GET https://api.audio.entertainment/v1/playback/{video_id}
Authorization: Bearer <token>