/api/v3/download/timeline/{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. It is also the value embedded in the download_url returned by Get Timeline Export. |
download_url returned by Get Timeline Export points to this endpoint.
Rate limit: Once every 1 second.
Status Codes:
301 Moved PermanentlyRedirects to the signed timeline ZIP download URL.401 UnauthorizedAuthentication failed (missing or invalid API token).403 ForbiddenThe edit does not belong to this account.404 Not FoundTimeline export not found (unknown or malformedtimelineId).409 ConflictTimeline export is not ready for download (stillqueuedorprocessing, or itfailed). Poll Get Timeline Export untilstatusisdone.410 GoneTimeline export no longer exists; the export was re-triggered and the priortimelineIdis stale. Create a new export and use itstimelineId.429 Too Many RequestsRate limit exceeded.
Sample Request
Sample Response
Usage Example
Most HTTP clients will automatically follow the redirect. If you’re using curl:-L flag tells curl to follow redirects.
The
timelineId is an opaque token — it already encodes the edit, the target editing application, and the export job, so no other path parameters are needed. Pass it through exactly as returned; do not construct or modify it.