Transform static images into dynamic videos with Alibaba’s Wan 2.2 Super model. Fast processing times and affordable pricing.
| Property | Value |
|---|
| Provider | Alibaba |
| Model | Wan 2.2 Super |
| Capability | Image to Video |
| Base Cost | 45,000 micro-cents/second ($0.045/sec) |
| Processing Time | ~30 seconds |
Request Body
Model slug. Use alibaba/wan-2.2-super/image-to-video for image-to-video generation.
Input parameters for image-to-video generation.
URL of the source image to animate.
Text description guiding the animation.
Video duration in seconds. Default: 5. Options: 5, 8.
Output video quality. Default: 480p. Options: 480p, 720p.
Seed for reproducible results. Default: -1 (random).
HTTPS URL to receive a webhook notification when the job completes or fails.
Pricing
Base cost: 45,000 micro-cents per second ($0.045/sec)
finalCost = baseCost × duration × quality
| Factor | Option | Multiplier |
|---|
| Duration | 5 | 5x |
| 8 | 8x |
| Quality | 480p | 1x |
| 720p | 2x |
Default cost: 5 seconds, 480p = 45,000 × 5 × 1 = 225,000 micro-cents ($0.225)
Cost Comparison
| Configuration | Calculation | Cost |
|---|
| 5s, 480p | 45,000 × 5 × 1 | 225,000 mc ($0.225) |
| 5s, 720p | 45,000 × 5 × 2 | 450,000 mc ($0.45) |
| 8s, 480p | 45,000 × 8 × 1 | 360,000 mc ($0.36) |
| 8s, 720p | 45,000 × 8 × 2 | 720,000 mc ($0.72) |
Response
Unique identifier for the submitted job.
Initial job status. Always "pending" on successful submission.
ISO 8601 timestamp of the estimated completion time.
The cost of the job in micro-cents.
Code Examples
curl -X POST https://api.muvi.video/v1/jobs/submit \
-H "Authorization: Bearer $PIXELBYTE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "alibaba/wan-2.2-super/image-to-video",
"input": {
"image_url": "https://example.com/my-image.png",
"prompt": "The flowers in the image gently sway in the wind",
"duration": "5",
"quality": "720p"
}
}'