Get Kling Multi-Image to Video Status
Query the status and results of a Kling multi-image reference video generation task.
API Details
Endpoint: GET /kling/v1/videos/multi-image2video/:task_id
Description: Retrieves the progress and final result of video generation using the task_id returned during task submission.
Authentication: Bearer Token
http
Authorization: Bearer YOUR_API_TOKENRequest Parameters
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| task_id | string | Yes | The unique identifier of the task returned during submission |
Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | string | Status code (success for success) |
| message | string | Status message |
| data | object | Task detail object |
| data.task_id | string | Task ID |
| data.status | string | Unified task status: SUBMITTED, IN_PROGRESS, SUCCESS, FAILURE |
| data.progress | string | Task progress (e.g., "100%") |
| data.data | object | Original Kling response data |
| data.data.data.task_status | string | Kling task status: submitted, processing, succeed, failed |
| data.data.data.task_result.videos | array | List of generated videos |
| data.data.data.task_result.videos[0].url | string | URL for video download or playback |
| data.data.data.task_result.videos[0].duration | string | Total duration of the video |
Response Example
json
{
"code": "success",
"message": "",
"data": {
"task_id": "842250903629086785",
"status": "SUCCESS",
"progress": "100%",
"data": {
"code": 0,
"data": {
"task_id": "842250903629086785",
"task_status": "succeed",
"task_result": {
"videos": [
{
"id": "842250903708762200",
"url": "https://v16-kling-fdl.klingai.com/...",
"duration": "5.1"
}
]
}
}
}
}
}Code Examples
Curl Example
bash
curl https://api.ezmodel.cloud/kling/v1/videos/multi-image2video/YOUR_TASK_ID \
-H "Authorization: Bearer $YOUR_API_KEY"OpenAPI Specification
yaml
openapi: 3.0.1
info:
title: ''
description: ''
version: 1.0.0
paths:
/kling/v1/videos/multi-image2video/{task_id}:
get:
summary: Get Kling Multi-Image to Video Status
description: Query the status and results of a Kling multi-image reference video generation task.
parameters:
- name: task_id
in: path
required: true
schema:
type: string
responses:
'200':
description: Status retrieved successfully