Updated July 2026

Cheap Veo 3 API: Get a Key in Minutes and Generate Video from ~$0.02/Second

The cheapest way to call Google Veo 3 by API is per-video credit pricing: sign in with Google, mint a key on the API page — no credit card required — and generate 8-second clips from roughly $0.17 each (Veo 3.1 Lite), instead of paying Google's per-second Vertex AI rates.

Key takeaways

  • Getting a Veo 3 API key takes minutes: Google sign-in, then one click on the API page — no credit card, no sales call.
  • There is no free unlimited Veo 3 API anywhere — the key is free, generation costs credits.
  • An 8s video costs 3 credits on Veo 3.1 Lite (~$0.02/s), 10 on Fast, 26 on Quality — audio included.
  • Credit packs start at $9.99 for 120 credits, one-time, valid at least 30 days (see Terms).
  • Google Vertex AI and other resellers bill roughly $0.36–$0.75 per second as of 2026 — per-video credits undercut that at every tier.
Cheapest Veo 3 API

Mint your Veo 3 API key now — no credit card required

Same Google Veo 3 models, pay-per-video credits, no monthly minimum, no enterprise contract.

No credit card required — sign in with Google and start in seconds.

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:

  1. 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.
  2. Mint your API key

    On the API dashboard, click to create a key. You get a veo_-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.
  3. Add credits and call the endpoint

    Buy a credit pack (from $9.99 for 120 credits) and send your first POST /api/generate request — 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:

ModelCredits per 8s videoCost per videoApprox. 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 / 38from ≈ $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 keyGoogle sign-in, instantCloud project / billing setup varies
Credit card to startNot requiredUsually required
Minimum spendNone — $9.99 pack entryPay-as-you-go per second
Audio + 1080pIncludedIncluded (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 Access

Your 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?

Sign in to VEO3 Gen with your Google account, open the API page, and click to create a key. The key (a veo_ prefixed token) is issued instantly — there is no application form, sales call, or Google Cloud project setup. Add credits when you are ready to generate.

Is there a free Veo 3 API key?

There is no unlimited free Veo 3 API tier anywhere — Google charges for every second of Veo generation, so anyone reselling access must too. What you can get free is the key itself: creating a VEO3 Gen account and minting an API key requires no credit card. You only pay when you buy credits to generate videos.

How much does the cheapest Veo 3 API cost?

On VEO3 Gen, an 8-second Veo 3.1 Lite video with audio costs 3 credits — roughly $0.17–$0.25 depending on your credit pack, or about $0.02 per second. Fast runs 10 credits (≈$0.55–$0.83 per 8s video) and Quality 26 credits. Credit packs start at $9.99 for 120 credits.

Is there a minimum spend or monthly fee?

No. One-time packs start at $9.99 for 120 credits with no subscription required, and purchased credits are valid for at least 30 days (see Terms). Monthly plans exist too ($9.99/180, $37.50/600, $79.99/1,200 credits) and offer the lowest effective cost per credit.

Is this the real Google Veo 3 model?

Yes. Requests run Google’s actual Veo 3 and Veo 3.1 models (Fast, Quality, and Lite variants) with native audio and 1080p output — the same models behind Vertex AI and Google Flow. Only the billing model differs: per-video credits instead of per-second metering.

Which model should I use to keep API costs down?

Draft with Veo 3.1 Lite (3–5 credits per 8s video) to iterate on prompts cheaply, then rerun the winning prompt on Fast (10 credits) or Quality (26 credits) for the final render. Shorter clips cost less too: 4-second videos cost 0.5× and 6-second videos 0.75× the 8-second price.
No credit card required

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.