Skip to main content
POST
Kling V3 Turbo Image to Video
Generate videos from an input image using the kling/v3-turbo-image-to-video model.

Authentication

All API requests require a Bearer Token.

Create Video Task

Submit an image-to-video generation task using the following endpoint:

Request Body

string
required
Must be kling/v3-turbo-image-to-video.
object
required

Input Parameters

The input object contains the parameters used to generate the video.
string
required
Use prompt to describe the video you want to generate.Maximum length: 2500 characters.
string[]
required
Provide the URL of the image to be used for video generation. The value must be an uploaded file URL, not the file content itself. Supported image formats:
  • image/jpeg
  • image/png
Maximum file size: 10 MB
string
required
Specify the duration of the generated video in seconds.The supported duration range is 3 to 15 seconds.Default value: "5"
string
required
Specify the resolution of the generated video.Supported values:
  • 720p
  • 1080p
Default: 720p

Complete Request Example

Response

Successful Response

A successful request returns a task ID.
number
Response status code.
string
Response message. Contains the error description when the request fails.Example: success
object
required
The task data object containing task id.
string
required
The unique identifier for this task.Example: task_123456
Use the taskId to query the task status and retrieve generation results.

Get Task Details

Learn how to query task status and retrieve generation results.

Error Response

Response Codes