Skip to main content
Wan2.2 I2V A14B is an image-to-video model available through Starrise AI. Video generation is an asynchronous call — after submitting a task, poll GET /v1/video/generations/{task_id} until status is succeeded.

Key Capabilities

  • Image-to-video — Generate video from an image and text prompt
  • Duration control — 3–5 seconds
  • Custom resolution — Set width × height

Quick Example

# Step 1 — Create task
curl https://ai.alad.com/v1/video/generations \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "wan2.2-i2v-a14b",
    "prompt": "A cat playing the piano",
    "duration": 5,
    "image": "https://example.com/cat.jpg"
  }'

# Step 2 — Poll until complete
curl https://ai.alad.com/v1/video/generations/{TASK_ID} \
  -H "Authorization: Bearer YOUR_API_KEY"

Parameters

ParameterTypeRequiredDescription
modelstringYesMust be wan2.2-i2v-a14b
promptstringYesVideo description text
imagestringYes (i2v)Reference image URL
durationnumberNo3–5 seconds, default 5
widthintegerNoOutput video width (pixels)
heightintegerNoOutput video height (pixels)
seedintegerNoRandom seed for reproducible results
metadataobjectNoExtra parameters passed to upstream API

Task Status

StatusDescription
queuedWaiting in queue
processingVideo generating
succeededComplete — data.url is the video link (valid ~24 hours)
failedFailed — data.error contains the error message

API Reference

View the interactive API Playground for Wan2.2 I2V A14B.