Quickstart
From zero to your first scene in four steps — using the live pipeline API,
POST /v1/scenes.
1. Get an API key
Create a key in jetwild.com → Settings → Developers .
Keys are prefixed by mode — jw_test_ or jw_live_. Give it the scenes:write
scope so it can create scenes.
2. Create a scene
POST /v1/scenes registers a scene and returns a presigned URL to upload the
master to. This is live today.
3. Upload the master
The response includes an uploadUrl and uploadMethod (usually PUT). Upload
your file straight to it — no Jetwild auth on the upload itself.
4. Read the response
Creating the scene returns the scene record plus the upload target:
Once uploaded, the scene moves through the pipeline (QUEUED → PROCESSING → READY). Poll GET /v1/scenes/{id} for status and the
generated metadata.
Long jobs are best handled with an event instead of polling. Webhook registration and signing are live; scene event emission is coming soon — until then, poll the scene.