Generate audio stream URL

post/audio/{audio_id}/generate_url

Path parameters

audio_idstring required
Example:a-12345

Request body

format'mp3' | 'wav' | 'flac'
quality'low' | 'medium' | 'high'

Example request

{
  "format": "mp3",
  "quality": "high"
}

Response

Stream URL generated

successboolean

Example response

{
  "success": true,
  "data": {
    "stream_url": "https://stream.videodb.io/a/12345"
  }
}

Changes

No recorded changes to this endpoint across all 5 revisions of this API.