Cut.ProDocs
Videos

List videos

Returns a paginated list of all source videos in your library, ordered by most recent submission. Each item includes lifecycle counters (clips generated, edits, exports, posts) and the status of the latest submission.

X-Api-Key<token>

In: header

Query Parameters

page?number

Page number (default: 1)

Range1 <= value
limit?number

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

Range1 <= value <= 100
sort?string

Value in

  • "recent"
  • "oldest"
  • "title"
  • "title-desc"

Response Body

application/json

GET
/clips
curl -X GET "https://example.com/clips"
{  "videos": [    {      "id": "string",      "title": "string",      "author": "string",      "platform": "string",      "duration": 0,      "thumbnail_url": "string",      "video_url": "string",      "clips_count": 0,      "edited_count": 0,      "exported_count": 0,      "posted_count": 0,      "submissions_count": 0,      "last_submission": {        "status": "queued",        "error_code": "download_failed",        "waiting_reason": "source_premiere_scheduled",        "waiting_until": "string",        "estimated_time": 0,        "queue_position": 0,        "is_priority": true,        "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  }}