Video
Veo 3.1 Lite Official video
Veo 3.1 Lite Official. Texto, imagem e primeiro/ultimo quadro em 4s, 6s ou 8s; 1080p e primeiro/ultimo quadro exigem 8s.
Category: Create · veo-3-1-lite-official
How to use & limits
- The economical family option for text-to-video, image-to-video, and first/last frame.
- prompt and duration are required; duration only accepts 4, 6, or 8 seconds.
- Accepts at most 2 images. Two images represent first and last frame and require duration: 8.
- 1080p also requires duration: 8. There is no three-reference mode or 4k resolution.
- aspect_ratio accepts 16:9, 9:16, or auto; auto requires one or two images.
Capabilities
What this model supports, straight from the schema — no pricing, no infrastructure detail.
| Capability | Value |
|---|---|
frame_mode Frame mode | Yes |
video_edit Video edit | — |
native_audio Native audio | Yes |
featuredModes FeaturedModes | |
text_to_video Text-to-video | Yes |
image_to_video Image-to-video | Yes |
reference_mode Reference mode | — |
allowed_durations Allowed durations | 4, 6, 8 |
reference_to_video Reference-to-video | — |
Parameters
Fields accepted in params (or first-class, where applicable) for POST /generations.
| Name | Label | Type | Required | Default | Options | Min / Max | Description |
|---|---|---|---|---|---|---|---|
prompt | Prompt | textarea | Required | — | — | — | Scene direction. Required. |
image_urls | Image references | multi_select | Optional | — | — | — – 2 | Optional: up to 2 images. Two represent first and last frame and require 8 seconds. |
duration | Duration | select | Required | 8 | — | — | 4, 6, or 8 seconds. First/last frame and 1080p require 8 seconds. |
aspect_ratio | Aspect ratio | select | Optional | 16:9 | 16:9 · 9:16 · auto | — | 16:9, 9:16, or auto. auto requires one or two images. |
resolution | Resolution | select | Optional | 720p | 720p · 1080p | — | 720p or 1080p; 1080p requires 8 seconds. |
sound | Generate native audio | boolean | Optional | true | — | — | Enables native video audio. Default: enabled. |
Example request
curl -X POST https://caranguejo.art/api/v1/dev/generations \
-H "Authorization: Bearer $CK" \
-H "Content-Type: application/json" \
-d '{
"model": "veo-3-1-lite-official",
"prompt": "A skincare product on pale stone, camera makes a slow push-in, morning natural light and water texture in the background.",
"params": {
"duration": 8,
"aspect_ratio": "9:16",
"resolution": "720p",
"sound": true
}
}'
const res = await fetch("https://caranguejo.art/api/v1/dev/generations", {
method: "POST",
headers: {
"Authorization": "Bearer " + process.env.CK,
"Content-Type": "application/json",
},
body: JSON.stringify({
"model": "veo-3-1-lite-official",
"prompt": "A skincare product on pale stone, camera makes a slow push-in, morning natural light and water texture in the background.",
"params": {
"duration": 8,
"aspect_ratio": "9:16",
"resolution": "720p",
"sound": true
}
}),
});
const { data } = await res.json();
Example response
{
"id": "9f0c1a7e-…",
"object": "generation",
"model": "veo-3-1-lite-official",
"type": "video",
"status": "completed",
"output": {
"assets": [
{
"url": "https://media.caranguejo.art/outputs/example.mp4",
"type": "video"
}
]
}
}
The job's real cost is returned as credits_charged on the completed response — check GET /balance for the account balance.
Common errors for this job type:
insufficient_credits | Account balance can't cover the job cost. |
content_policy_violation | Prompt or media rejected by content policy. |
generation_timeout | The job exceeded the maximum processing time. |
rate_limited | Too many requests per minute. |
invalid_input | A required parameter is missing or outside the model's schema. |
generation_failed | Generic processing failure. |