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
glm-5.21MZ-AI flagship — long-horizon tasks
deepseek-v4-pro1MMoE reasoning & coding (1.6T total / 49B active)
deepseek-v4-flash1MEfficiency-focused MoE (284B total / 13B active)
kimi-k2.7-code256KCoding & agentic (Moonshot)
qwen3.6-35b-a3b256KAlibaba MoE (35B total / 3B active)
qwen2.5-7b-instruct32KStrong general-purpose chat model

The list is always live — check /v1/models for what your account can call right now.

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.

Video models

Call these with /v1/videos/generations (async, image-to-video).

ModelLicenseBest for
wan2.2-i2vApache-2.0Image-to-video — animate a still into a short clip

See Pricing & billing for per-model rates.