Wan2.7 Image
Qwen
qwen/wan2.7-image
Wan image generation
Context Window
β
Max Output
β
About this model
Wan 2.7 Image is Alibaba Bailian's image generation model supporting multiple resolutions and styles. At just $0.01 per image, it's one of the most affordable image generation options available.
Supports multiple sizes including 1024x1024, 1792x1024, 2048x2048. Called via Bailian DashScope's async task API.
Highlights
$0.01/image ultra-low
Multiple resolutions
Strong Chinese prompts
Async generation
Best For
Batch image generationChinese scene illustrationE-commerce imagesSocial media visuals
2026-04-01Proprietary
Capabilities
Image Gen
Aliases
wan2.7-imagePricing (per 1M tokens)
| Pricing (per 1M tokens) | / 1M tokens |
|---|---|
| Input / 1M | $0.0000 |
| Output / 1M | $0.0000 |
Final prices shown
Quick Start
main.py
from openai import OpenAI client = OpenAI( base_url="https://api.chuizi.ai/v1", api_key="ck-your-key-here", ) response = client.images.generate( model="qwen/wan2.7-image", prompt="A beautiful sunset over mountains", n=1, size="1024x1024", ) print(response.data[0].url)