メインコンテンツへスキップ
POST
/
kling
/
v1
/
videos
/
multi-image2video
Create a Kling multi-image-to-video task
curl --request POST \
  --url https://api.cometapi.com/kling/v1/videos/multi-image2video \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "model_name": "kling-v1-6",
  "duration": "5",
  "image_list": [
    {
      "image": "https://h2.inkwai.com/bs2/upload-ylab-stunt/se/ai_portal_queue_mmu_image_upscale_aiweb/3214b798-e1b4-4b00-b7af-72b5b0417420_raw_image_0.jpg"
    },
    {
      "image": "https://h2.inkwai.com/bs2/upload-ylab-stunt/se/ai_portal_queue_mmu_image_upscale_aiweb/3214b798-e1b4-4b00-b7af-72b5b0417420_raw_image_0.jpg"
    },
    {
      "image": "https://filesystem.site/cdn/20250414/chxiLc2O45zoLT8BCrQ6WQlTvGDDnK.png"
    },
    {
      "image": "https://filesystem.site/cdn/20250414/chxiLc2O45zoLT8BCrQ6WQlTvGDDnK.png"
    }
  ],
  "prompt": "The astronauts got up and left."
}
'
{
  "code": 0,
  "message": "SUCCEED",
  "data": {
    "task_id": "861309198188019719",
    "task_status": "submitted",
    "task_info": {},
    "created_at": 1773380633979,
    "updated_at": 1773380633979
  }
}
ソース画像が1枚では不十分で、Kling に複数の画像参照から動きを構築させたい場合は、このエンドポイントを使用します。

呼び出し前に

  • image_list に 2〜4 枚の画像を用意します
  • model_name: kling-v1-6 または、検証済みの別の現行モデルから始めます
  • 最初のテストはシンプルにします。短い prompt を 1 つ、モーションマスクなし、追加のコールバック設定なしにします

タスクの流れ

1

複数画像リクエストを送信

画像リスト、prompt、duration を送信し、返された Kling の task_id を保存します。
2

タスクをポーリング

タスクが終了状態に到達するまで、個別クエリ を使って継続的に確認します。
3

結果を保存

プロバイダーの配信 URL を超えて保持する必要がある場合は、完成した動画を保存します。
2026-03-13 のライブ検証では、最小構成の2画像リクエストが受け付けられ、task_status: submitted が返されることを確認しました。
完全なパラメータリファレンスについては、Kling 公式ドキュメント を参照してください。

承認

Authorization
string
header
必須

Bearer token authentication. Use your CometAPI key.

ボディ

application/json
model_name
string
デフォルト:kling-v1-6
必須

Kling model variant to use. See the Models page for current options.

duration
string
デフォルト:5
必須

Output video length in seconds. Options: 5, 10.

image_list
object[]
必須

2 to 4 source images. Each item provides an image field as a public URL or Base64 string (without data: prefix). Accepted formats: JPG, JPEG, PNG. Maximum 10 MB per image, minimum 300×300 px, aspect ratio between 1:2.5 and 2.5:1.

prompt
string
デフォルト:The cat turns its head and blinks.
必須

Text prompt describing the desired motion. Maximum 500 characters.

negative_prompt
string

Elements to exclude from the video. Maximum 200 characters.

callback_url
string

Webhook URL to receive task status updates when the task completes.

mode
string

Generation mode. std for standard (faster), pro for professional (higher quality).

cfg_scale
number

Prompt adherence strength. Higher values follow the prompt more closely. Range: 0–1.

static_mask
string

Static brush mask image as a Base64 string or public URL. White areas are frozen in place during video generation. Must match the aspect ratio and resolution of the input image.

dynamic_masks
object

Dynamic brush configuration. Up to 6 groups, each containing a painted-area mask and a motion trajectory.

external_task_id
string

Custom task id for your own tracking. Does not replace the system-generated task id but can be used to query tasks. Must be unique per user.

レスポンス

200 - application/json

Task accepted.

code
integer
必須

Error code; specifically define the error code

message
string
必須

error message

data
object
必須