Skip to main content
GET
/
renders
/
{renderId}
Get render status
curl --request GET \
  --url https://api.cut.pro/api/v1/renders/{renderId} \
  --header 'X-Api-Key: <api-key>'
{
  "render_id": "<string>",
  "edit_setting_id": "<string>",
  "name": "<string>",
  "progress": 123,
  "output_resolution": "<string>",
  "created_at": "<string>",
  "started_at": "<string>",
  "completed_at": "<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

renderId
string
required

Response

Response for status 200

render_id
string
required

Unique render ID

edit_setting_id
string
required

ID of the edit settings used for this render

name
string | null
required

Name of the edit / clip being rendered

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

Render progress from 0 to 100

output_resolution
string | null
required

Output resolution, e.g. 720p or 1080p

created_at
string
required

ISO 8601 timestamp of when the render was queued

started_at
string | null
required

ISO 8601 timestamp of when rendering started

completed_at
string | null
required

ISO 8601 timestamp of when the render finished

Last modified on May 27, 2026