Minimax H3 Video Extend API Documentation
Playground
Try it on WaveSpeedAI!MiniMax H3 Open Weights Video-Extend appends a new cinematic continuation to an existing video. A fresh segment with native stereo audio is generated from the input video’s last frame and a natural-language prompt, then the original and new segment are concatenated into a single output. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Features
MiniMax H3 Video Extend Open Weights extends an existing video by generating a new segment from the input video’s last frame. The new segment is appended to the original video, with prompt-guided motion, scene continuation, and native audio generation.
Why Choose This?
-
Video extension workflow
Continue an existing video with a newly generated segment. -
Last-frame continuation
Generate the new segment from the final frame of the input video for smoother visual continuity. -
Prompt-guided motion
Describe the continuation, including action, camera movement, scene development, and soundtrack direction. -
Optional last-frame target
Uselast_imageto guide where the extended segment should end. -
Native audio generation
Generate audio together with the new video segment. -
Flexible resolution options
Choose480pfor faster, lower-cost generation,540pfor a mid-price step up,768pfor the model’s native canvas, or1080pfor full-HD output.
Parameters
| Parameter | Required | Description |
|---|---|---|
| prompt | Yes | Text description of the continuation, including motion, scene development, camera movement, and soundtrack direction. Audio is generated natively together with the video. |
| video | Yes | URL of the video to extend. The new segment is generated from its last frame and appended to the original video. |
| last_image | No | Optional target last-frame image URL. When provided, the new segment interpolates from the input video’s last frame to this image. |
| resolution | No | Resolution of the new segment: 480p, 540p, 768p, or 1080p. 768p is the model’s native canvas; 480p is a faster, lower-cost tier; 540p is a mid tier at 1.5x the 480p price; 1080p is the highest-quality full-HD tier. Default: 480p. |
| duration | No | Length in seconds of the new segment to append. Options: 3 to 15. Default: 5. |
| seed | No | Random seed for generation. A negative value means a random seed will be used. |
How to Use
- Write the continuation prompt — Describe what should happen after the input video ends, including motion, scene, camera movement, and audio direction.
- Upload the input video — Provide the video you want to extend.
- Add last-frame guidance optional — Use
last_imagewhen you want to guide the final frame of the new segment. - Choose resolution — Use
480pfor faster generation,540pfor a mid-price step up,768pfor the native canvas, or1080pfor full-HD output. - Set duration — Choose a new segment length from
3to15seconds. - Set seed optional — Use a fixed seed for reproducible results, or a negative value for random generation.
- Submit — Generate the extended video output.
Pricing
Pricing is based on the generated extension duration and selected resolution.
| Resolution | Per second | 5s | 15s |
|---|---|---|---|
| 480p | $0.04 | $0.20 | $0.60 |
| 540p | $0.06 | $0.30 | $0.90 |
| 768p | $0.08 | $0.40 | $1.20 |
| 1080p | $0.16 | $0.80 | $2.40 |
Duration is capped at 15 seconds for pricing.
Example Costs
| Resolution | 3s | 5s | 10s | 15s |
|---|---|---|---|---|
| 480p | $0.12 | $0.20 | $0.40 | $0.60 |
| 540p | $0.18 | $0.30 | $0.60 | $0.90 |
| 768p | $0.24 | $0.40 | $0.80 | $1.20 |
| 1080p | $0.48 | $0.80 | $1.60 | $2.40 |
video, last_image, prompt, and seed do not add separate charges.
Best Use Cases
- Video continuation — Extend an existing clip with a coherent new segment.
- Scene development — Continue action, camera movement, mood, and visual direction from the source video.
- Story extension — Add a new beat or ending to an existing short video.
- Start-to-target transitions — Use
last_imagewhen the extension needs to end on a specific visual state. - Creative prototyping — Test different continuation prompts from the same source video.
- Social video content — Extend short clips for posts, reels, shorts, and creative previews.
Pro Tips
- Describe what should happen next instead of restating the full source video.
- Use a source video with a clear final frame for smoother continuation.
- Include camera movement, subject action, scene changes, mood, and audio cues in the prompt.
- Use
last_imagewhen the final pose, framing, or ending state matters. - Keep the continuation focused on one clear event or motion direction.
- Use
480pfor quick testing,540pfor a step up, and768por1080pfor higher-resolution output. - Set a fixed
seedwhen comparing prompt or parameter changes.
Notes
promptandvideoare required.durationsupports values from3to15seconds.- The new segment is generated from the input video’s last frame and appended to the original video.
last_imageis optional and guides the target ending frame of the new segment.- Native audio is generated together with the extended segment.
- Pricing is based on the generated extension duration, not the input video duration.
Related Models
- MiniMax H3 Text-to-Video Open Weights — Generate video with native stereo audio directly from a text prompt.
- MiniMax H3 Image-to-Video Open Weights — Animate a first-frame image with prompt-guided motion and audio.
- MiniMax H3 Reference-to-Video Open Weights — Generate video from image, video, or audio references with prompt guidance.
- MiniMax H3 Video Edit Open Weights — Edit an existing video with prompt instructions and optional references.
Authentication
For authentication details, please refer to the Authentication Guide.
API Endpoints
Submit Task & Query Result
set -euo pipefail
export WAVESPEED_API_KEY="your-api-key"
REQUEST_BODY=$(cat <<'JSON'
{
"prompt": "A cinematic ocean wave at sunrise, highly detailed",
"video": "https://interactive-examples.mdn.mozilla.net/media/cc0-videos/flower.mp4",
"resolution": "480p",
"duration": 5
}
JSON
)
# 1. Submit the prediction.
SUBMIT_RESPONSE=$(curl --silent --show-error --fail-with-body \
-X POST "https://api.wavespeed.ai/api/v3/wavespeed-ai/minimax-h3/video-extend" \
-H "Authorization: Bearer ${WAVESPEED_API_KEY}" \
-H "Content-Type: application/json" \
-d "${REQUEST_BODY}")
TASK=$(printf '%s' "${SUBMIT_RESPONSE}" | jq 'if type == "object" and has("data") then .data else . end')
PREDICTION_ID=$(printf '%s' "${TASK}" | jq -r '.id // empty')
if [ -z "${PREDICTION_ID}" ]; then
printf 'Submission response did not contain a prediction id
' >&2
exit 1
fi
RESULT_URL="https://api.wavespeed.ai/api/v3/predictions/${PREDICTION_ID}/result"
# 2. Poll until the prediction finishes.
while true; do
RESPONSE=$(curl --silent --show-error --fail-with-body \
"${RESULT_URL}" \
-H "Authorization: Bearer ${WAVESPEED_API_KEY}")
RESULT=$(printf '%s' "${RESPONSE}" | jq 'if type == "object" and has("data") then .data else . end')
STATUS=$(printf '%s' "${RESULT}" | jq -r '.status // empty')
case "${STATUS}" in
completed) printf '%s\n' "${RESULT}" | jq '.outputs'; break ;;
failed|cancelled|timeout|deleted) printf '%s\n' "${RESULT}" | jq . >&2; exit 1 ;;
*) sleep 2 ;;
esac
doneParameters
Task Submission Parameters
Request Parameters
| Parameter | Type | Required | Default | Range | Description |
|---|---|---|---|---|---|
| prompt | string | Yes | - | Text description of the continuation - motion, scene, and soundtrack. Audio is generated natively together with the video. | |
| video | string | Yes | - | URL of the video to extend. The new segment is generated from its last frame and appended to the original. | |
| last_image | string | No | - | - | Optional target last-frame image URL. When provided, the new segment interpolates from the input video's last frame to this image. |
| resolution | string | No | 480p | 480p, 540p, 768p, 1080p | Resolution of the new segment. 768p is the model's native canvas; 480p is a faster, lower-cost tier; 540p is a mid tier at 1.5x the 480p price. 1080p is the highest-quality full-HD tier at 2x the 768p price (generation takes longer). |
| duration | integer | No | 5 | 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 | Length in seconds of the new segment to append. |
| seed | integer | No | - | - | The random seed to use for the generation. A negative value means a random seed will be used. |
Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | integer | HTTP status code (e.g., 200 for success) |
| message | string | Status message (e.g., “success”) |
| data.id | string | Unique identifier for the prediction, Task Id |
| data.model | string | Model ID used for the prediction |
| data.outputs | array | Output values, usually URL strings; some models return text strings or structured result objects (empty when status is not completed) |
| data.urls | object | Object containing related API endpoints |
| data.status | string | Task status. completed is successful; failed, cancelled, timeout, and deleted are failure terminal statuses. |
| data.created_at | string | ISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”) |
| data.error | string | Error message (empty if no error occurred) |
| data.timings | object | Object containing timing details |
| data.timings.inference | integer | Inference time in milliseconds |
Result Request Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| id | string | Yes | - | Task ID |
Result Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | integer | HTTP status code (e.g., 200 for success) |
| message | string | Status message (e.g., “success”) |
| data | object | The prediction data object containing all details |
| data.id | string | Unique identifier for the prediction |
| data.model | string | Model ID used for the prediction |
| data.outputs | array<string | object> | Array of generated outputs (empty when status is not completed). Items are usually URL strings, but may be text strings or structured result objects, depending on the model. |
| data.urls | object | Object containing related API endpoints |
| data.status | string | Status: completed is successful; failed, cancelled, timeout, and deleted are failure terminal statuses |
| data.created_at | string | ISO timestamp of when the request was created |
| data.error | string | Error message (empty if no error occurred) |
| data.timings | object | Object containing timing details |
| data.timings.inference | integer | Inference time in milliseconds |