Skip to main content
POST
/
export
/
clips
Export trimmed video clips
curl --request POST \
  --url http://localhost:6699/api/v1/export/clips \
  --header 'Content-Type: application/json' \
  --header 'X-License-Key: <api-key>' \
  --data '
{
  "clips": [
    {
      "source_path": "<string>",
      "start_seconds": 123,
      "end_seconds": 123,
      "subfolder": "<string>"
    }
  ],
  "output_dir": "<string>",
  "copy_codec": true
}
'
{
  "results": [
    {
      "success": true,
      "output_path": "<string>",
      "error": "<string>"
    }
  ],
  "summary": "3/3 clips exported successfully"
}

Authorizations

X-License-Key
string
header
required

Jumper Pro license key passed via header

Body

application/json
clips
object[]
required
output_dir
string
required

Directory to write exported clips to

copy_codec
boolean
default:true

Use stream copy (fast) vs re-encode

Response

200 - application/json

Export results

results
object[]
summary
string
Example:

"3/3 clips exported successfully"

Last modified on February 18, 2026