Wan 2.2 Plus
wan2.2-t2v-plus
Wan 2.2 Plus generates high-quality video from text prompts and supports up to 1080p resolution with generation controls.
Endpoints
Section titled “Endpoints”POST /v1/queue/wan2.2-t2v-plus # Create taskGET /v1/queue/wan2.2-t2v-plus/requests/{request_id}/status # Check statusGET /v1/queue/wan2.2-t2v-plus/requests/{request_id}/response # Get resultPUT /v1/queue/wan2.2-t2v-plus/requests/{request_id}/cancel # Cancel taskRequest parameters
Section titled “Request parameters”curl --location "https://odirouter.ai/model/v1/queue/wan2.2-t2v-plus" \ --header "Authorization: Bearer YOUR_API_KEY" \ --header "Content-Type: application/json" \ --data '{ "prompt": "A red apple slowly rotating on a white table, clean studio lighting, static camera.", "duration": 5, "prompt_extend": true, "watermark": false, "seed": 12345 }'Text prompt describing the expected elements and visual characteristics in the generated video. Chinese and English are supported. For wan2.2 series models, the length must not exceed 800 characters; extra content is automatically truncated.
Example: 一只小猫在月光下奔跑
For wan2.2-t2v-plus, duration is fixed at 5 seconds and cannot be changed.
Fixed value: 5
Whether to enable intelligent prompt rewriting. When enabled, a large model rewrites the input prompt, which can significantly improve short-prompt results but increases latency.
Options: true, false
Default: true
Random seed. If omitted, the system automatically generates a random seed. Fixing seed can improve reproducibility, but the same seed does not guarantee identical results every time.
Range: 0 - 2147483647
Whether to add a watermark in the lower-right corner of the video. The fixed watermark text is AI生成.
Options: false, true
Default: false
Response parameters
Section titled “Response parameters”{ "request_id": "mmsu_01hxyz...", "response_url": "https://odirouter.ai/model/v1/queue/wan2.2-t2v-plus/requests/mmsu_01hxyz.../response", "status_url": "https://odirouter.ai/model/v1/queue/wan2.2-t2v-plus/requests/mmsu_01hxyz.../status", "cancel_url": "https://odirouter.ai/model/v1/queue/wan2.2-t2v-plus/requests/mmsu_01hxyz.../cancel", "queue_position": 0}| Field | Type | Description |
|---|---|---|
request_id | string | Task ID used for all follow-up operations. |
response_url | string | URL to fetch the final result. |
status_url | string | URL to query task status. |
cancel_url | string | URL to cancel the task. |
queue_position | int | Current queue position. |