AI Models
Veo 3.1 Lite
Most affordable AI video generation. Fastest and cheapest Veo variant, supports up to 1080p.
POST
$0.05/call/v1/media/queueOverview
Most affordable video generation. Fastest and cheapest Veo variant, supports up to 1080p.
| Property | Value |
|---|---|
| Model ID | google/veo-3-lite |
| Upstream Model | veo-3.1-lite-generate-preview |
| Resolutions | 720p, 1080p |
| Duration | 4, 6, or 8 seconds |
| Pricing | $0.10/sec (720p), $0.16/sec (1080p) |
Usage
All media models use the async job queue. Submit a job, then poll for the result.
Step 1: Submit Job
const res = await fetch('https://api.yepapi.com/v1/media/queue', {
method: 'POST',
headers: {
'x-api-key': 'YOUR_API_KEY',
'Content-Type': 'application/json',
},
body: JSON.stringify({
model: 'google/veo-3-lite',
prompt: 'A cat walking across a sunny windowsill',
options: {
aspectRatio: '16:9',
resolution: '720p',
duration: '4',
},
}),
});
const { data } = await res.json();
// data.jobId — use this to poll for resultscurl -X POST https://api.yepapi.com/v1/media/queue \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model": "google/veo-3-lite", "prompt": "A cat walking across a sunny windowsill", "options": {"resolution": "720p", "duration": "4"}}'Step 2: Poll for Result
const status = await fetch(`https://api.yepapi.com/v1/media/status/${data.jobId}`, {
headers: { 'x-api-key': 'YOUR_API_KEY' },
});
const { data: job } = await status.json();
// job.status — "pending" | "processing" | "completed" | "failed"
// job.result.video — { mimeType, base64 } when completedcurl https://api.yepapi.com/v1/media/status/JOB_ID \
-H "x-api-key: YOUR_API_KEY"Pricing
| Resolution | Cost/sec |
|---|---|
| 720p | $0.10 |
| 1080p | $0.16 |
Under the Hood
Powered by Google's Gemini API directly.