FLUX.2 Pro on QuickSilver Pro
FLUX.2 Pro is a flagship text-to-image model — photoreal product shots, detailed scenes, accurate in-image text. On QuickSilver Pro it's $0.027 per generated image (~13% under typical FLUX API pricing), billed from the same prepaid balance as your chat usage. Call it with the OpenAI SDK's images.generate against our base URL.
At a glance
High-quality text-to-image — product shots, marketing visuals, hero images.
Pricing (per generated image)
| Provider | Per image | vs QSP |
|---|---|---|
| QuickSilver Pro | $0.027 | cheapest |
| typical FLUX API pricing | $0.031 | 13% cheaper |
When to use
Reach for FLUX.2 Pro when image quality matters: product photography, marketing creative, detailed scenes, and images with legible text. The OpenAI-compatible /v1/images/generations endpoint means existing OpenAI-SDK image code works with a base-URL swap, and spend comes from the same balance as your chat calls.
When to use something else
For high-volume previews, thumbnails, or batch jobs where speed and cost beat fidelity, use FLUX.1 Schnell ($0.0025/image, sub-second). Advanced controls (seed, step count, ControlNet, LoRA) 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": "flux.2-pro",
"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.027 per generated image on QuickSilver Pro — about 13% under typical FLUX API pricing (~$0.031). Billed per image (not per token), from the same prepaid balance as your chat usage.
POST to /v1/images/generations with model="flux.2-pro", or use the OpenAI SDK's images.generate. The response is OpenAI-shaped — data[0].b64_json holds the base64 image. See the /docs/images guide for full examples.
Yes — it uses the OpenAI Images API. Set base_url=https://api.quicksilverpro.io/v1, use your QSP key, and existing OpenAI-SDK image code works with a one-line change. One key covers both chat and image generation.