Veo 3.1 Lite is Google's cost-effective video generation model, released 2026-04, built for high-volume applications and rapid iteration. It generates 720p and 1080p video with native synchronized audio from text or image prompts, at under half the cost of Veo 3.1 Fast. It supports 4–8 second clips in landscape and portrait formats, with SynthID watermarking.
This model is not routed on MirAPI yet — prices shown are the official list prices. Create an account to get notified when it goes live.
Capabilities
Video pricing
Billed per second of generated video. The rate depends on the output resolution, and on whether audio is generated with it.
- Duration
- 4–8s
- Aspect ratios
- 16:9 · 9:16
- Audio generation
- Yes
Quick Start
import os from openai import OpenAI client = OpenAI( base_url="https://api.mirapi.ai/v1", # changed api_key=os.environ["MIRAPI_API_KEY"], # changed ) resp = client.chat.completions.create( model="google/veo-3.1-lite", messages=[{"role": "user", "content": "Hello"}], )
import OpenAI from "openai"; const client = new OpenAI({ baseURL: "https://api.mirapi.ai/v1", // changed apiKey: process.env.MIRAPI_API_KEY, // changed }); const res = await client.chat.completions.create({ model: "google/veo-3.1-lite", messages: [{ role: "user", content: "Hello" }], });
curl https://api.mirapi.ai/v1/chat/completions \ -H "Authorization: Bearer $MIRAPI_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "google/veo-3.1-lite", "messages": [{"role": "user", "content": "Hello"}] }'
Links
1M free tokens to start · no card · OpenAI-compatible, one base_url change