Alibaba's Qwen Image 2.0 Pro model offering higher quality image generation with enhanced detail and accuracy
Details
qwen-image-2.0-pro
Providers & Pricing (1)
Qwen Image 2.0 Pro is available exclusively through Alibaba Cloud, starting at $0.075/image.
alibaba/qwen-image-2.0-pro
Qwen Image 2.0 Pro API OpenAI-compatible
https://api.lumenfall.ai/openai/v1
qwen-image-2.0-pro
curl -X POST \
https://api.lumenfall.ai/openai/v1/images/generations \
-H "Authorization: Bearer $LUMENFALL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen-image-2.0-pro",
"prompt": "A serene mountain landscape at sunset",
"size": "1024x1024"
}'
# Response:
# { "created": 1234567890, "data": [{ "url": "https://...", "revised_prompt": "..." }] }
import OpenAI from 'openai';
const client = new OpenAI({
apiKey: 'YOUR_API_KEY',
baseURL: 'https://api.lumenfall.ai/openai/v1'
});
const response = await client.images.generate({
model: 'qwen-image-2.0-pro',
prompt: 'A serene mountain landscape at sunset',
size: '1024x1024'
});
// { created: 1234567890, data: [{ url: "https://...", revised_prompt: "..." }] }
console.log(response.data[0].url);
from openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://api.lumenfall.ai/openai/v1"
)
response = client.images.generate(
model="qwen-image-2.0-pro",
prompt="A serene mountain landscape at sunset",
size="1024x1024"
)
# { created: 1234567890, data: [{ url: "https://...", revised_prompt: "..." }] }
print(response.data[0].url)
Gallery
View all 4 imagesQwen Image 2.0 Pro FAQ
How much does Qwen Image 2.0 Pro cost?
Qwen Image 2.0 Pro starts at $0.075 per image through Lumenfall. Pricing varies by provider. Lumenfall does not add any markup to provider pricing.
How do I use Qwen Image 2.0 Pro via API?
You can use Qwen Image 2.0 Pro through Lumenfall's OpenAI-compatible API. Send requests to the unified endpoint with model ID "qwen-image-2.0-pro". Code examples are available in Python, JavaScript, and cURL.
Which providers offer Qwen Image 2.0 Pro?
Qwen Image 2.0 Pro is available through Alibaba Cloud on Lumenfall. Lumenfall automatically routes requests to the best available provider.
What is the maximum resolution for Qwen Image 2.0 Pro?
Qwen Image 2.0 Pro supports images up to 2048x2048 resolution.
Try Qwen Image 2.0 Pro in Playground
Generate images with custom prompts — no API key needed.