Skip to main content
POST
/
v1
/
ai
/
image-to-video
/
minimax-live
MiniMax Video 01 Live - Create video from image
curl --request POST \
  --url https://api.freepik.com/v1/ai/image-to-video/minimax-live \
  --header 'Content-Type: application/json' \
  --header 'x-freepik-api-key: <api-key>' \
  --data '
{
  "prompt": "The illustration comes to life with gentle movements [Static shot]",
  "image_url": "https://example.com/illustration.jpg",
  "webhook_url": "<string>",
  "prompt_optimizer": true
}
'
{
  "data": {
    "generated": [],
    "task_id": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
    "status": "CREATED"
  }
}

Authorizations

x-freepik-api-key
string
header
required

Your Freepik API key. Required for authentication. Learn how to obtain an API key

Body

application/json
prompt
string
required

Text description of the video motion to generate. Supports camera movements in square brackets:

  • [Truck left], [Truck right]: Camera moves horizontally
  • [Pan left], [Pan right]: Camera rotates horizontally
  • [Push in], [Pull out]: Camera moves closer/further
  • [Pedestal up], [Pedestal down]: Camera moves vertically
  • [Tilt up], [Tilt down]: Camera tilts
  • [Zoom in], [Zoom out]: Lens zoom
  • [Shake]: Camera shake effect
  • [Tracking shot]: Camera follows subject
  • [Static shot]: No camera movement
Maximum string length: 2000
Example:

"The illustration comes to life with gentle movements [Static shot]"

image_url
string<uri>
required

URL of the source image to animate. Works best with illustrations and artwork.

Example:

"https://example.com/illustration.jpg"

webhook_url
string<uri>

Webhook URL to notify when the task is completed

prompt_optimizer
boolean
default:true

Enable automatic prompt enhancement for better video generation results

Response

OK - The task exists and the status is returned

data
object
required
Example:
{
"task_id": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"status": "CREATED",
"generated": [
"https://openapi-generator.tech",
"https://openapi-generator.tech"
]
}