CQTAI
MiniMax · Video

Multi-image ReferenceNEW

📌 What is thisGenerate a video from one or more reference images (optionally plus reference video/audio) — the default image-to-video workflow. This page covers 3 values: multi-reference (general), multi-reference-4 (multi-image composition) and mj (MJ-style reference), selected via workflow_id.
💡 When to useUse when you have reference images to animate (up to 9); optionally add reference video for motion/style or audio for rhythm. The 3 values share identical material limits, duration, resolution tiers and pricing — pick by the generation style you want.
🔗 Response formatThe query response follows the OpenAI video-task format: a flat top-level structure (no {code,msg,data} wrapper), lowercase status queued / running / success / failed, success returns video_url, failure returns {"error":{"code","message"}}; video_url is our CDN direct link, ready to download/play.

Endpoints

UsageMethodPath
Submit taskPOST/v1/videos
Query ResultGET/v1/videos/{taskId}
Recommended polling intervalPoll GET /v1/videos/{taskId} every 5s until status = success / failed.

Workflow values

These 3 values share the same params, request example and pricing on this page; they differ only in generation style.

workflow_idUsageMaterialsDuration (sec)Resolution tiers
multi-referenceGeneral multi-image reference (default)images <=9 · ref videos <=3 · audio <=34~15480P / 768P / 1080P
multi-reference-4Composition across multiple reference imagesimages <=9 · ref videos <=3 · audio <=34~15480P / 768P / 1080P
mjMJ-style reference (follow the art style of the material)images <=9 · ref videos <=3 · audio <=34~15480P / 768P / 1080P
multi-reference-4 and mj cannot be inferred from inputs — pass workflow_id explicitly; sending image_urls without workflow_id runs multi-reference.

Request Parameters

ParamTypeRequiredDescription
modelstringFixed minimax-h3
workflow_idstringWorkflow; 1 of 3 on this page: multi-reference / multi-reference-4 / mj. See the table below for what each does; omit it and inputs are inferred as multi-reference; the other values must be set explicitly
promptstringRequiredRequired. Text description (the new engine always requires prompt — including image-to-video and first/last-frame, e.g. "gentle camera push-in, soft light")
image_urlsstring[]RequiredReference image URLs, up to 9 (alias: images)
ratiostringAspect ratio, 1 of 8: 16:9 / 9:16 / 1:1 / 4:3 / 3:4 / 3:2 / 2:3 / 21:9, default 16:9 (ratio x resolution tier determine the output size; see the size table)
resolutionstringResolution tier (case-insensitive): 480P / 768P / 1080P, default 1080P; unit price varies by tier (480P=5, 768P=12, 1080P=18 credits/sec), see billing
durationintegerDuration (sec) integer 4~15, default 4 (alias: seconds)
reference_videosstring[]Reference video URLs, up to 3, as motion/style reference (aliases: reference_video (single) / video_urls / videos)
audio_urlsstring[]Audio URLs, up to 3, for audio-guided generation (alias: reference_audios)
prompt_enhancebooleanPrompt enhancement (optional, boolean); defaults to on if omitted

Request Example

curl -X POST https://api.cqtai.com/v1/videos \
  -H 'Authorization: Bearer <API_KEY>' \
  -H 'Content-Type: application/json' \
  -d '{
    "model": "minimax-h3",
    "workflow_id": "multi-reference",
    "prompt": "gentle camera push-in, soft light",
    "image_urls": ["https://cdn.novapi.ai/your/frame.png"],
    "ratio": "9:16",
    "resolution": "1080P",
    "duration": 8
  }'
# -> 创建响应: { "id":"<task_id>", "task_id":"<task_id>", "object":"video", "model":"minimax-h3", "status":"PROCESSING", "progress":0 }

Response Example

{
  "id": "b976d0f8c1ed4c1c8ef006ea22161bcc",
  "task_id": "b976d0f8c1ed4c1c8ef006ea22161bcc",
  "object": "video",
  "model": "minimax-h3",
  "status": "success",
  "progress": 100,
  "video_url": "https://cdn.novapi.ai/minimax/1786516943631_d6ddaeaa68a4464f9e16938f16b9534b.mp4"
}

Response Fields

FieldTypeDescription
idstringTask ID (opaque), same as task_id; used to poll GET /v1/videos/{task_id}
task_idstringTask ID (opaque); returned on submit, used for polling
objectstringObject type, always "video"
modelstringModel name, always "minimax-h3"
statusstringTask status (lowercase): queued / running / success / failed
progressnumberProgress 0-100
video_urlstringResult video URL (our CDN direct link); returned when status = success
errorobjectError info {"code","message"}; returned when status = failed

Billing & Credits

Billed per second = credits/sec x duration (sec). Credits/sec: 480P=5, 768P=12, 1080P=18. Example: 1080P 6s = 18 x 6 = 108. Auto-refunded on failure.