Skip to main content
POST
/
minimax-t2v-01
/
async
curl --request POST \
  --url https://api.modellix.ai/api/v1/text-to-video/minimax/minimax-t2v-01/async \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "prompt": "A butterfly landing on a flower in slow motion"
}
'
{
  "code": 0,
  "message": "success",
  "data": {
    "status": "pending",
    "task_id": "task-abc123",
    "model_id": "minimax-hailuo-2.3-t2v"
  }
}

Authorizations

Authorization
string
header
required

API Key authentication. Format: Bearer YOUR_API_KEY.

Body

application/json
prompt
string
required

Video content description, supports Chinese and English. Does not support camera control instructions

Required string length: 1 - 2000
Example:

"A butterfly landing on a flower in slow motion"

prompt_optimizer
boolean
default:true

Enable automatic prompt optimization

Example:

true

duration
enum<integer>
default:6

Video duration (fixed at 6 seconds)

Available options:
6
Example:

6

resolution
enum<string>
default:720P

Video resolution (fixed at 720P)

Available options:
720P
Example:

"720P"

Response

Task submitted successfully

code
integer
required

Response code, 0 indicates success

Example:

0

message
string
required

Response message

Example:

"success"

data
object
required