v1

latestOpenAPI 3.1.02026-07-2611077199.5 KB

Generate four videos based on images and descriptions. This endpoint interaction is consistent with midjourney image generation endpoint, an asynchronous task

post/midjourney/video/submit

Request body

promptstring required

Video generation prompt

imageUrlstring required

Starting frame image URL. Must be a publicly accessible image URL

endingUrlstring

Ending frame image URL. Must be a publicly accessible image URL

modelstring

Video generation speed mode. Currently only supports fast mode

manualstring

Motion intensity. low - Low motion, high - High motion

resolution'hd' | 'sd'

Video resolution <br/> Different resolutions consume different amounts of quota

bs'1' | '2' | '4'

Number of videos to generate in batch

hookUrlstring

Callback notification URL. When task completes or fails, this URL will be notified. <a href="fetch" target="_self">Notification data structure</a> is consistent with fetch structure. If not set, you need to request the <a href="fetch" target="_self">fetch interface</a> for query

Example request

{
  "model": "fast"
}

Response

Request successful

statusstring required
messagestring required
dataobject required

Example response

{
  "status": "SUCCESS",
  "message": "success",
  "data": {
    "jobId": "jobId"
  }
}