All models

FLUX.3 Video

flux-3-video
video

Video model from Black Forest Labs: text-to-video and image-guided generation with opening and closing keyframes for controlled scene animation. Synchronized audio. 720p/1080p, up to 20s.

Pricing

per clip · 5s

Parameters

promptrequired
seconds · · · · · · · · · · · · · · ·
size · · · · · · · · · · ·

How to use via API

import time
from openai import OpenAI
client = OpenAI(base_url="https://api.mixen.ai/v1", api_key="mxn-...")
video = client.videos.create(
model="flux-3-video",
prompt="Кот-космонавт на мотоцикле, ночь",
seconds="5",
size="720x720",
)
while video.status not in ("completed", "failed"):
time.sleep(5)
video = client.videos.retrieve(video.id)
client.videos.download_content(video.id).write_to_file("video.mp4")
Try in the botAPI docs