← All models
Veo 3.1 Lite
video
Lightweight Google Veo 3.1: the most affordable way to generate video with audio.
Pricing
0.08 $
Second
Price uses the live FX rate — shown equals charged.
Parameters
promptrequiredseconds4 · 6 · 8size1080x1920 · 1280x720 · 1920x1080 · 720x1280How to use via API
import timefrom openai import OpenAIclient = OpenAI(base_url="https://api.mixen.ai/v1", api_key="mxn-...")video = client.videos.create(model="veo-3.1-lite",prompt="Кот-космонавт на мотоцикле, ночь",seconds="4",size="1080x1920",)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")

