Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
or
Request Code Samples
curl --location 'https://lizh.ai/kling/v1/videos/image2video/task-abc123' \
--header 'Authorization: Bearer <token>'
Responses
{
"task_id": "abcd1234efgh",
"status": "queued",
"url": "https://example.com/video.mp4",
"format": "mp4",
"metadata": {
"duration": 5,
"fps": 30,
"width": 1280,
"height": 720,
"seed": 20231234
},
"error": {
"code": 0,
"message": "string"
}
}
Modified at 2026-06-03 19:08:40