Skip to main content
POST
/
transcriptions
Get transcriptions
curl --request POST \
  --url http://localhost:6699/api/v1/transcriptions \
  --header 'Content-Type: application/json' \
  --header 'X-License-Key: <api-key>' \
  --data '
{
  "cache_dir": "/Users/me/JumperAnalysis",
  "media_paths": [
    "/Audio/voiceover.mp3",
    "/Videos/interview.mp4"
  ]
}
'
{
  "transcriptions": {}
}

Authorizations

X-License-Key
string
header
required

Jumper Pro license key passed via header

Body

application/json
cache_dir
string
required
media_paths
string[]
required

Paths to video or audio files

Response

200 - application/json

Transcription segments keyed by file path

transcriptions
object
Last modified on February 18, 2026