Skip to main content
Compose and render a multi-track video using the Rendley engine. Supports clips, text, audio, transitions, effects, filters, and keyframe animations.
Timeout: 600s | Provider: triggerdev | Accepts: video

Request

curl -X POST https://api.rendobar.com/jobs \
  -H "Authorization: Bearer rb_your_key" \
  -H "Content-Type: application/json" \
  -d '{
  "type": "render.rendley",
  "inputs": {},
  "params": {
    "width": 1920,
    "height": 1080,
    "clips": [
      {
        "type": "video",
        "url": "https://cdn.rendobar.com/assets/examples/sample.mp4",
        "startTime": 0,
        "duration": 10
      }
    ]
  }
}'

Parameters

width
integer
default:"1920"
Canvas width in pixels
height
integer
default:"1080"
Canvas height in pixels
backgroundColor
string
default:"#000000"
Background color in hex format
clips
object[]
required
Array of clips to compose on the timeline
transitions
object[]
Transitions between clips
fonts
object[]
Custom fonts to load for text clips
subtitles
object[]
Subtitles to overlay on the composition

Response

{
  "data": {
    "id": "job_abc123",
    "status": "dispatched"
  }
}