How to get a Veo 3 API key (3 steps, no credit card)
Most people searching for a cheap Veo 3 API are really blocked on one thing: getting a working key without a Google Cloud project, a billing account, and Vertex AI quota approval. Here the whole process is three steps:
Sign in with Google
Create your account on the API page using Google OAuth. No credit card is required to sign up, and there is no approval queue — the account is live immediately.Mint your API key
On the API dashboard, click to create a key. You get aveo_-prefixed token instantly; you can create multiple keys, name them per project, and revoke any of them at any time. Store it server-side — never ship it in client code.Add credits and call the endpoint
Buy a credit pack (from $9.99 for 120 credits) and send your firstPOST /api/generaterequest — the copy-paste curl and JavaScript examples are below, and the API docs cover every parameter.
What cheap Veo 3 API access actually costs in 2026
VEO3 Gen bills per video, in credits, with audio included. An 8-second generation costs a fixed credit amount per model; 4-second clips cost 0.5× and 6-second clips 0.75× of that. Depending on which pack you buy, a credit costs between $0.055 and $0.083 — which works out like this:
| Model | Credits per 8s video | Cost per video | Approx. per second |
|---|---|---|---|
| Veo 3.1 Lite (720p–1080p + audio) | 3–5 | ≈ $0.17 – $0.42 | ≈ $0.02 – $0.05/s |
| Veo 3 Fast (720p/1080p + audio) | 10 | ≈ $0.55 – $0.83 | ≈ $0.07 – $0.10/s |
| Veo 3 Quality (720p/1080p + audio) | 26 | ≈ $1.43 – $2.16 | ≈ $0.18 – $0.27/s |
| 4K (Veo 3.1 Fast / Quality) | 22 / 38 | from ≈ $1.21 / $2.09 | — |
Credits come in one-time packs — $9.99 for 120, $37.50 for 450, $79.99 for 1,000 — or monthly subscriptions with better rates: $9.99 for 180, $37.50 for 600, or $79.99 for 1,200 credits per month. There is no minimum spend and no contract; purchased credits are valid for at least 30 days (see Terms). Full details are on the pricing page.
Cheap Veo 3 API vs Google Vertex AI and other providers
Everyone in this market serves the same underlying Google models, so the comparison comes down to billing model and entry friction. Per-second metering (Google Vertex AI, and resellers like fal.ai and Replicate) ranges from roughly $0.36 to $0.75 per second as of 2026 — $2.88 to $6.00 for one 8-second clip. Per-video credits change the math:
| VEO3 Gen (credits) | Per-second providers | |
|---|---|---|
| 8s video, draft tier | ≈ $0.17 – $0.42 (Lite) | ≈ $2.88+ at $0.36/s |
| 8s video, production tier | ≈ $0.55 – $2.16 (Fast / Quality) | ≈ $2.88 – $6.00 |
| Getting a key | Google sign-in, instant | Cloud project / billing setup varies |
| Credit card to start | Not required | Usually required |
| Minimum spend | None — $9.99 pack entry | Pay-as-you-go per second |
| Audio + 1080p | Included | Included (pricing varies) |
The gap is widest exactly where developers spend most of their budget: iteration. Prompt engineering a usable clip typically takes several attempts, and at $0.36–$0.75 per second each discarded draft costs dollars. At Lite's ~$0.17–$0.25 per draft, a ten-attempt session costs about two dollars instead of thirty. For the full provider-by-provider numbers, see the Veo 3 API pricing comparison.
Key in minutes, first video for pennies — start with a $9.99 pack.
Get API AccessYour first request: curl and JavaScript
Generation is asynchronous: you submit a job, get a taskId, and poll for the finished video URL. Submitting a job looks like this:
curl -X POST https://api.veo3gen.app/api/generate \
-H "Authorization: Bearer veo_your_api_key_here" \
-H "Content-Type: application/json" \
-d '{
"model": "veo3-fast",
"modelVersion": "3.1",
"prompt": "A majestic eagle soaring over snow-capped mountains",
"audio": true,
"options": { "aspectRatio": "16:9", "resolution": "1080p" }
}'The response confirms the job and the exact credit cost before anything is deducted from a failed generation (failures are refunded automatically):
{
"success": true,
"taskId": "veo_1704067200000_abc123",
"status": "pending",
"creditsRequired": 10,
"estimatedTime": "1-3 minutes"
}Then poll the status endpoint until the video is ready — in JavaScript:
const res = await fetch(
'https://api.veo3gen.app/api/status/' + taskId,
{ headers: { Authorization: 'Bearer ' + process.env.VEO_API_KEY } }
)
const job = await res.json()
if (job.status === 'completed') console.log(job.videoUrl)That is the entire integration surface: one endpoint to create, one to poll. The getting-started guide walks through error handling, webhooks-free polling patterns, and image-to-video requests.
How to keep your per-video cost down
A few habits reliably cut Veo 3 API bills by half or more, whatever you are building:
- Draft on Lite, ship on Fast or Quality. Iterate prompts at 3–5 credits per attempt, then rerun only the winning prompt on a production model. This is the single biggest saving for any iterative workflow.
- Use shorter durations while testing. A 4-second clip costs half the 8-second price — enough to judge motion, framing, and style before committing.
- Subscribe if you generate monthly. The subscription tiers price credits as low as ≈$0.055 each versus ≈$0.083 on the smallest one-time pack — about a third cheaper per video at volume.
- Skip 4K until final delivery. 1080p costs the base credit rate; reserve the 22–38 credit 4K renders (Veo 3.1) for approved finals.
These economics are why the API suits startups prototyping video features, SaaS products embedding generation for their users, agencies batching client content, and solo developers who want to experiment without an enterprise bill. Because pricing is per video, costs scale linearly with usage — there is no tier cliff where your unit cost suddenly jumps. If you are new to the API itself, What is the Veo 3 API? covers the capability side: text-to-video, image-to-video, native audio with dialogue and sound effects, and 16:9 or 9:16 output.
Frequently asked questions
How do I get a Veo 3 API key?
Is there a free Veo 3 API key?
How much does the cheapest Veo 3 API cost?
Is there a minimum spend or monthly fee?
Is this the real Google Veo 3 model?
Which model should I use to keep API costs down?
Get your cheap Veo 3 API key now
Sign in with Google, mint a key in minutes, and generate real Veo 3 video from about $0.17 a clip.
No credit card required — sign in with Google and start in seconds.