two endpoints · zero browser

Render demos from your CI.

Create a render from a saved project, then poll for a signed MP4 URL. Idempotent retries, HMAC-signed downloads. Pro accounts only.

Get an API key
HMAC-signed URLs·p95 ~8m render·EU-only data
POST /v1/renders
curl -X POST https://api.demoscreen.co/v1/renders \
  -H "X-API-Key: $DEMOSCREEN_KEY" \
  -H "Idempotency-Key: $(uuidgen)" \
  -H "Content-Type: application/json" \
  -d '{ "project_id": "<uuid>" }'

# → 202 Accepted
# { "job_id": "job_4kf2L", "status": "pending" }
authentication

Send X-API-Key: ds_live_… on every request. Manage keys from your account settings. Keys are Pro-only and never returned again after creation.

endpoints · 2
POST/v1/renders
Create a render job for a saved project. Idempotent via the Idempotency-Key header.
GET/v1/renders/{id}
Poll job status. Returns signed MP4 + SRT URLs when the render succeeds.

SDK to follow — curl suffices in the meantime. Webhooks are on the roadmap.