Qwen-Image Max on QuickSilver Pro
Qwen-Image Max is Alibaba's flagship open image model — high-fidelity generation with unusually sharp in-image text and strong prompt adherence. On QuickSilver Pro it's $0.10 per generated image, billed from the same prepaid balance as your chat and API usage. Call it with the OpenAI SDK's images.generate against our base URL.
At a glance
Alibaba's Qwen-Image flagship — crisp typography and prompt adherence.
Pricing (per generated image)
| Provider | Per image | vs QSP |
|---|---|---|
| QuickSilver Pro | $0.1 | — |
| typical Qwen-Image hosted API | $0.1 | same |
When to use
Reach for Qwen-Image Max when in-image text and precise prompt following matter — posters, UI mockups, product shots with legible labels. Existing OpenAI-SDK image code works with a base-URL swap.
When to use something else
For the cheapest high-volume drafts, FLUX.1 Schnell or SDXL Turbo cost less; for photoreal scenes compare Seedream 5.0 Pro. Advanced controls aren't exposed through the basic OpenAI Images parameters yet.
Quickstart (curl)
curl https://api.quicksilverpro.io/v1/images/generations \
-H "Authorization: Bearer $QSP_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen-image-max",
"prompt": "a sleek silver sports car, studio product shot",
"n": 1,
"size": "1024x1024"
}'OpenAI Images API. The response is OpenAI-shaped — data[0].b64_json holds the image. One key for chat and images.
FAQ
$0.10 per generated image on QuickSilver Pro, billed per image from the same prepaid balance as your chat usage.
POST to /v1/images/generations with model="qwen-image-max", or use the OpenAI SDK's images.generate. data[0].b64_json holds the base64 image.
Yes — it uses the OpenAI Images API. One key and base URL cover both chat and image generation.