MiniMax API v1 has been updated with new video generation models:

  • Three new models added to POST videos/create:
    • T2V-2.3 - Text-to-Video generation model
    • I2V-2.3 - Image-to-Video generation model
    • I2V-2.3-Fast - Image-to-Video Fast generation with faster processing
  • All new 2.3 models support the options parameter for resolution and duration control: 768p-6sec (default), 768p-10sec, 1080p-6sec.

T2V-2.3 - Text-to-Video generation model

curl --location 'https://api.useapi.net/v1/minimax/videos/create' \
--header 'Authorization: Bearer user:12345-…' \
--form 'model="T2V-2.3"' \
--form 'options="768p-10sec"' \
--form 'prompt="As the camera slowly zooms out, we see Pennywise the clown riding the carousel, holding a red balloon in his hand."'

Result

I2V-2.3 - Image-to-Video generation model

image

curl --location 'https://api.useapi.net/v1/minimax/videos/create' \
--header 'Authorization: Bearer user:12345-…' \
--form 'model="I2V-2.3"' \
--form 'prompt="She is dancing and spinning around"' \
--form 'options="768p-10sec"' \
--form 'fileID="user:12345-minimax:…-file:…"'

Result

I2V-2.3 - Image-to-Video generation model

image

curl --location 'https://api.useapi.net/v1/minimax/videos/create' \
--header 'Authorization: Bearer user:12345-…' \
--form 'model="I2V-2.3"' \
--form 'prompt="A pumpkin-headed figure in burning leather armor takes his head off and throws it to the camera."' \
--form 'options="768p-10sec"' \
--form 'fileID="user:12345-minimax:…-file:…"'

Result