Skip to main content
POST
/
export
/
premiere-xml
Generate Premiere Pro XML sequence
curl --request POST \
  --url http://localhost:6699/api/v1/export/premiere-xml \
  --header 'Content-Type: application/json' \
  --header 'X-License-Key: <api-key>' \
  --data '
{
  "clips": [
    {
      "source_path": "<string>",
      "start_seconds": 123,
      "end_seconds": 123
    }
  ],
  "output_path": "<string>",
  "sequence_name": "Untitled Sequence",
  "timebase": 24
}
'
{
  "output_path": "<string>",
  "clip_count": 123,
  "total_duration_seconds": 123
}

Authorizations

X-License-Key
string
header
required

Jumper Pro license key passed via header

Body

application/json
clips
object[]
required
output_path
string
required

Where to write the XML file

sequence_name
string
default:Untitled Sequence

Name of the sequence in the NLE

timebase
integer
default:24

Sequence frame rate (e.g. 24, 25, 30)

Response

200 - application/json

XML generated

output_path
string
clip_count
integer
total_duration_seconds
number
Last modified on February 18, 2026