Skip to main content
  • 路径 POST /kling/v1/images/generations
  • 与官网一致:本页所有请求体、字段命名与返回结构与可灵官网保持一致
  • 字段详解:请参考官网权威文档
请求参数
参数类型必填说明
model_namestring模型名称,默认 kling-v1。可选:kling-v1kling-v1-5kling-v2kling-v2-newkling-v2-1
promptstring正向文本提示词
negative_promptstring负向文本提示词(图生图场景不支持)
imagestring参考图像 URL 或 Base64
image_referencestring图片参考类型:subject(角色特征)、face(人物长相)
image_fidelitynumber图片参考强度 [0, 1]
human_fidelitynumber面部参考强度 [0, 1]
resolutionstring清晰度:1k(标清)、2k(高清),默认 1k
nint生成图片数量 [1, 9],默认 1
aspect_ratiostring纵横比:16:99:161:14:33:43:22:321:9
callback_urlstring回调通知地址
external_task_idstring自定义任务ID
注意:使用 kling-v1-5image 参数不为空时,image_reference 参数必填。

场景一:文生图

curl --request POST \
  --url https://models.kapon.cloud/kling/v1/images/generations \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
    "model_name": "kling-v1",
    "prompt": "A beautiful sunset over the ocean, vibrant colors, high detail",
    "resolution": "2k",
    "n": 1,
    "aspect_ratio": "16:9"
  }'

场景二:角色特征参考

curl --request POST \
  --url https://models.kapon.cloud/kling/v1/images/generations \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
    "model_name": "kling-v1-5",
    "prompt": "The character holding a magic wand in a fantasy forest",
    "image": "https://example.com/character-reference.jpg",
    "image_reference": "subject",
    "image_fidelity": 0.8,
    "resolution": "2k",
    "aspect_ratio": "3:4"
  }'

场景三:人脸参考

curl --request POST \
  --url https://models.kapon.cloud/kling/v1/images/generations \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
    "model_name": "kling-v1-5",
    "prompt": "A professional headshot portrait, business attire, studio lighting",
    "image": "https://example.com/face-photo.jpg",
    "image_reference": "face",
    "human_fidelity": 0.9,
    "resolution": "2k",
    "aspect_ratio": "1:1"
  }'

场景四:批量生成

curl --request POST \
  --url https://models.kapon.cloud/kling/v1/images/generations \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
    "model_name": "kling-v2",
    "prompt": "Abstract colorful artwork, modern style",
    "n": 4,
    "resolution": "1k",
    "aspect_ratio": "1:1"
  }'
示例响应
{
  "code": 0,
  "message": "success",
  "request_id": "req_1735558800_img123",
  "data": {
    "task_id": "task_01JGHP...",
    "task_status": "submitted",
    "created_at": 1735558800000,
    "updated_at": 1735558800000
  }
}
任务成功响应
{
  "code": 0,
  "message": "success",
  "data": {
    "task_id": "task_01JGHP...",
    "task_status": "succeed",
    "task_result": {
      "images": [
        {"index": 0, "url": "https://..."},
        {"index": 1, "url": "https://..."}
      ]
    }
  }
}