Wan-R2V

Copied!
Try AIAdd to Compare
Video Generation

Overview

Video Generation

Wan2.7 reference to video, enhanced consistency & performance. Delivering superior stability for characters, props, and scenes. Supports hybrid referencing of up to 5 mixed image/video inputs and audio timbre cloning. Together with core engine upgrades, it achieves unprecedented cinematic expressive power. This version is a snapshot as of June 12, 2026.

Input

TextImageVideoAudio

Output

Video

Features

Prefix Completion

Enable Partial Mode when calling the Qwen API to make the model continue strictly from your provided prefix text.View docs

Function Calling

Use function calling to connect large language models with external tools and systems.View docs

Cache

Context Cache stores shared prefixes for long-context requests to reduce repeated computation, improve latency, and lower cost.View docs

Structured Outputs

Structured Outputs help ensure the model returns a JSON string in the expected format.View docs

Batches

Web Search

Enable web search so the model can answer with real-time retrieved data.View docs

feature.funeTuning

Pricing

  • Video Generation(720P)
    $0.1Per second
  • Video Generation(1080P)
    $0.15Per second

Rate Limits

  • RPMRequests Per Minute
    300
  • Concurrency
    5concurrent
  • Async Queue Limit
    500tasks

API Reference

Get API Key
Copied!
123456789101112131415161718192021222324252627282930
curl --location 'https://dashscope-intl.aliyuncs.com/api/v1/services/aigc/video-generation/video-synthesis' \
    -H 'X-DashScope-Async: enable' \
    -H "Authorization: Bearer $DASHSCOPE_API_KEY" \
    -H 'Content-Type: application/json' \
    -d '{
    "model": "wan2.7-r2v-2026-06-12",
    "input": {
        "prompt": "Video2 holds Image3 and plays a soothing American country folk song in a coffee shop, while video1 smiles at Video2 and slowly walks towards him",
        "media": [
            {
                "type": "reference_video",
                "url": "https://help-static-aliyun-doc.aliyuncs.com/file-manage-files/zh-CN/20260129/hfugmr/wan-r2v-role1.mp4"
            },
            {
                "type": "reference_video",
                "url": "https://help-static-aliyun-doc.aliyuncs.com/file-manage-files/zh-CN/20260129/qigswt/wan-r2v-role2.mp4"
            },
            {
                "type": "reference_image",
                "url": "https://help-static-aliyun-doc.aliyuncs.com/file-manage-files/zh-CN/20260129/qpzxps/wan-r2v-object4.png"
            }
        ]
    },
    "parameters": {
        "resolution": "720P",
        "duration": 10,
        "prompt_extend": false,
        "watermark": true
    }
}'