Cut.ProDocs
Submissions

List submissions

Returns a paginated list of all clipping submissions for a video, newest first. Use this to audit past runs, find a specific submission ID, or check whether a job is still in progress.

X-Api-Key<token>

In: header

Path Parameters

videoId*string

Query Parameters

page?number

Page number (default: 1)

Range1 <= value
limit?number

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

Range1 <= value <= 100

Response Body

application/json

application/json

GET
/clips/{videoId}/submissions
curl -X GET "https://example.com/clips/string/submissions"
{  "submissions": [    {      "submission_id": "string",      "status": "queued",      "error_code": "download_failed",      "estimated_time": 0,      "queue_position": 0,      "is_priority": true,      "strategy_id": "string",      "timeframe": {        "start": 0,        "end": 0      },      "credit_cost": 0,      "is_reclip": true,      "clips_count": 0,      "created_at": "string",      "completed_at": "string"    }  ],  "pagination": {    "current_page": 0,    "total_pages": 0,    "total_count": 0,    "has_next_page": true,    "has_previous_page": true,    "limit": 0  }}