Skip to main content
POST
/
thumbnails
Get thumbnails at specific timestamps
curl --request POST \
  --url http://localhost:6699/api/v1/thumbnails \
  --header 'Content-Type: application/json' \
  --header 'X-License-Key: <api-key>' \
  --data '
{
  "cache_dir": "<string>",
  "requests": [
    {
      "media_path": "<string>",
      "time_seconds": 123
    }
  ]
}
'
{
  "thumbnails": [
    {
      "thumbnail": "aSDinaTvuI8gbWludGxpZnk="
    }
  ]
}

Authorizations

X-License-Key
string
header
required

Jumper Pro license key passed via header

Body

application/json
cache_dir
string
required
requests
object[]
required

Response

200 - application/json

Thumbnails in request order

thumbnails
object[]
Last modified on February 18, 2026