Skip to main content
POST
/
editor
/
download
Download compiled editor timeline
curl --request POST \
  --url https://api.videodb.io/editor/download \
  --header 'Content-Type: application/json' \
  --header 'x-access-token: <api-key>' \
  --data '
{
  "stream_url": "https://stream.videodb.io/compiled/12345"
}
'
{
  "success": true,
  "data": {
    "download_url": "https://download.videodb.io/..."
  }
}
Generate a download URL for a compiled editor timeline. Provide the stream URL from a previous compilation to get a downloadable file.
  • Requires a stream_url from a previous compilation
  • The download URL is temporary and should be used promptly

Authorizations

x-access-token
string
header
required

API key for authentication (sk-xxx format)

Body

application/json
stream_url
string
required
Example:

"https://stream.videodb.io/compiled/12345"

Response

200 - application/json

Download URL generated

success
boolean
Example:

true

data
object