Core

List Models

List every model available to your account.

Returns the live catalogue: ids, pricing, limits, and — for our own fine-tunes — the trigger word the gateway injects for you.

GET/v1/modelsTry it

Authorizations

Authorizationstringheaderrequired

Bearer authentication header of the form Bearer <token>, where <token> is your SpicyAPI key (sk-spicy-…). Create one in the dashboard under API Keys.

Response

200application/json

Successful Response

The models your key can call.

dataModel · object[]required

Every model available to you.

Was this page helpful?

List Models
cURL
curl --request GET \
  --url https://api.spicyapi.com/v1/models \
  --header 'Authorization: Bearer $SPICYAPI_KEY'
200
JSON
{
  "data": [
    {
      "id": "spicy-pov-missionary-1",
      "kind": "video",
      "label": "Spicy POV Missionary",
      "featured": true,
      "requires_image": true,
      "pricing": { "unit": "second", "usd_by_resolution": { "720P": 0.175, "1080P": 0.29 } },
      "lora_trigger": "sg_povmis1",
      "limits": { "resolutions": ["720P", "1080P"], "maxDuration": 15 }
    }
  ]
}