Skip to main content
GET
/
renders
List renders
curl --request GET \
  --url https://api.cut.pro/api/v1/renders \
  --header 'X-Api-Key: <api-key>'
{
  "renders": [
    {
      "render_id": "<string>",
      "edit_setting_id": "<string>",
      "name": "<string>",
      "progress": 123,
      "output_resolution": "<string>",
      "created_at": "<string>",
      "started_at": "<string>",
      "completed_at": "<string>"
    }
  ],
  "pagination": {
    "current_page": 123,
    "total_pages": 123,
    "total_count": 123,
    "has_next_page": true,
    "has_previous_page": true,
    "limit": 123
  }
}

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

Query Parameters

page
number

Page number (default: 1)

Required range: x >= 1
limit
number

Items per page (default: 20, max: 100)

Required range: 1 <= x <= 100
status
enum<string>
Available options:
processing,
completed,
failed

Response

200 - application/json

Response for status 200

renders
object[]
required
pagination
object
required
Last modified on May 27, 2026