Wan 2.6
Wan 2.6 is an official Wan video generation model family supporting text-to-video, image-to-video, and video-to-video workflows in one unified async API.
Wan 2.6 Video to Video API
Provide 1 to 3 source videos
Drag and drop a video, or click to browse
Supports MP4, MOV, WebM. Max 10MB.
Describe the target style, motion, or effect
Video length in seconds
Output resolution
Result
Results will appear here
Cost: $0.15/second
Wan 2.6 API Implementation Guide
Get API Key
Generate your API key from the dashboard and set it as an environment variable.
export MODELHUNTER_KEY="your_api_key"Make Your First Call
Follow the API documentation for complete code examples in cURL, JavaScript, and Python, including request format, polling, and error handling.
View API Documentation →Wan 2.6 Key Info
Capabilities
- Text to Video API
- Image to Video API
- Video to Video API
Pricing
Price per second by resolution
| 720p | 1080p |
|---|---|
| $0.1/second | $0.15/second |
$0.1/sec @720p, $0.15/sec @1080p
Output Formats
Wan 2.6 API Documentation
Run the playground first, then open the full API docs for integration details.
About
Transform one to three source videos with a prompt
Code Examples
1curl -X POST https://api.modelhunter.ai/api/v1/wan/video-to-video \2-H "Authorization: Bearer YOUR_API_KEY" \3-H "Content-Type: application/json" \4-d '{5"model": "wan/2-6-video-to-video",6"input": {7"video_urls": [8"https://example.com/image.jpg"9],10"prompt": "A futuristic cityscape at sunset with neon signs",11"duration": "5",12"resolution": "1080p"13}14}'
Schema
View Full API DocsInput
modelModel ID for this capability.
Value: wan/2-6-video-to-video
video_urlsProvide 1 to 3 source videos
promptDescribe the target style, motion, or effect
durationVideo length in seconds
Options: 5, 10
Default: 5
resolutionOutput resolution
Options: 720p, 1080p
Default: 1080p
webhookUrlURL to receive a webhook notification when the task completes.
metadataCustom key-value metadata to attach to the task for tracking.
Response (HTTP 202)
successWhether the request was accepted successfully.
data.idUnique task ID. Use this to poll GET /api/v1/tasks/{id} for results.
data.statusTask status: pending, processing, completed, failed.
data.typeGeneration type: video-to-video.
data.providerProvider name: wan.
data.modelModel ID used for generation.
data.created_atISO 8601 timestamp of when the task was created.
data.estimated_secondsEstimated time in seconds until the task completes.