Image generation API
Qwen Image
Alibaba Qwen Image family — text-to-image and editing with Max, Plus, and standard variants.
Provider: Alibaba / Qwen9 models
Available models
| Model key | Display name | Capability | Atlas Cloud slug |
|---|---|---|---|
qwen_image_2_0_pro_t2i | Qwen Image 2.0 Pro T2I | text-to-image | qwen/qwen-image-2.0-pro/text-to-image |
qwen_image_2_0_pro_edit | Qwen Image 2.0 Pro Edit | edit | qwen/qwen-image-2.0-pro/edit |
qwen_image_2_0_t2i | Qwen Image 2.0 T2I | text-to-image | qwen/qwen-image-2.0/text-to-image |
qwen_image_2_0_edit | Qwen Image 2.0 Edit | edit | qwen/qwen-image-2.0/edit |
qwen_image_t2i_max | Qwen Image T2I Max | text-to-image | alibaba/qwen-image/text-to-image-max |
qwen_image_t2i_plus | Qwen Image T2I Plus | text-to-image | alibaba/qwen-image/text-to-image-plus |
qwen_image_edit_plus | Qwen Image Edit Plus | edit | alibaba/qwen-image/edit-plus |
qwen_image_edit | Qwen Image Edit | edit | alibaba/qwen-image/edit |
qwen_image_t2i | Qwen Image T2I | text-to-image | atlascloud/qwen-image/text-to-image |
Endpoint
POST /api/generateRequest body
| Parameter | Type | Required | Description |
|---|---|---|---|
modelKey | string | ✓ | One of the model keys listed above |
prompt | string | ✓ | Text description of the image to generate |
inputUrl | string | Input image URL (for edit/i2i models) | |
aspectRatio | string | "1:1", "16:9", "9:16", etc. | |
imageQuality | string | "Low", "Medium", "High" | |
styleRef | string | string[] | Style reference image URL(s) | |
charRef | string | string[] | Character reference image URL(s) | |
brandId | string | Brand DNA ID for brand-consistent generation |
Code example
curl -X POST https://api.oyefilmy.com/api/generate \
-H "Authorization: Bearer of_live_YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"modelKey": "qwen_image_2_0_pro_t2i",
"prompt": "An elegant watercolor painting of cherry blossoms falling over a serene mountain lake"
}'Response
{
"success": true,
"predictionId": "pred_abc123...",
"status": "processing",
"model": "qwen/qwen-image-2.0-pro/text-to-image",
"creditCost": 5
}Qwen Image 2.0 Pro delivers highest quality. Max and Plus tiers offer different quality/speed tradeoffs.

