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.
| Model | Context | Notes |
|---|---|---|
qwen2.5-7b-instruct | 32K | Strong 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.
| Model | License | Best for |
|---|---|---|
sdxl | OpenRAIL++ | Fast, versatile, huge LoRA ecosystem |
flux-schnell | Apache-2.0 | Modern 12B quality in 1–4 steps |
qwen-image | Apache-2.0 | Flagship 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.