Skip to main content
POST
/
v3
/
async
/
kling-2.5-turbo-i2v
Kling V2.5 Turbo Image-to-Video
curl --request POST \
  --url https://api.highwayapi.ai/v3/async/kling-2.5-turbo-i2v \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>' \
  --data '
{
  "image": "<string>",
  "prompt": "<string>",
  "duration": "<string>",
  "cfg_scale": 123,
  "mode": "<string>",
  "negative_prompt": "<string>"
}
'
{
  "task_id": "<string>"
}
Kling 2.5 Turbo Image-to-Video can generate cinematic videos from a single image and a prompt, with smooth motion and content that closely matches the intended direction. It features a new text-temporal engine, enhanced motion performance, and faster inference speed.
This is an asynchronous API and only returns the asynchronous task’s task_id. You should use this task_id to request the Get Task Result API to retrieve the video generation result.

Request Headers

Content-Type
string
required
Enum value: application/json
Authorization
string
required
Bearer authentication format: Bearer {{API Key}}.

Request Body

image
string
required
The first-frame image for the video. Supported image formats include .jpg, .jpeg, and .png. The image file size must not exceed 10MB, and the resolution must be at least 300*300 pixels.
prompt
string
required
The positive prompt text for generating the video; must not exceed 2500 characters.
duration
string
default:"5"
The duration of the generated video (in seconds).Available values: 5, 10
cfg_scale
number
Controls the flexibility of video generation. The higher the value, the more closely the generated content adheres to the prompt, and the lower the creative freedom.Value range: 0 to 1
mode
string
default:"pro"
Video generation mode. Available values:
  • pro: Professional mode
negative_prompt
string
Negative prompt, used to avoid undesired content; must not exceed 2500 characters.

Response Information

task_id
string
required
The task_id of the asynchronous task. You should use this task_id to request the Get Task Result API to obtain the generation result.