Skip to main content
GET
/
renders
/
bulk-download
/
{jobId}
Get bulk download status
curl --request GET \
  --url https://api.cut.pro/api/v1/renders/bulk-download/{jobId} \
  --header 'X-Api-Key: <api-key>'
{
  "job_id": "<string>",
  "progress": 123,
  "render_count": 123,
  "file_size": 123,
  "error_code": "<string>",
  "created_at": "<string>",
  "completed_at": "<string>",
  "expires_at": "<string>",
  "download_url": "<string>",
  "filename": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://cut.pro/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Api-Key
string
header
required

Path Parameters

jobId
string
required

Response

Response for status 200

job_id
string
required
status
enum<string>
required
Available options:
queued,
active,
completed,
failed
progress
number
required

0 to 100

render_count
number
required
file_size
number | null
required

Final zip size in bytes; null until completed

error_code
string | null
required
created_at
string
required
completed_at
string | null
required
expires_at
string
required
download_url
string | null
required

Signed URL valid for 1h. Only populated when status is completed.

filename
string | null
required
Last modified on May 27, 2026