Skip to main content
POST
/
cache-paths
Get cache folder paths for a media file
curl --request POST \
  --url http://localhost:6699/api/v1/cache-paths \
  --header 'Content-Type: application/json' \
  --header 'X-License-Key: <api-key>' \
  --data '
{
  "cache_dir": "<string>",
  "media_path": "<string>"
}
'
{
  "video_cache_path": "<string>",
  "audio_cache_path": "<string>",
  "hash_str": "<string>"
}

Authorizations

X-License-Key
string
header
required

Jumper Pro license key passed via header

Body

application/json
cache_dir
string
required
media_path
string
required

Absolute path to the media file

Response

200 - application/json

Cache paths for the media file

video_cache_path
string | null

Path to the visual analysis cache folder (null if not yet analyzed)

audio_cache_path
string | null

Path to the audio/transcription cache folder (null if not yet analyzed)

hash_str
string

Unique hash identifying this media file

Last modified on February 18, 2026