Skip to main content
POST
https://api.muvi.video
/
v1
/
jobs
/
submit
Wan 2.2 Super — Image to Video
curl --request POST \
  --url https://api.muvi.video/v1/jobs/submit \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "model": "<string>",
  "input": {
    "image_url": "<string>",
    "prompt": "<string>",
    "duration": "<string>",
    "quality": "<string>",
    "seed": 123
  }
}
'
{
  "jobId": "<string>",
  "status": "<string>",
  "estimatedCompletionTime": "<string>",
  "costMicroCents": 123
}
Transform static images into dynamic videos with Alibaba’s Wan 2.2 Super model. Fast processing times and affordable pricing.
PropertyValue
ProviderAlibaba
ModelWan 2.2 Super
CapabilityImage to Video
Base Cost45,000 micro-cents/second ($0.045/sec)
Processing Time~30 seconds

Request Body

model
string
required
Model slug. Use alibaba/wan-2.2-super/image-to-video for image-to-video generation.
input
object
required
Input parameters for image-to-video generation.
webhookUrl
string
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
FactorOptionMultiplier
Duration55x
88x
Quality480p1x
720p2x
Default cost: 5 seconds, 480p = 45,000 × 5 × 1 = 225,000 micro-cents ($0.225)

Cost Comparison

ConfigurationCalculationCost
5s, 480p45,000 × 5 × 1225,000 mc ($0.225)
5s, 720p45,000 × 5 × 2450,000 mc ($0.45)
8s, 480p45,000 × 8 × 1360,000 mc ($0.36)
8s, 720p45,000 × 8 × 2720,000 mc ($0.72)

Response

jobId
string
Unique identifier for the submitted job.
status
string
Initial job status. Always "pending" on successful submission.
estimatedCompletionTime
string
ISO 8601 timestamp of the estimated completion time.
costMicroCents
number
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"
    }
  }'