AlibabaPaidOperational
Qwen Image 2.0
API model name: qwen-image-2.0
Qwen Image 2.0 is Alibaba's image generation model, served on the Api.Airforce unified API. Access it through the OpenAI-compatible API with one key, alongside 65+ other models on Api.Airforce.
Pricing
Resolutions: 1:1, 16:9, 9:16
Qualities: standard
Specifications
- Provider
- Alibaba
- Type
- image generation model
What is Qwen Image 2.0 used for?
- Image generation — marketing visuals, concept art, product shots and illustrations.
Related models
Qwen ImageAlibabaQwen Image EditAlibabaQwen MaxAlibaba · $0.51 / 1MQwen PlusAlibaba · $0.18 / 1MQwen TurboAlibabaQwen3Alibaba · $0.06 / 1MQwen3 0.6bAlibaba · $0.06 / 1MQwen3 1.7bAlibaba · $0.06 / 1MQwen3 14bAlibaba · $0.21 / 1MQwen3 235b A22bAlibaba · $0.42 / 1MQwen3 30b A3bAlibaba · $0.15 / 1MQwen3 32bAlibaba · $0.42 / 1M
Qwen Image 2.0 — frequently asked questions
- How much does Qwen Image 2.0 cost?
- Qwen Image 2.0 is billed per generation rather than per token. See the pricing page for the current rate.
- What can Qwen Image 2.0 do?
- Qwen Image 2.0 is Alibaba's image generation model, accessible through the Api.Airforce API.
- Is Qwen Image 2.0 free to use?
- Qwen Image 2.0 is a paid, pay-as-you-go model — no subscription, you are only charged for usage.
- How do I use Qwen Image 2.0 via the API?
- Qwen Image 2.0 is OpenAI-compatible. Point any OpenAI SDK at https://api.airforce/v1 and pass the model ID qwen-image-2.0 with your Api.Airforce API key.
- Who makes Qwen Image 2.0?
- Qwen Image 2.0 is Alibaba's image generation model, served through the unified Api.Airforce gateway alongside 65+ other models.
Loading live metrics…
Loading live metrics…
Use Qwen Image 2.0 via the API
OpenAI-compatible — point any OpenAI SDK at https://api.airforce/v1 and pass qwen-image-2.0 as the model.
cURL
curl https://api.airforce/v1/images/generations \
-H "Authorization: Bearer $AIRFORCE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen-image-2.0",
"prompt": "a red panda coding"
}'Python
from openai import OpenAI
client = OpenAI(base_url="https://api.airforce/v1", api_key="$AIRFORCE_API_KEY")
img = client.images.generate(model="qwen-image-2.0", prompt="a red panda coding")
print(img.data[0].url)JavaScript
import OpenAI from "openai";
const client = new OpenAI({ baseURL: "https://api.airforce/v1", apiKey: process.env.AIRFORCE_API_KEY });
const img = await client.images.generate({ model: "qwen-image-2.0", prompt: "a red panda coding" });
console.log(img.data[0].url);