Skip to main content
GET
/
models
/
available
List available models
curl --request GET \
  --url http://localhost:6699/api/v1/models/available \
  --header 'X-License-Key: <api-key>'
{
  "supported_models": [
    "<string>"
  ],
  "downloaded_models": [
    "<string>"
  ],
  "loaded_model": "<string>",
  "model_info": [
    {}
  ],
  "current_system": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.getjumper.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-License-Key
string
header
required

Jumper Pro license key passed via header

Response

200 - application/json

Model information

supported_models
string[]

All model keys supported on this hardware

downloaded_models
string[]

Model keys that are downloaded and ready to use

loaded_model
string

Currently active model key

model_info
object[]

Array of objects, each keyed by model_key with details (accuracy, speed, frame_resolution, etc.)

current_system
string

Hardware type (e.g. "mac-arm", "mac-x86", "windows", "linux")

Last modified on February 20, 2026