Skip to main content
POST
/
thumbnails
/
scene
Get thumbnails for a time range
curl --request POST \
  --url http://localhost:6699/api/v1/thumbnails/scene \
  --header 'Content-Type: application/json' \
  --header 'X-License-Key: <api-key>' \
  --data '
{
  "cache_dir": "<string>",
  "media_path": "<string>",
  "start_time": "00:01:00",
  "end_time": "00:02:00",
  "hash_str": "<string>"
}
'
{
  "scene_thumbnails": [
    [
      "<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
start_time
string
required

Start timestamp (HH:MM:SS)

Example:

"00:01:00"

end_time
string
required

End timestamp (HH:MM:SS)

Example:

"00:02:00"

hash_str
string

Optional media file hash for faster lookup

Response

200 - application/json

Array of [base64_jpeg, timestamp] pairs

scene_thumbnails
string[][] | null

[base64_jpeg, timestamp]

Last modified on February 18, 2026