Kling V1.6 - Multi Image to Video
kling-v1-6-multi-i2v
A video generation model that creates videos from multiple reference images combined with text prompts.
Эндпоинты
Заголовок раздела «Эндпоинты»POST /v1/queue/kling-v1-6-multi-i2v # Создать задачуGET /v1/queue/kling-v1-6-multi-i2v/requests/{request_id}/status # Проверить статусGET /v1/queue/kling-v1-6-multi-i2v/requests/{request_id}/response # Получить результатPUT /v1/queue/kling-v1-6-multi-i2v/requests/{request_id}/cancel # Отменить задачуПараметры запроса
Заголовок раздела «Параметры запроса»curl --request 'POST' 'https://odirouter.ai/model/v1/queue/kling-v1-6-multi-i2v' \ --header 'Authorization: Bearer YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --location \ --data-raw '{ "image_list": [ { "image": "https://www.gstatic.com/webp/gallery/1.jpg" }, { "image": "https://www.gstatic.com/webp/gallery/1.jpg" } ], "prompt": "Two characters meet and greet each other warmly in a sunlit park", "negative_prompt": "blurry, low quality, distorted", "mode": "std", "duration": "5", "aspect_ratio": "16:9"}'image_list array required
Заголовок раздела «image_list array required»Reference image list. Supports up to 4 images, each carrying its URL or Base64 string via the image key:
"image_list": [ { "image": "image_url_or_base64" }, { "image": "image_url_or_base64" }]No cropping is applied on the API side — upload images with the subject already framed as intended
Supports Base64 encoded images or image URLs (must be publicly accessible)
Note: When using Base64, do not add any prefix (e.g. data:image/png;base64,) — pass the raw Base64-encoded string directly
Supported formats: .jpg / .jpeg / .png
File size must not exceed 10MB; image width and height must be at least 300px; aspect ratio between 1:2.5 and 2.5:1
image
Заголовок раздела «image string required»stringrequiredImage URL or Base64 encoded string
prompt string required
Заголовок раздела «prompt string required»Positive text prompt
Must not exceed 2500 characters
negative_prompt string
Заголовок раздела «negative_prompt string»Negative text prompt
Must not exceed 2500 characters
mode string
Заголовок раздела «mode string»Video generation mode
Default: std
Options: std, pro
std: Standard mode — basic mode with high cost-efficiency
pro: Pro mode (high quality) — high-performance mode with better video quality
duration string
Заголовок раздела «duration string»Generated video duration in seconds
Default: 5
Options: 5, 10
aspect_ratio string
Заголовок раздела «aspect_ratio string»Aspect ratio of the generated video (width:height)
Default: 16:9
Options: 16:9, 9:16, 1:1
watermark_info object
Заголовок раздела «watermark_info object»Whether to generate a watermarked version of the result. Custom watermarks are not supported.
enabled
Заголовок раздела «enabled boolean»boolean
true: Generate a watermarked versionfalse: Do not generate a watermarked version
callback_url string
Заголовок раздела «callback_url string»Callback notification address for this task. If configured, the server will actively notify when the task status changes.
external_task_id string
Заголовок раздела «external_task_id string»Custom task ID
A user-defined task ID. It does not override the system-generated task ID but can be used to query the task.
Note: Must be unique per user.
Параметры ответа
Заголовок раздела «Параметры ответа»{ "request_id": "task_01hxyz...", "response_url": "https://odirouter.ai/model/v1/queue/kling-v1-6-multi-i2v/requests/task_01hxyz.../response", "status_url": "https://odirouter.ai/model/v1/queue/kling-v1-6-multi-i2v/requests/task_01hxyz.../status", "cancel_url": "https://odirouter.ai/model/v1/queue/kling-v1-6-multi-i2v/requests/task_01hxyz.../cancel", "queue_position": 0}| Поле | Тип | Описание |
|---|---|---|
request_id | string | Идентификатор задачи для последующей проверки статуса, получения результата и отмены. |
response_url | string | URL для получения итогового результата. |
status_url | string | URL для проверки статуса задачи. |
cancel_url | string | URL для отмены задачи. |
queue_position | int | Текущая позиция в очереди. |