# Qwen Image Max > The Max series of Tongyi Qwen’s image generation model excels across a wide range of generation tasks. Compared with the Plus series, it significantly reduces the “AI-like” feel in generated images, enhancing their realism. It delivers more lifelike material textures for human subjects, finer and more detailed natural textures, and more visually appealing text rendering. ## Quick Reference - Model ID: qwen-image-max - Creator: Alibaba - Status: active - Family: qwen - Base URL: https://api.lumenfall.ai/openai/v1 ## Specifications - Input Modalities: text - Output Modalities: image - Supported Modes: Text to Image ## API Parameters The compiled parameter schema for this model is available via the API: `GET /v1/models/qwen-image-max?schema=true`. ### Core Parameters - `prompt` (string) — REQUIRED: Text prompt for image generation ### Size & Layout - `size` (string): Image dimensions as WxH pixels (e.g. "1024x1024") or aspect ratio (e.g. "16:9") - `aspect_ratio` (string): Aspect ratio of the output image (e.g. "16:9", "1:1") - `resolution` (string): Output resolution tier (e.g. "1K", "4K") ### Output & Format - `response_format` (string): How to return the image. Default: url. Values: url, b64_json - `output_format` (string): Output image format. Values: png, jpeg, gif, webp, avif - `output_compression` (integer): Compression level for lossy formats (JPEG, WebP, AVIF) - `n` (integer): Number of images to generate. Default: 1 ## Model Identifiers - Primary Slug: qwen-image-max - Aliases: qwen-image-max-2025-12-30 ## Dates - Released: December 2025 ## Tags image-generation ## Available Providers ### Alibaba Cloud - Config Key: alibaba/qwen-image-max - Provider Model ID: qwen-image-max - Pricing: $0.075/image - Source: https://modelstudio.console.alibabacloud.com/ap-southeast-1?tab=doc#/doc/?type=model&url=2840914_2&modelId=group-qwen-image-max ## Arena Benchmarks ### Magic Burger Explosion: Fiery Photorealism Challenge - Elo: 1090 - Record: 4W / 5L / 1T (10 battles) - Rank: #12 of 19 ## Use Cases & Category Performance ### Product, Branding & Commercial (Text-to-Image) - Rank: #21 of 28 - Elo: 1149 - Record: 4W / 5L / 1T (10 battles) - Win Rate: 40.0% ### Text Rendering (Text-to-Image) - Rank: #27 of 35 - Elo: 1161 - Record: 4W / 5L / 1T (10 battles) - Win Rate: 40.0% ### Photorealism (Text-to-Image) - Rank: #29 of 37 - Elo: 1158 - Record: 4W / 5L / 1T (10 battles) - Win Rate: 40.0% ## Image Gallery 5 images available for this model. Browse all at https://lumenfall.ai/models/alibaba/qwen-image-max/gallery ### Curated Examples - [A wide, cinematic shot of a master craftsman in a sun-drenched, dusty Tuscan workshop, meticulous...](https://assets.lumenfall.ai/8HMsEtCj0fhlqa6UAoXWUI1URXYQ8gLfLNe4QIRwIjc/rs:fit:1500:1500/plain/gs://lumenfall-prod-assets/pegy4105yhqvzdn2384xgbohlhf3@jpeg) - [A hyper-realistic close-up portrait of a weathered artisan woodworker in a sun-drenched Mediterra...](https://assets.lumenfall.ai/2yy0Tw0jUVrFbSsDkz6iJsMOQrPccmzOnqCYpKVbLgo/rs:fit:1500:1500/plain/gs://lumenfall-prod-assets/ad4c0pvp89ppgid5t4j5vfucnrgp@jpeg) - [Cinematic wide shot of a master woodworker's sun-drenched atelier, dust motes dancing in the ligh...](https://assets.lumenfall.ai/VT7OIQNSpbJcTEzYKgQc9QqciYhMP2Uhp3upXRKRMMc/rs:fit:1500:1500/plain/gs://lumenfall-prod-assets/z3izbgnz6xh12rz2lg4bq3anuqq1@jpeg) - [A sun-drenched Mediterranean villa balcony overlooking a turquoise sea, featuring intricate mosai...](https://assets.lumenfall.ai/SHVTJ13E3Rrs-PAe_XswIaicHKTJNiyws6fRq2WQ5PE/rs:fit:1500:1500/plain/gs://lumenfall-prod-assets/7rgzze2fcd91sxqlkzqfib7gmxj3@jpeg) ### Arena Competition Results - [Magic Burger Explosion: Fiery Photorealism Challenge](https://assets.lumenfall.ai/tuWivuzHd5uKzCBuheQNfugnchEeAmAjIguZoiju8K8/rs:fit:1500:1500/plain/gs://lumenfall-prod-assets/bpeimq19ngujh881b6ccm45wc3cr@jpeg): #12 of 19 (Elo 1090) ## Example Prompt The following prompt was used to generate an example image in our playground: A sun-drenched Mediterranean villa balcony overlooking a turquoise sea, featuring intricate mosaic tiles and lush bougainvillea. A rustic wooden table holds fresh citrus and espresso. In the distant garden below, a capybara naps by a fountain. ## Code Examples ### Text to Image (/v1/images/generations) #### 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-max", "prompt": "", "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-max', prompt: '', 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-max", prompt="", size="1024x1024" ) # { created: 1234567890, data: [{ url: "https://...", revised_prompt: "..." }] } print(response.data[0].url) ## Frequently Asked Questions ### How much does Qwen Image Max cost? Qwen Image Max 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 Max via API? You can use Qwen Image Max through Lumenfall's OpenAI-compatible API. Send requests to the unified endpoint with model ID "qwen-image-max". Code examples are available in Python, JavaScript, and cURL. ### Which providers offer Qwen Image Max? Qwen Image Max is available through Alibaba Cloud on Lumenfall. Lumenfall automatically routes requests to the best available provider. ## Links - Model Page: https://lumenfall.ai/models/alibaba/qwen-image-max - About: https://lumenfall.ai/models/alibaba/qwen-image-max/about - Providers, Pricing & Performance: https://lumenfall.ai/models/alibaba/qwen-image-max/providers - API Reference: https://lumenfall.ai/models/alibaba/qwen-image-max/api - Benchmarks: https://lumenfall.ai/models/alibaba/qwen-image-max/benchmarks - Use Cases: https://lumenfall.ai/models/alibaba/qwen-image-max/use-cases - Gallery: https://lumenfall.ai/models/alibaba/qwen-image-max/gallery - Playground: https://lumenfall.ai/playground?model=qwen-image-max - API Documentation: https://docs.lumenfall.ai