Skip to main content
Rendobar is a serverless media processing API. Submit a job with one API call, get a processed result back.

1. Get your API key

Sign up at app.rendobar.com and create an API key from the dashboard. Keys are prefixed with rb_.

2. Submit a job

curl -X POST https://api.rendobar.com/transcode \
  -H "Authorization: Bearer rb_your_key" \
  -H "Content-Type: application/json" \
  -d '{
    "inputs": { "source": "https://example.com/video.mp4" },
    "params": { "codec": "h264", "preset": "fast", "crf": 23 }
  }'
The response includes a job ID and status:
{
  "data": {
    "id": "job_abc123",
    "status": "dispatched"
  }
}

3. Check job status

Poll the job endpoint until the status is complete:
curl https://api.rendobar.com/jobs/job_abc123 \
  -H "Authorization: Bearer rb_your_key"

4. Download the result

Once complete, the job response includes a download URL for the processed file.

What’s next?