Skip to content
English

Kling 3.0 Turbo Image to Video API

POST /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

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

Animate stills

First-frame driven — keeps subject and framing while bringing images to life.

image_urlsprompt
Flexible 3-15s

Billed per second, pick the length you need.

duration
Fast-tier economics

Cheaper than the flagship for batch image-to-video.

resolution

Request parameters

model string required

Fixed value kling-3.0-turbo/image-to-video.

example 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).

default 5
resolution enum optional

Resolution of the generated video.

default 720p enum: 720p1080p
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.

example https://your-domain.com/hiapi/callback
when enum optional

Callback trigger timing. Use final.

default final enum: final

Example requests

Teahouse pour (1080p 8s)

Tested first-frame drive with a slow push-in.

Request body
{
  "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

  1. The response returns a taskId immediately without waiting for generation to finish.
  2. In production, prefer waiting for callback.url to receive the terminal notification. For local debugging, poll GET /v1/tasks/:id.
  3. When status=success, download the generated video from output[].url.
  4. 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.

Next steps