Kling 3.0 Turbo Image to Video API
/v1/tasks All models are called through the Unified Async API POST /v1/tasks endpoint; only the input fields differ (see input parameters below).
Model summary
| Model name | kling-3.0-turbo/image-to-video |
|---|---|
| Type | Video generation (image-to-video) |
| Endpoint | POST /v1/tasks |
| Pricing | See HiAPI Pricing |
Kling 3.0 Turbo image-to-video: first-frame driven speed tier — 3-15s, 720p/1080p, per-second tiered billing.
Production guidance
- For production, pass callback.url at the top level of the request body so HiAPI can notify your service when the task reaches a terminal state.
- GET /v1/tasks/:id is better for local debugging, low-volume jobs, or fallback reconciliation if a callback is missed.
- Use callback.when=final. Both success and fail are terminal states, so your service should deduplicate by taskId.
Best suited for
First-frame driven — keeps subject and framing while bringing images to life.
image_urlspromptBilled per second, pick the length you need.
durationCheaper than the flagship for batch image-to-video.
resolutionRequest parameters
model string required Fixed value kling-3.0-turbo/image-to-video.
input object required Business parameters. Put Kling 3.0 Turbo Image to Video-specific configuration here.
prompt string required Text description of the video to generate. Max 2500 characters. Supports dialogue lines in quotes for lip-synced speech.
duration integer optional Duration of the generated video in seconds (3-15).
resolution enum optional Resolution of the generated video.
image_urls string[] required First-frame image URL (single image). jpeg/png (SVG not supported), max 10MB.
callback object optional Optional callback configuration. When set, HiAPI notifies your service when the task reaches a terminal state.
url string required Required when callback is set; HTTPS URL that receives terminal task notifications.
when enum optional Callback trigger timing. Use final.
Example requests
Tested first-frame drive with a slow push-in.
{
"model": "kling-3.0-turbo/image-to-video",
"input": {
"prompt": "The red panda tea master gently pours the glowing tea, steam rises and swirls, lantern light flickers softly, camera slowly pushes in",
"image_urls": [
"https://static.hiapi.ai/gallery/2026/07/08abfb032c3b7640.jpg"
],
"duration": 8,
"resolution": "1080p"
}
}Getting the result
- The response returns a taskId immediately without waiting for generation to finish.
- In production, prefer waiting for callback.url to receive the terminal notification. For local debugging, poll GET /v1/tasks/:id.
- When status=success, download the generated video from output[].url.
- When status=fail, fix the request based on the returned error instead of retrying the same invalid payload.
FAQ
How is aspect ratio set?
Output follows the first-frame image — no separate setting.
Need 4K or native audio?
Use the flagship kling-3.0-omni/image-to-video.