/api/v3/timelines/{timelineId}
Authentication: Requires API Key in the request header.
Authorization: The edit (clip) referenced by the timeline export must belong to the account associated with the API token.
Path Parameters:
| Parameter | Type | Description |
|---|---|---|
timelineId | string | The timeline export job identifier returned by Create Timeline Export. |
status is done (the download_url becomes available) or failed.
Rate limit: Once every 1 second for unique requests.
Polling: After creating a timeline export, poll this endpoint until the job reaches a terminal state:
queued— the export has been accepted and is waiting to be processed.processing— the timeline file is being generated.done— generation finished;download_urlis populated.failed— generation failed; seeerrorfor the reason.
status is done, download_url is a stable Riverside route — Download Timeline File — that 301-redirects to a short-lived signed ZIP URL. Persist the download_url route, not the URL it redirects to (the latter expires).
Status Codes:
200 OKTimeline export status retrieved successfully.401 UnauthorizedAuthentication failed (missing or invalid API token).404 Not FoundTimeline export not found.410 GoneTimeline export no longer exists; the export was re-triggered and the priortimeline_idis stale. Create a new export and poll the newtimeline_id.429 Too Many RequestsThis endpoint is rate limited.500 Internal Server ErrorUnexpected server error.