Используйте API RunComfy для запуска minimax/minimax-h3-open/image-to-video. Допустимые входы и выходы см. в схеме.
curl --request POST \
--url https://model-api.runcomfy.net/v1/models/minimax/minimax-h3-open/image-to-video \
--header "Content-Type: application/json" \
--header "Authorization: Bearer <token>" \
--data '{
"image": "https://playgrounds-storage-public.runcomfy.net/tools/7411/media-files/ref-promo.webp",
"prompt": "[0s-2s] the gardener breathes and blinks, a water droplet slides down a tomato leaf. [2s-5s] she turns slightly toward camera with a warm smile as the camera pushes in. Camera: slow push-in then hold, no cuts. Audio: soft greenhouse ambience, light leaf rustle, distant drip irrigation. Keep the same person, outfit, and setting. No extra people, no text, no watermark."
}'Задайте для переменной окружения YOUR_API_TOKEN ваш API-ключ (управление в Профиль) и передавайте в каждом запросе Bearer-токен в заголовке Authorization : Authorization: Bearer $YOUR_API_TOKEN.
Отправьте асинхронную задачу генерации и сразу получите request_id и URL для статуса, результатов и отмены.
curl --request POST \
--url https://model-api.runcomfy.net/v1/models/minimax/minimax-h3-open/image-to-video \
--header "Content-Type: application/json" \
--header "Authorization: Bearer <token>" \
--data '{
"image": "https://playgrounds-storage-public.runcomfy.net/tools/7411/media-files/ref-promo.webp",
"prompt": "[0s-2s] the gardener breathes and blinks, a water droplet slides down a tomato leaf. [2s-5s] she turns slightly toward camera with a warm smile as the camera pushes in. Camera: slow push-in then hold, no cuts. Audio: soft greenhouse ambience, light leaf rustle, distant drip irrigation. Keep the same person, outfit, and setting. No extra people, no text, no watermark."
}'Текущее состояние по request_id: «in_queue», «in_progress», «completed» или «cancelled».
curl --request GET \
--url https://model-api.runcomfy.net/v1/requests/{request_id}/status \
--header "Authorization: Bearer <token>"Финальные выходные данные и метаданные для request_id; если задача не завершена, в ответе — текущее состояние для дальнейшего опроса.
curl --request GET \
--url https://model-api.runcomfy.net/v1/requests/{request_id}/result \
--header "Authorization: Bearer <token>"Отмена задачи в очереди по request_id; выполняющиеся задачи отменить нельзя.
curl --request POST \
--url https://model-api.runcomfy.net/v1/requests/{request_id}/cancel \
--header "Authorization: Bearer <token>"Укажите публично доступный HTTPS URL. Хост должен разрешать серверные запросы (без входа и cookie), без жёсткого лимита и блокировки ботов. Рекомендуется: изображения ≤ 50 МБ (~4K), видео ≤ 100 МБ (~2–5 мин при 720p). Для приватных ресурсов — стабильные или подписанные URL.
{
"type": "object",
"title": "Схема входа",
"required": [
"image",
"prompt"
],
"properties": {
"image": {
"title": "Изображение",
"description": "URL-адрес изображения первого кадра. Выходное кадрирование соответствует соотношению сторон этого изображения.",
"type": "string",
"default": "https://playgrounds-storage-public.runcomfy.net/tools/7411/media-files/ref-promo.webp"
},
"prompt": {
"title": "Промпт",
"description": "Движение, камера и дополнительный звук: линия. Сохраняйте идентичность в соответствии с кадром.",
"type": "string",
"default": "[0s-2s] the gardener breathes and blinks, a water droplet slides down a tomato leaf. [2s-5s] she turns slightly toward camera with a warm smile as the camera pushes in. Camera: slow push-in then hold, no cuts. Audio: soft greenhouse ambience, light leaf rustle, distant drip irrigation. Keep the same person, outfit, and setting. No extra people, no text, no watermark."
},
"last_image": {
"title": "Последнее изображение",
"description": "Дополнительное изображение последнего кадра, которое поможет определить финальную позу или композицию.",
"type": "string"
},
"resolution": {
"title": "Разрешение",
"description": "Выходное разрешение. 480p быстрее/дешевле; 768p резче.",
"type": "string",
"enum": [
"480p",
"768p"
],
"default": "480p"
},
"duration": {
"title": "Длительность",
"description": "Длина создаваемого видео в секундах (5–15).",
"type": "integer",
"minimum": 5,
"maximum": 15,
"default": 5
},
"seed": {
"title": "Seed",
"description": "Фиксированное начальное значение для воспроизводимых результатов. Используйте -1 для случайного начального числа.",
"type": "integer",
"default": -1
}
}
}{
"output": {
"type": "object",
"properties": {
"image": {
"type": "string",
"format": "uri",
"description": "URL одного изображения"
},
"video": {
"type": "string",
"format": "uri",
"description": "URL одного видео"
},
"images": {
"type": "array",
"description": "несколько URL изображений",
"items": {
"type": "string",
"format": "uri"
}
},
"videos": {
"type": "array",
"description": "несколько URL видео",
"items": {
"type": "string",
"format": "uri"
}
}
}
}
}RunComfy - ведущая ComfyUI платформа, предлагающая ComfyUI онлайн среду и услуги, а также рабочие процессы ComfyUI с потрясающей визуализацией. RunComfy также предоставляет AI Models, позволяя художникам использовать новейшие инструменты AI для создания невероятного искусства.