Cinematic-grade video generation with enhanced motion and scene coherence. Top-tier Kling model for professional 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": "kwaivgi/kling-v2.5-turbo-pro",
"input": {
"prompt": "A samurai drawing a katana in slow motion, cherry blossoms falling, dramatic side lighting, cinematic depth of field, film grain",
"duration": "5",
"aspect_ratio": "16:9",
"cfg_scale": "0.6"
}
}'| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
prompt | string | Yes | - | Text description of the video to generate |
image_url | string | No | - | Starting image URL for image-to-video |
duration | integer | No | 5 | Video duration in seconds (5 or 10) 510 |
aspect_ratio | string | No | 16:9 | Output aspect ratio 16:99:161:1 |
cfg_scale | float | No | 0.5 | Prompt adherence (0.0-1.0) |
There are 3 ways to provide files for the image_url parameter:
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=kwaivgi/kling-v2.5-turbo-pro" \
-F 'input={"prompt":"your prompt here"}' \
-F "file:image_url=@your_file.png"Pass a publicly accessible URL directly. You can also use file_url from the Storage API.
{
"model": "kwaivgi/kling-v2.5-turbo-pro",
"input": {
"prompt": "your prompt here",
"image_url": "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 |
Dynamic cinematic action sequence
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "kwaivgi/kling-v2.5-turbo-pro",
"input": {
"prompt": "A samurai drawing a katana in slow motion, cherry blossoms falling, dramatic side lighting, cinematic depth of field, film grain",
"duration": "5",
"aspect_ratio": "16:9",
"cfg_scale": "0.6"
}
}'Premium brand advertisement video
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "kwaivgi/kling-v2.5-turbo-pro",
"input": {
"prompt": "Close-up of a luxury watch with water droplets on its surface, dramatic macro lens, smooth rotating camera, premium commercial feel",
"duration": "10",
"aspect_ratio": "16:9",
"cfg_scale": "0.5"
}
}'POST /v1/predictions