Veo 3 Lite
VideoNot available
Google Veo 3 Lite text-to-video (efficiency mode). Up to 8 seconds.
- Type
- Text to Video
- Billed
- per vid
- Provider
Pricing
/ vidPrice$5.00 / vid
Supported parameters
modelSettings- Promptprompt
- Aspect Ratioaspect_ratio
- Durationduration
- Resolutionresolution
Code examples
POST /v1/generationsGenerations are async — the request returns immediately with an id; poll for the result.
python
import requests
response = requests.post(
"https://api.modelstack.cc/v1/generations",
headers={"Authorization": "Bearer sk_YOUR_API_KEY"},
json={
"type": "TEXT_TO_VIDEO",
"prompt": "A serene mountain landscape at sunset",
"model": "google/veo3-lite",
"modelSettings": {
"aspect_ratio": "16:9",
"duration": "5",
"resolution": "1K"
}
},
)
generation_id = response.json()["data"]["id"]
# Poll for the result
result = requests.get(
f"https://api.modelstack.cc/v1/generations/{generation_id}",
headers={"Authorization": "Bearer sk_YOUR_API_KEY"},
).json()
print(result["data"]["status"])Related models
Other generation types for this model
More from Google
Frequently asked questions
How is Veo 3 Lite billed on ModelStack?expand_more
Veo 3 Lite (Text to Video) is billed at a flat, prepaid rate of $5.00 / vid — generation pricing has no tier-based discounts. Final request costs are available in the console.
What other generation types does Veo 3 Lite support?expand_more
Besides Text to Video, Veo 3 Lite also supports: Image to Video.
Which parameters does Veo 3 Lite support?expand_more
Veo 3 Lite supports: Prompt, Aspect Ratio, Duration, Resolution.
How can I generate with Veo 3 Lite?expand_more
Use the Generate composer in your dashboard, or call the API directly with model `google/veo3-lite` and type `TEXT_TO_VIDEO` — see the code example above.