added

New AI Engine v25 is Now Available

We’ve made several updates to improve flexibility, consistency, and access to our newest AI model, v25 (learn more here). See what’s new below:

POST /create_video Update

  • New optional parameter:ai_engine
    • Accepts either:
      • "v24" (default)
      • "v25" – Our latest AI engine with improved accuracy, fewer hallucinations, and more realistic motion.
  • New camera motions supported byv25:
    • orbit-left
    • orbit-right
    • Note: These new motions are only supported inv25 and will not work in v24.

Example usage:

{
  "ai_engine": "v25",
  "orientation": "landscape",
  "resolution": "720p",
	"image_inputs": [
    {
      "image_url": "...",
      "camera_motion": "orbit-left"
    }
  ],
}

GET /get_video Update

  • Response now includes:
    • ai_engine at the top level
    • Each video_clips[] item also includes its respective ai_engine for traceability
{
  "ai_engine": "v25",
  "video_clips": [
    {
      "clip_url": "...",
      "ai_engine": "v25"
    }
  ]
}

POST /combine_video_clips Validation

  • Now validates that all clips must use the sameai_engine.
  • You cannot mix v24 and v25 clips in a single combined video.
    • v24 clips → v24 video, v25 clips → v25 video