Fast text-to-video generation variant of Wan 2.5, optimized for speed with good quality output.
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-t2v-fast",
"input": {
"prompt": "Colorful autumn leaves falling in a park, gentle breeze, warm sunlight filtering through trees, peaceful atmosphere",
"aspect_ratio": "16:9",
"duration": 5
}
}'| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
prompt | string | Yes | - | Text description of the video to generate |
aspect_ratio | string | No | 16:9 | Output aspect ratio 16:99:161:1 |
duration | integer | No | 5 | Video duration in seconds |
seed | integer | No | - | Random seed for reproducibility |
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 text-to-video generation
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-t2v-fast",
"input": {
"prompt": "Colorful autumn leaves falling in a park, gentle breeze, warm sunlight filtering through trees, peaceful atmosphere",
"aspect_ratio": "16:9",
"duration": 5
}
}'POST /v1/predictions