Skip to main content
GET
/
jobs
/
{id}
/
downloads
Download URLs
curl --request GET \
  --url https://api.renderjuice.com/api/external/v1/jobs/{id}/downloads \
  --header 'Authorization: Bearer <token>'
{
  "frames": [
    "<string>"
  ],
  "compositeNodes": [
    "<string>"
  ],
  "transforms": {
    "framesZip": "<string>",
    "compositeNodesZip": "<string>",
    "video": {},
    "framesZipOutputs": {
      "url": "<string>",
      "fileName": "<string>",
      "view": "<string>",
      "legacy": true,
      "relativePath": "<string>",
      "compositeNodeName": "<string>"
    },
    "compositeNodesZipOutputs": {
      "url": "<string>",
      "fileName": "<string>",
      "view": "<string>",
      "legacy": true,
      "relativePath": "<string>",
      "compositeNodeName": "<string>"
    }
  },
  "frameOutputs": [
    {
      "url": "<string>",
      "fileName": "<string>",
      "view": "<string>",
      "legacy": true,
      "relativePath": "<string>",
      "compositeNodeName": "<string>"
    }
  ],
  "compositeNodeOutputs": [
    {
      "url": "<string>",
      "fileName": "<string>",
      "view": "<string>",
      "legacy": true,
      "relativePath": "<string>",
      "compositeNodeName": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

API key authentication. Format: Bearer RJ-XXX.... Get your API key from the Renderjuice dashboard.

Path Parameters

id
string<uuid>
required

Unique identifier (UUID) of the job Unique identifier of the job

Example:

"123e4567-e89b-12d3-a456-426614174000"

Response

200 - application/json

Success

frames
string<uri>[]
required

Legacy array of rendered frame image download URLs. Prefer frameOutputs when you need original filenames or stereo/multiview metadata.

compositeNodes
string<uri>[]
required

Legacy array of composite node output download URLs. Prefer compositeNodeOutputs when you need original filenames or relative paths.

transforms
object
required

Download options for ZIP archives and video outputs.

frameOutputs
object[]

Details for individual frame downloads. Use fileName for the preserved original output filename and view for the stereo or multiview camera suffix.

compositeNodeOutputs
object[]

Details for individual compositor output downloads. Use fileName for the preserved original leaf filename and relativePath when recreating folders or ZIP entries.