Skip to main content
POST
/
export
/
transcript
Export transcript to file
curl --request POST \
  --url http://localhost:6699/api/v1/export/transcript \
  --header 'Content-Type: application/json' \
  --header 'X-License-Key: <api-key>' \
  --data '
{
  "segments": [
    [
      123
    ]
  ],
  "format": "txt",
  "display_name": "Transcript",
  "output_path": "<string>",
  "include_silences": true
}
'
{
  "output_path": "<string>",
  "format": "<string>",
  "row_count": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.getjumper.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-License-Key
string
header
required

Jumper Pro license key passed via header

Body

application/json
segments
((number | string)[])[]
required

List of [start_seconds, text, end_seconds] arrays

format
enum<string>
default:txt

Export format

Available options:
txt,
csv,
docx,
pdf
display_name
string
default:Transcript

Name shown in header and used for filename

output_path
string

Destination file path (defaults to ~/Desktop/)

include_silences
boolean
default:true

Include silence gap rows between segments

Response

200 - application/json

Transcript exported

output_path
string
format
string
row_count
integer
Last modified on May 7, 2026