Skip to main content
POST
/
clips
Submit a video for clipping
curl --request POST \
  --url https://api.cut.pro/api/v1/clips \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '
{
  "video_id": "<string>",
  "source_language": "auto",
  "strategy_id": "<string>",
  "timeframe": {
    "start": 1,
    "end": 2
  },
  "template_id": "<string>"
}
'
{
  "submission_id": "<string>",
  "video_id": "<string>",
  "status": "queued",
  "credits_charged": 123
}

Authorizations

X-Api-Key
string
header
required

Body

video_id
string
required

The video_id returned by POST /clips/info

source_language
enum<string>
Available options:
auto,
en,
pt
strategy_id
string | null

ID of a saved clipping strategy. Omit or pass null to use default AI settings

timeframe
object

Restrict clipping to a portion of the video. Omit to process the full video

template_id
string | null

ID of an edit template to auto-apply to every generated clip

Response

Response for status 201

submission_id
string
required

ID of the created submission — use this to poll for progress

video_id
string
required

ID of the source video

status
enum<string>
required
Available options:
queued
credits_charged
number
required

Credits deducted from your balance for this submission

Last modified on April 16, 2026