Skip to main content
Wan2.2 T2V A14B is a text-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

  • Text-to-video — Generate video from text descriptions
  • 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-t2v-a14b",
    "prompt": "A cat playing the piano",
    "duration": 5
  }'

# 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-t2v-a14b
promptstringYesVideo description text
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 T2V A14B.