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

Authorizations

X-License-Key
string
header
required

Jumper Pro license key passed via header

Body

application/json
cache_dir
string
required

Path to the analysis data folder

media_paths
string[]
required

Absolute paths to media files

Response

Metadata keyed by file path

media_properties
object
Last modified on February 18, 2026