# Qwen Image 2.0 > Alibaba's Qwen Image 2.0 model with enhanced text rendering, supporting both Chinese and English prompts with up to 6 images per request ## Quick Reference - Model ID: qwen-image-2.0 - Creator: Alibaba - Status: active - Family: qwen - Base URL: https://api.lumenfall.ai/openai/v1 ## Specifications - Max Resolution: 2048x2048 - Input Modalities: text - Output Modalities: image ## Model Identifiers - Primary Slug: qwen-image-2.0 ## Dates - Released: February 2026 ## Tags image-generation, text-to-image ## Available Providers ### Alibaba Cloud - Config Key: alibaba/qwen-image-2.0 - Provider Model ID: qwen-image-2.0 - Pricing: $0.035/image - Source: https://modelstudio.console.alibabacloud.com/ap-southeast-1?tab=doc#/doc/?type=model&url=2840914_2&modelId=group-qwen-image-2.0 ## Image Gallery 4 images available for this model. - Curated examples: 4 - "A wide, cinematic shot of a high-end, contemporary atelier located in a sun-drenched Mediterranean villa. In the cent..." - "A hyper-realistic close-up of an elderly craftsman's weathered hands meticulously assembling a delicate mechanical wa..." - "A hyper-realistic close-up of an elderly craftsman's weathered hands meticulously assembling a vintage mechanical wat..." - "A cozy street-side lemonade stand with a hand-painted wooden sign that says "FRESH & ZESTY" in elegant cursive. A you..." ## Example Prompt The following prompt was used to generate an example image in our playground: A cozy street-side lemonade stand with a hand-painted wooden sign that says "FRESH & ZESTY" in elegant cursive. A young girl serves a glass, while a capybara calmly sits in the soft grass behind the stand, wearing a tiny yellow bowtie. ## Code Examples ### Text to Image (Generation) #### cURL 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", "prompt": "A serene mountain landscape at sunset", "size": "1024x1024" }' # Response: # { "created": 1234567890, "data": [{ "url": "https://...", "revised_prompt": "..." }] } #### JavaScript 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', prompt: 'A serene mountain landscape at sunset', size: '1024x1024' }); // { created: 1234567890, data: [{ url: "https://...", revised_prompt: "..." }] } console.log(response.data[0].url); #### Python 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", prompt="A serene mountain landscape at sunset", size="1024x1024" ) # { created: 1234567890, data: [{ url: "https://...", revised_prompt: "..." }] } print(response.data[0].url) ## Frequently Asked Questions ### How much does Qwen Image 2.0 cost? Qwen Image 2.0 starts at $0.035 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 via API? You can use Qwen Image 2.0 through Lumenfall's OpenAI-compatible API. Send requests to the unified endpoint with model ID "qwen-image-2.0". Code examples are available in Python, JavaScript, and cURL. ### Which providers offer Qwen Image 2.0? Qwen Image 2.0 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? Qwen Image 2.0 supports images up to 2048x2048 resolution. ## Links - Model Page: https://lumenfall.ai/models/alibaba/qwen-image-2.0 - About: https://lumenfall.ai/models/alibaba/qwen-image-2.0/about - Providers, Pricing & Performance: https://lumenfall.ai/models/alibaba/qwen-image-2.0/providers - API Reference: https://lumenfall.ai/models/alibaba/qwen-image-2.0/api - Benchmarks: https://lumenfall.ai/models/alibaba/qwen-image-2.0/benchmarks - Use Cases: https://lumenfall.ai/models/alibaba/qwen-image-2.0/use-cases - Gallery: https://lumenfall.ai/models/alibaba/qwen-image-2.0/gallery - Playground: https://lumenfall.ai/playground?model=qwen-image-2.0 - API Documentation: https://docs.lumenfall.ai