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>"
}

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

Detailed info per model (display name, resolution, etc.)

current_system
string

Hardware type (e.g. "apple_silicon", "cuda", "cpu")

Last modified on February 18, 2026