- Third-party
- Zero data retention
Alibaba's Wan 2.6 text-to-image model generating images from text prompts with optional negative prompts and customizable dimensions.
| Model Info | |
|---|---|
| Terms and License | link ↗ |
| More information | link ↗ |
| Zero data retention | Yes |
| Pricing | View pricing in the Cloudflare dashboard ↗ |
Usage
const response = await env.AI.run(
'alibaba/wan-2.6-image',
{ prompt: 'A golden retriever puppy playing in autumn leaves' },
)
console.log(response)curl https://api.cloudflare.com/client/v4/accounts/$CLOUDFLARE_ACCOUNT_ID/ai/run \
--header "Authorization: Bearer $CLOUDFLARE_API_TOKEN" \
--header "Content-Type: application/json" \
--data '{
"model": "alibaba/wan-2.6-image",
"input": {
"prompt": "A golden retriever puppy playing in autumn leaves"
}
}'
{
"gatewayMetadata": {
"keySource": "Unified"
},
"result": {
"image": "https://dashscope-463f.oss-accelerate.aliyuncs.com/1d/66/20260417/c057796c/32701268-BbftSa6r_189314ac1a36.png"
},
"state": "Completed"
}Examples
Custom Dimensions — Specify image size in WxH format
const response = await env.AI.run(
'alibaba/wan-2.6-image',
{
prompt:
'A vast alien desert landscape with two suns setting on the horizon, ancient ruins in the foreground',
size: '1024x768',
},
)
console.log(response)curl https://api.cloudflare.com/client/v4/accounts/$CLOUDFLARE_ACCOUNT_ID/ai/run \
--header "Authorization: Bearer $CLOUDFLARE_API_TOKEN" \
--header "Content-Type: application/json" \
--data '{
"model": "alibaba/wan-2.6-image",
"input": {
"prompt": "A vast alien desert landscape with two suns setting on the horizon, ancient ruins in the foreground",
"size": "1024x768"
}
}'
{
"gatewayMetadata": {
"keySource": "Unified"
},
"result": {
"image": "https://dashscope-463f.oss-accelerate.aliyuncs.com/1d/35/20260417/c057796c/3257252-vy1GbNI6_bc223e38c5b4.png"
},
"state": "Completed"
}Square Format — Square image for social media or product photos
const response = await env.AI.run(
'alibaba/wan-2.6-image',
{
prompt:
'A sleek wireless headphone on a minimalist white marble surface with soft studio lighting',
size: '1024x1024',
},
)
console.log(response)curl https://api.cloudflare.com/client/v4/accounts/$CLOUDFLARE_ACCOUNT_ID/ai/run \
--header "Authorization: Bearer $CLOUDFLARE_API_TOKEN" \
--header "Content-Type: application/json" \
--data '{
"model": "alibaba/wan-2.6-image",
"input": {
"prompt": "A sleek wireless headphone on a minimalist white marble surface with soft studio lighting",
"size": "1024x1024"
}
}'
{
"gatewayMetadata": {
"keySource": "Unified"
},
"result": {
"image": "https://dashscope-463f.oss-accelerate.aliyuncs.com/1d/84/20260417/c057796c/18355039-RFkWcHgG_0dcb1c1d6d95.png"
},
"state": "Completed"
}Negative Prompt — Guide generation away from unwanted elements
const response = await env.AI.run(
'alibaba/wan-2.6-image',
{
prompt: 'A detailed oil painting portrait of a Renaissance nobleman with intricate lace collar',
negative_prompt: 'modern clothing, photograph, blurry, low quality',
},
)
console.log(response)curl https://api.cloudflare.com/client/v4/accounts/$CLOUDFLARE_ACCOUNT_ID/ai/run \
--header "Authorization: Bearer $CLOUDFLARE_API_TOKEN" \
--header "Content-Type: application/json" \
--data '{
"model": "alibaba/wan-2.6-image",
"input": {
"prompt": "A detailed oil painting portrait of a Renaissance nobleman with intricate lace collar",
"negative_prompt": "modern clothing, photograph, blurry, low quality"
}
}'
{
"gatewayMetadata": {
"keySource": "Unified"
},
"result": {
"image": "https://dashscope-463f.oss-accelerate.aliyuncs.com/1d/53/20260417/c057796c/26097304-eVhNm6uS_edc041cd5e2b.png"
},
"state": "Completed"
}Portrait Format — Tall vertical image for portraits
const response = await env.AI.run(
'alibaba/wan-2.6-image',
{
prompt: 'An elegant Art Deco poster featuring a jazz singer under a spotlight',
size: '768x1024',
},
)
console.log(response)curl https://api.cloudflare.com/client/v4/accounts/$CLOUDFLARE_ACCOUNT_ID/ai/run \
--header "Authorization: Bearer $CLOUDFLARE_API_TOKEN" \
--header "Content-Type: application/json" \
--data '{
"model": "alibaba/wan-2.6-image",
"input": {
"prompt": "An elegant Art Deco poster featuring a jazz singer under a spotlight",
"size": "768x1024"
}
}'
{
"gatewayMetadata": {
"keySource": "Unified"
},
"result": {
"image": "https://dashscope-463f.oss-accelerate.aliyuncs.com/1d/5a/20260417/c057796c/79957405-YTXQsRY6_8d8a6631f1d6.png"
},
"state": "Completed"
}Parameters
prompt
stringrequiredsize
stringpattern: ^\d+x\d+$negative_prompt
stringimage
stringformat: uri