Skip to main content
  • 路径 POST /kling/v1/videos/multi-image2video
  • 与官网一致:本页所有请求体、字段命名与返回结构与可灵官网保持一致
  • 字段详解:请参考官网权威文档
请求参数
参数类型必填说明
model_namestring模型名称,仅支持 kling-v1-6
image_listarray图片列表,最多4张
promptstring正向文本提示词
negative_promptstring负向文本提示词
modestring生成模式:stdpro,默认 std
durationstring视频时长:510,默认 5
aspect_ratiostring画面纵横比:16:99:161:1
callback_urlstring回调通知地址
external_task_idstring自定义任务ID
image_list 格式
{
  "image_list": [
    {"image": "https://example.com/image1.jpg"},
    {"image": "https://example.com/image2.jpg"},
    {"image": "data:image/png;base64,..."}
  ]
}

场景:多张角色参考图生成视频

curl --request POST \
  --url https://models.kapon.cloud/kling/v1/videos/multi-image2video \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
    "model_name": "kling-v1-6",
    "image_list": [
      {"image": "https://example.com/character-front.jpg"},
      {"image": "https://example.com/character-side.jpg"}
    ],
    "prompt": "The character turns around and waves at the camera",
    "mode": "std",
    "duration": "5",
    "aspect_ratio": "16:9"
  }'
示例响应
{
  "code": 0,
  "message": "success",
  "request_id": "req_1735558800_multi123",
  "data": {
    "task_id": "task_01JGHN...",
    "task_status": "submitted",
    "created_at": 1735558800000,
    "updated_at": 1735558800000
  }
}
任务查询
# 查询单个任务
curl "https://models.kapon.cloud/kling/v1/videos/multi-image2video/$TASK_ID" \
  -H "Authorization: Bearer $TOKEN"

# 查询任务列表
curl "https://models.kapon.cloud/kling/v1/videos/multi-image2video?pageNum=1&pageSize=30" \
  -H "Authorization: Bearer $TOKEN"