Fast image-to-video variant of Wan 2.5, optimized for rapid generation of animated videos from still images.
Test this model instantly in the Console Playground โ no code required
Copy usage instructions for Claude, ChatGPT, or other AI
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
}
}'| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
prompt | string | Yes | - | Text description of the desired motion and animation |
seed | integer | No | - | Random seed for reproducibility |
audio | string | No | - | Audio file (wav/mp3, 3-30s, โค15MB) for voice/music synchronization |
image | string | Yes | - | Input image for video generation |
duration | integer | No | 5 | Video duration in seconds 510 |
resolution | string | No | 720p | Video resolution 720p1080p |
negative_prompt | string | No | - | Negative prompt to avoid certain elements |
enable_prompt_expansion | boolean | No | true | If set to true, the prompt optimizer will be enabled |
There are 3 ways to provide files for the audioimage parameters:
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:audio=@your_file.png"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",
"audio": "https://example.com/image.jpg"
}
}Common parameters used when calling POST /v1/predictions.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
model | string | Yes | - | Model identifier |
input | object | Yes | - | Object containing the model-specific parameters from the table above |
output_folder | string | No | - | Folder path for output files (max 256 chars, '..' not allowed) |
webhook_url | string | No | - | Webhook URL to call on completion |
is_public | boolean | No | false | If true, output files are also available via permanent public URLs |
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
}
}'POST /v1/predictions