Generate AI videos quickly using Wan 2.5 Fast with text-to-video and image-to-video capabilities. Optimized for speed with 720p-1080p resolution.

Model

wan-ai/wan-2.5-fast

Parameters

ParameterTypeRequiredDescription
promptstringYesText description of the video
image_urlstringNoReference image URL (optional for text-to-video)
resolutionstringNo720p or 1080p (default: 720p)
durationintegerNo5 or 10 seconds (default: 5)
aspect_ratiostringNo16:9 or 9:16
motion_idstringNoMotion preset ID
seedintegerNoSeed for reproducibility
Wan 2.5 Fast does not support 480p resolution. Use Wan 2.5 (non-fast) for 480p.

Resources

Get available motion presets from the Resources API:
GET /v1/resources/wan-ai/motions/wan-2.5

Example - Text-to-Video

curl -X POST https://api.unifically.com/v1/tasks \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "wan-ai/wan-2.5-fast",
    "input": {
      "prompt": "Sunset over ocean waves",
      "resolution": "720p",
      "duration": 5,
      "aspect_ratio": "16:9"
    }
  }'

Example - Image-to-Video

curl -X POST https://api.unifically.com/v1/tasks \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "wan-ai/wan-2.5-fast",
    "input": {
      "prompt": "Animate this scene with gentle movement",
      "image_url": "https://example.com/scene.jpg",
      "resolution": "1080p",
      "duration": 10,
      "aspect_ratio": "16:9"
    }
  }'

Response

{
  "code": 200,
  "success": true,
  "data": {
    "task_id": "abc123def456",
    "status": "pending"
  }
}

Pricing

DurationResolutionPrice
5s720p$0.16
5s1080p$0.26
10s720p$0.36
10s1080p$0.50