Skip to main content
POST
/
editor
Compile editor timeline
curl --request POST \
  --url https://api.videodb.io/editor \
  --header 'Content-Type: application/json' \
  --header 'x-access-token: <api-key>' \
  --data '{}'
{
  "success": true,
  "status": "processing",
  "data": {
    "id": "job-123",
    "output_url": "https://api.videodb.io/async-response/job-123"
  }
}
Compile a timeline created in the visual editor into a playable stream. The timeline payload includes tracks with clips and their configurations.
  • Compilation is asynchronous; the response includes an async response ID
  • The timeline payload should include tracks with clip definitions
  • Use the async response endpoint to poll for completion

Authorizations

x-access-token
string
header
required

API key for authentication (sk-xxx format)

Body

application/json

Timeline compilation payload with tracks and clips

Response

200 - application/json

Timeline compilation started

success
boolean
Example:

true

status
enum<string>
Available options:
processing,
done,
failed
Example:

"processing"

data
object