Use POST /mj/submit/video in CometAPI to submit a Midjourney video job, set parameters, and track processing for generated video output.
curl --request POST \
--url https://api.cometapi.com/mj/submit/video \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"motion": "low",
"image": "https://storage.fonedis.cc/attachments/1372468820912115716/1388566717961338880/hyper_realistic_3d_rendering_pink_tulip_style_686021570d5ec4451c1c120a.jpg?ex=68617307&is=68602187&hm=f939f10d79de24e3ed0f2c4dc1453c902ee6b383d13d9a1787eacfccfadb9488&"
}
'{
"code": 123,
"description": "<string>",
"result": "<string>",
"properties": {
"prompt": "<string>"
}
}Use this endpoint to turn a Midjourney image result into a short video render.Documentation Index
Fetch the complete documentation index at: https://apidoc.cometapi.com/llms.txt
Use this file to discover all available pages before exploring further.
Poll until the task finishes
Bearer token authentication. Use your CometAPI key.
Motion intensity of the generated video.
low, high First-frame image as a public URL or base64-encoded data URI.
Text prompt to guide the video generation.
Action to perform on an existing video task. When set, index and taskId are required.
Zero-based index selecting which video variant to act on from the parent task.
Parent task id to continue from. Required when action is set.
Custom state string. Returned as-is in the task result and webhook callback for your own tracking.
When true, return the original provider video URL instead of a CometAPI-proxied link.
Video model variant, e.g. vid_1.1_i2v_480 (480p) or vid_1.1_i2v_720 (720p).
curl --request POST \
--url https://api.cometapi.com/mj/submit/video \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"motion": "low",
"image": "https://storage.fonedis.cc/attachments/1372468820912115716/1388566717961338880/hyper_realistic_3d_rendering_pink_tulip_style_686021570d5ec4451c1c120a.jpg?ex=68617307&is=68602187&hm=f939f10d79de24e3ed0f2c4dc1453c902ee6b383d13d9a1787eacfccfadb9488&"
}
'{
"code": 123,
"description": "<string>",
"result": "<string>",
"properties": {
"prompt": "<string>"
}
}