Theme
Create Task minimax/video-01-live
POST
https://www.kkiai.com/replicate/v1/models/minimax/video-01-live/predictions
Official documentation: https://replicate.com/minimax/video-01-live
Request Parameters
Authorization
Add the Authorization parameter to the Header. Its value should be the Token concatenated after Bearer.
Example: Authorization: Bearer ********************
Header Parameters
| Parameter Name | Type | Required | Description | Example |
|---|---|---|---|---|
Authorization | string | Optional | Bearer {{YOUR_API_KEY}} |
Body Parameters (application/json)
| Parameter Name | Type | Required | Description |
|---|---|---|---|
input | object | Optional | |
└ prompt | string | Required | |
└ prompt_optimizer | boolean | Optional | Use prompt optimizer. Default value: true |
└ first_frame_image | string | Required | First frame image for video generation. The output video will have the same aspect ratio as this image. |
Request Example
json
{
"input": {
"prompt": "a man is talking angrily",
"prompt_optimizer": true,
"first_frame_image": "https://replicate.delivery/pbxt/M9jlcXgeaypBr2yQYGf9JXgxUCJWRt8ODUDvt90UWPUsQBXC/back-to-the-future.png"
}
}cURL Example
bash
curl --location --request POST 'https://www.kkiai.com/replicate/v1/models/minimax/video-01-live/predictions' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"input": {
"prompt": "a man is talking angrily",
"prompt_optimizer": true,
"first_frame_image": "https://replicate.delivery/pbxt/M9jlcXgeaypBr2yQYGf9JXgxUCJWRt8ODUDvt90UWPUsQBXC/back-to-the-future.png"
}
}'Response
🟢 200 Success
Response Body
| Parameter Name | Type | Required | Description |
|---|---|---|---|
id | string | Required | |
model | string | Required | |
version | string | Required | |
input | object | Required | |
└ aspect_ratio | string | Required | |
└ input_image | string | Required | |
└ output_format | string | Required | |
└ prompt | string | Required | |
└ prompt_upsampling | boolean | Required | |
└ safety_tolerance | integer | Required | |
logs | string | Required | |
output | null | Required | |
data_removed | boolean | Required | |
error | null | Required | |
status | string | Required | |
created_at | string | Required | |
urls | object | Required | |
└ cancel | string | Required | |
└ get | string | Required | |
└ stream | string | Required | |
└ web | string | Required |
Response Example
json
{
"id": "x18c1re8mxrma0crb3x8wbwqmg",
"model": "minimax/video-01-live",
"version": "hidden",
"input": {
"first_frame_image": "https://replicate.delivery/pbxt/M9jlcXgeaypBr2yQYGf9JXgxUCJWRt8ODUDvt90UWPUsQBXC/back-to-the-future.png",
"prompt": "a man is talking angrily",
"prompt_optimizer": true
},
"logs": "",
"output": null,
"data_removed": false,
"error": null,
"status": "starting",
"created_at": "2025-07-30T01:38:07.143Z",
"urls": {
"cancel": "https://api.replicate.com/v1/predictions/x18c1re8mxrma0crb3x8wbwqmg/cancel",
"get": "https://api.replicate.com/v1/predictions/x18c1re8mxrma0crb3x8wbwqmg",
"stream": "https://stream.replicate.com/v1/files/bcwr-tfjtzspnxcjigf5eyyqqfkc3rrtv7ruou6yxzspuiy2cdzi7gizq",
"web": "https://replicate.com/p/x18c1re8mxrma0crb3x8wbwqmg"
}
}