Qwen-Image-3.0 is the third generation of Alibaba's Qwen image model, and like the 2.0 series it folds generation and instruction-based editing into a single model id rather than splitting them across endpoints.
- Input
- text image
- Output
- image
- Price
- $0.03/image
- Reference image
- $0.003/image
Provider list prices: no platform markup, pay-as-you-go. These are official list prices. Logged-in customers may see effective prices including workspace discounts on /console/pricing.
Price · where it sits among 8 comparable models
The bar shows how this model’s price compares with every other model of the same kind on Synthorai. The cheapest and the most expensive are named at each end. These are base rates; batch, region and cache-write discounts are on the pricing page.
Specs & limits
Image
| Sizes |
|
|---|---|
| Input modes | text-to-image, image editing (1–3 input images) |
| Format | png |
| Images per request | 6 |
| Image capabilities |
|
Model
| Modalities | text + image → image |
|---|
- Third generation of the Qwen-Image family
- the English API reference currently documents the Pro tier of this generation, while the base id is documented on the Chinese reference page
Use qwen-image-3.0 in 30 seconds
OpenAI-compatible: swap the base_url, keep your SDK. POST /v1/images/generations
from openai import OpenAI
client = OpenAI(
base_url="https://synthorai.io/v1",
api_key="sk-syn-...",
)
resp = client.images.generate(
model="qwen-image-3.0",
prompt="a watercolor lighthouse at dawn",
size="1024x1024",
)
print(resp.data[0].b64_json[:80])import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://synthorai.io/v1",
apiKey: "sk-syn-...",
});
const resp = await client.images.generate({
model: "qwen-image-3.0",
prompt: "a watercolor lighthouse at dawn",
size: "1024x1024",
});
console.log(resp.data?.[0]?.b64_json?.slice(0, 80));curl https://synthorai.io/v1/images/generations \
-H "Authorization: Bearer sk-syn-..." \
-H "Content-Type: application/json" \
-d '{
"model": "qwen-image-3.0",
"prompt": "a watercolor lighthouse at dawn",
"size": "1024x1024"
}'package main
import (
"context"
"fmt"
"github.com/openai/openai-go/v3"
"github.com/openai/openai-go/v3/option"
)
func main() {
client := openai.NewClient(
option.WithBaseURL("https://synthorai.io/v1"),
option.WithAPIKey("sk-syn-..."),
)
resp, _ := client.Images.Generate(context.TODO(), openai.ImageGenerateParams{
Model: "qwen-image-3.0",
Prompt: "a watercolor lighthouse at dawn",
Size: "1024x1024",
})
fmt.Println(resp.Data[0].B64JSON[:80])
}import com.openai.client.OpenAIClient;
import com.openai.client.okhttp.OpenAIOkHttpClient;
import com.openai.models.images.*;
OpenAIClient client = OpenAIOkHttpClient.builder()
.baseUrl("https://synthorai.io/v1")
.apiKey("sk-syn-...")
.build();
ImagesResponse resp = client.images().generate(
ImageGenerateParams.builder()
.model("qwen-image-3.0")
.prompt("a watercolor lighthouse at dawn")
.size("1024x1024")
.build());
System.out.println(resp.data().orElseThrow().get(0).b64Json().orElseThrow().substring(0, 80));About qwen-image-3.0
- The official documentation describes a synchronous request carrying a prompt and, for editing, one to three reference images; when no size is supplied the model recommends a resolution itself.
- Total output pixels are documented from 512x512 to 2048x2048 with aspect ratios from 1:8 to 8:1, results come back as PNG, and a single call returns one to six images.
- One billing detail is new to this generation and worth planning around: reference images passed in for editing are metered separately from the images the model generates, so an edit carrying three references costs more than a plain text-to-image call at the same output count.
- Synthorai serves it through the OpenAI-compatible image generation endpoint.
FAQ
Is the qwen-image-3.0 API free to try?
Yes: new accounts get 10 trial calls and up to $1 in free credit, no card required. That's enough to try qwen-image-3.0 against your real workload before adding a payment method.
What is qwen-image-3.0 best at?
Generation and instruction editing under one model id; 1-3 reference images for guided edits; PNG output, 1-6 images per request. See the About section for the full picture from the vendor's own release notes.
How much does qwen-image-3.0 cost?
qwen-image-3.0 costs $0.03 per generated image on Synthorai: pay-as-you-go, no platform markup, no subscription.
How do I generate images with the qwen-image-3.0 API?
POST to /v1/images/generations on Synthorai with model="qwen-image-3.0". It follows the OpenAI images API shape, so no vendor SDK is needed. Supported sizes: custom WxH (total pixels 512x512 – 2048x2048), aspect ratio 1:8 – 8:1, resolution auto-recommended when size is omitted.
How do I get access to qwen-image-3.0?
Point your existing OpenAI SDK at base_url="https://synthorai.io/v1", set model="qwen-image-3.0", and you're done. One API key covers every model on the gateway.
Related models
Every value on this page is transcribed from the vendor's own documentation, linked above, and carries the date it was checked. Prices are compared across the catalogue; specification values that vendors define differently are shown with the difference stated rather than charted. Nothing here is measured by us, and nothing is scored.