Skip to main content
POST
/
clips
/
{videoId}
/
submissions
/
{submissionId}
/
apply_template
Apply template to clips
curl --request POST \
  --url https://api.cut.pro/api/v1/clips/{videoId}/submissions/{submissionId}/apply_template \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '
{
  "template_id": "<string>",
  "clip_ids": [
    "<string>"
  ]
}
'
{
  "total": 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

Path Parameters

videoId
string
required
submissionId
string
required

Body

template_id
string
required

ID of the template to apply — must be one of your own templates (see GET /templates)

clip_ids
string[]

Subset of clip IDs to apply the template to. Omit to apply to all clips in the submission

Response

Response for status 200

total
number
required

0 — no clips matched the filter

Last modified on May 27, 2026