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