Stream render status (SSE)
Server-Sent Events stream of `event: status` until the job is terminal. Best for browser clients with a session cookie.
/api/v1/renders/{id}/eventsServer-Sent Events stream of event: status until the job is terminal.
Best for browser clients with a session cookie.
API key as Authorization: Bearer <key>
In: header
Path Parameters
uuidResponse Body
text/event-stream
application/json
application/json
curl -X GET "https://example.com/api/v1/renders/497f6eca-6276-4993-bfeb-53cbbbba6f08/events""string"{ "error": "string", "code": "UNAUTHORIZED", "details": {}, "message": "string"}{ "error": "string", "code": "UNAUTHORIZED", "details": {}, "message": "string"}Wait for render completion GET
Long-poll until the job is `done` or `failed`, or until `timeout` elapses (max 60s). Returns 202 with `retryAfterMs` if still in progress — open another wait request.
Download render asset GET
Streams the binary asset (HTTP 200). Send a session cookie or API key, or a valid `sig` query from `assetUrl` (no key). Signed fetches are long-lived until the file is archived (410). The former path `/api/v1/renders/{id}/image` still works as an alias.