AlibabaPaidOperational
Qwen Image
API model name: qwen-image
Qwen Image 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
Billed per generation — see the pricing page for current rates.
Specifications
- Provider
- Alibaba
- Type
- image generation model
What is Qwen Image used for?
- Image generation — marketing visuals, concept art, product shots and illustrations.
Related models
Qwen Image 2.0Alibaba · $55.68 / 1MQwen 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 — frequently asked questions
- How much does Qwen Image cost?
- Qwen Image is billed per generation rather than per token. See the pricing page for the current rate.
- What can Qwen Image do?
- Qwen Image is Alibaba's image generation model, accessible through the Api.Airforce API.
- Is Qwen Image free to use?
- Qwen Image is a paid, pay-as-you-go model — no subscription, you are only charged for usage.
- How do I use Qwen Image via the API?
- Qwen Image is OpenAI-compatible. Point any OpenAI SDK at https://api.airforce/v1 and pass the model ID qwen-image with your Api.Airforce API key.
- Who makes Qwen Image?
- Qwen Image 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 via the API
OpenAI-compatible — point any OpenAI SDK at https://api.airforce/v1 and pass qwen-image 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",
"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", 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", prompt: "a red panda coding" });
console.log(img.data[0].url);