/APIXO Docs

Wan 2.5

Fast, affordable video generation with configurable resolution and duration

Wan 2.5

Cost-effective video generation with flexible options.

Model ID
wan-2-5
Price
$0.08-0.13/second
Speed
100-250 seconds
Type
Video

Pricing

ResolutionPrice/second5s Video10s Video
720p$0.08$0.40$0.80
1080p$0.13$0.65$1.30

Parameters

For common parameters (request_type, callback_url), see Request Format.

ParameterTypeRequiredDefaultDescription
modestringYes-text-to-video or image-to-video
promptstringYes-Video description (max 800 characters)
image_urlstringNo-Starting image (max 10MB)
resolutionstringYes720p720p or 1080p
durationstringYes5Video length: 5 or 10 seconds
aspect_ratiostringNo1:116:9, 9:16, 1:1 (text-to-video only)
negative_promptstringNo-Content to avoid (max 500 characters)
enable_prompt_expansionbooleanNotrueAI prompt enhancement
seedintegerNo-For reproducibility

Examples

Text to Video (720p)

curl -X POST https://api.apixo.ai/api/v1/generateTask/wan-2-5 \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "request_type": "async",
    "input": {
      "mode": "text-to-video",
      "prompt": "Ocean waves crashing on a sandy beach at sunset",
      "resolution": "720p",
      "duration": "5",
      "aspect_ratio": "16:9"
    }
  }'

Image to Video (1080p)

curl -X POST https://api.apixo.ai/api/v1/generateTask/wan-2-5 \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "request_type": "async",
    "input": {
      "mode": "image-to-video",
      "prompt": "Add flowing water movement and swaying trees",
      "image_url": "https://example.com/landscape.jpg",
      "resolution": "1080p",
      "duration": "10"
    }
  }'

Tips

  • Polling: Wait 100 seconds, then poll every 10 seconds
  • Timeout: Set max wait to 10 minutes
  • aspect_ratio only applies to text-to-video mode
  • Use 720p for drafts, 1080p for final output
  • Use negative_prompt to avoid unwanted elements

On this page