curl --request POST \
--url https://api.modellix.ai/api/v1/minimax/minimax-i2v-01/async \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"first_frame_image": "https://example.com/image.jpg"
}
'
{
"code": 0,
"message": "success",
"data": {
"status": "pending",
"task_id": "task-abc123",
"model_id": "model-123",
"get_result": {
"method": "GET",
"url": "https://api.modellix.ai/api/v1/tasks/task-abc123"
}
}
}
MiniMax I2V-01 converts static images into high-quality video sequences with smooth animation, especially optimized for illustrations and anime.
POST
/
minimax-i2v-01
/
async
curl --request POST \
--url https://api.modellix.ai/api/v1/minimax/minimax-i2v-01/async \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"first_frame_image": "https://example.com/image.jpg"
}
'
{
"code": 0,
"message": "success",
"data": {
"status": "pending",
"task_id": "task-abc123",
"model_id": "model-123",
"get_result": {
"method": "GET",
"url": "https://api.modellix.ai/api/v1/tasks/task-abc123"
}
}
}
Documentation Index
Fetch the complete documentation index at: https://docs.modellix.ai/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
API Key authentication. Format: Bearer YOUR_API_KEY.
Body
application/json
First frame image URL or Base64 Data URL
Minimum string length:
1Example:
"https://example.com/image.jpg"
Video content description, supports Chinese and English. Does not support camera control instructions
Required string length:
1 - 2000Example:
"Gentle animation"
Enable automatic prompt optimization
Example:
true
Video duration (fixed at 6 seconds)
Available options:
6 Example:
6
Video resolution (fixed at 720P)
Available options:
720P Example:
"720P"
⌘I