Models

Models

List the models available to your account at runtime:

curl https://api.crustoff.app/v1/models \
  -H "Authorization: Bearer $CRUSTOFF_API_KEY"

Each entry includes a non-standard modality field (text or image) so you can tell which endpoint to use. OpenAI SDKs ignore the extra field.

{
  "object": "list",
  "data": [
    { "id": "qwen2.5-7b-instruct", "object": "model", "owned_by": "crustoff", "modality": "text" },
    { "id": "sdxl", "object": "model", "owned_by": "crustoff", "modality": "image" }
  ]
}

Text models

Call these with /v1/chat/completions, /v1/completions, or /v1/embeddings.

ModelContextNotes
qwen2.5-7b-instruct32KStrong general-purpose chat model

More open chat models (Llama, Mixtral) are rolling out — check /v1/models for the live list.

Image models

Call these with /v1/images/generations.

ModelLicenseBest for
sdxlOpenRAIL++Fast, versatile, huge LoRA ecosystem
flux-schnellApache-2.0Modern 12B quality in 1–4 steps
qwen-imageApache-2.0Flagship 20B quality, strong text rendering

All image models we host are commercially licensable for resale. We don’t host FLUX.1 dev — its license forbids running it as a paid service — so you won’t see it in the list.

See Pricing & billing for per-model rates.