Skip to main content
POST
/
models
/
load
Switch the active visual model
curl --request POST \
  --url http://localhost:6699/api/v1/models/load \
  --header 'Content-Type: application/json' \
  --header 'X-License-Key: <api-key>' \
  --data '
{
  "model_key": "v2-medium-256"
}
'
{
  "message": "<string>",
  "loaded_model": "<string>"
}

Authorizations

X-License-Key
string
header
required

Jumper Pro license key passed via header

Body

application/json
model_key
string
required

The model key to load

Example:

"v2-medium-256"

Response

Model switched (or already active, or still loading from previous switch)

message
string
loaded_model
string
Last modified on February 18, 2026