Skip to main content
AlibabaMediumHigh

Wan 2.5 I2V Fast

Fast image-to-video variant of Wan 2.5, optimized for rapid generation of animated videos from still images.

510 credits
per video
Faster generation than Wan 2.5 I2V
Image-to-video animation
Good motion quality
Lip sync support
Cost-effective option

Use with AI Assistant

Copy usage instructions for Claude, ChatGPT, or other AI

llms.txt

Quick Start

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: cdt_your_api_key" \
  -d '{
  "model": "wan-video/wan-2.5-i2v-fast",
  "input": {
    "prompt": "Person nodding gently and blinking naturally, subtle smile, realistic head movement",
    "image_url": "https://example.com/portrait.jpg",
    "aspect_ratio": "9:16",
    "duration": 5
  }
}'

Parameters

ParameterTypeRequiredDefaultDescription
promptstringYes-Text description of the desired motion and animation
image_urlstringYes-Start frame image URL to animate
aspect_ratiostringNo16:9Output aspect ratio
durationintegerNo5Video duration in seconds
seedintegerNo-Random seed for reproducibility

How to Provide File Input

There are 3 ways to provide files for the image_url parameter:

Recommended

Direct Upload (Multipart)

Attach files directly to POST /v1/predictions/upload. No separate upload step needed.

curl -X POST "https://api.core.today/v1/predictions/upload" \
  -H "X-API-Key: cdt_your_api_key" \
  -F "model=wan-video/wan-2.5-i2v-fast" \
  -F 'input={"prompt":"your prompt here"}' \
  -F "file:image_url=@your_file.png"

Image URL

Pass a publicly accessible URL directly. You can also use file_url from the Storage API.

{
  "model": "wan-video/wan-2.5-i2v-fast",
  "input": {
    "prompt": "your prompt here",
    "image_url": "https://example.com/image.jpg"
  }
}
See the File Upload docs for more upload methods including Presigned URLs.

Common Parameters

Common parameters used when calling POST /v1/predictions.

ParameterTypeRequiredDefaultDescription
modelstringYes-Model identifier
inputobjectYes-Object containing the model-specific parameters from the table above
output_folderstringNo-Folder path for output files (max 256 chars, '..' not allowed)
webhook_urlstringNo-Webhook URL to call on completion
is_publicbooleanNofalseIf true, output files are also available via permanent public URLs

Examples

Quick Portrait Test

Fast portrait animation test

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: cdt_your_api_key" \
  -d '{
  "model": "wan-video/wan-2.5-i2v-fast",
  "input": {
    "prompt": "Person nodding gently and blinking naturally, subtle smile, realistic head movement",
    "image_url": "https://example.com/portrait.jpg",
    "aspect_ratio": "9:16",
    "duration": 5
  }
}'

Tips & Best Practices

1Use for rapid iteration before switching to Wan 2.5 I2V for final output
2One-third the credit cost of the standard I2V version
3Ideal for testing different prompts with the same source image
4Same seed produces consistent results across fast and standard models

Use Cases

Quick photo animation tests
Rapid portrait animation
Iterative image-to-video testing
Social media animated content
Batch image animation