Pular para o conteúdo principal
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>",
  "strategy_id": "<string>",
  "timeframe": {
    "start": 1,
    "end": 2
  },
  "template_id": "<string>"
}
'
{
  "submission_id": "<string>",
  "video_id": "<string>",
  "credits_charged": 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.

Autorizações

X-Api-Key
string
header
obrigatório

Corpo

video_id
string
obrigatório

The video_id returned by POST /clips/info

source_language
enum<string>
Opções disponíveis:
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

Resposta

Response for status 201

submission_id
string
obrigatório

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

video_id
string
obrigatório

ID of the source video

status
enum<string>
obrigatório
Opções disponíveis:
queued
credits_charged
number
obrigatório

Credits deducted from your balance for this submission

Last modified on June 2, 2026