We cry about AI tools so you don't have to.

Pricing Watch

v0 by Vercel Token Pricing: What a Real Project Actually Costs You

A $50 weekend build taught us v0 token costs scale fast. We mapped four project archetypes against each model tier—and Max Fast pricing made us wince.

v0vercelai-builderspricingtokens
Disclosure: Tool Crier may earn a commission if you buy through links in this article. We paid for these tools ourselves or tested via free trials. Commissions don't influence what we write.

A developer spent $50 on v0 over a weekend and shipped a full internal app: time tracker with authentication, role-based access, and export functions. They built it in 48 hours. Then they looked at their usage and winced.

The issue isn’t that v0 is expensive in abstract terms. It’s that the pricing page shows monthly plans ($20 Premium, $30 Team), not what your actual app will eat through in tokens. Vercel switched from message credits to token-based billing in May 2025, and the token costs per model tier vary by 30x depending which tier you pick. Nobody tells you what a medium-complexity dashboard actually burns before you hit your monthly ceiling.

We mapped four real project archetypes—landing page, internal dashboard, auth-gated SaaS MVP, and multi-page content site—against each v0 model tier and ran the math. The finding: your $20/month buys you less than you think, and the Max Fast tier ($150 per million output tokens) exists for a single use case most builders will never need.

The Token Cost Breakdown

Here’s what v0 charges per model:

ModelInput CostOutput CostBest For
v0 Mini$1/1M$5/1MQuick edits, simple components
v0 Pro$3/1M$15/1MStandard features, most tasks
v0 Max$5/1M$25/1MComplex logic, multi-view apps
v0 Max Fast$30/1M$150/1MReal-time generation, latency-critical

The gap between Mini output ($5/1M) and Max Fast output ($150/1M) is a 30x multiplier. Most builders never need Max Fast. The pricing page buries this—it just lists the plans—so you don’t realize the trap until you’re burning through your monthly budget in week one.

What Four Real Projects Actually Cost

Landing Page (Startup Brochure Site)

You’re building a 3-page site: hero, feature grid, CTA section. Each page takes roughly 15,000 input tokens and generates 8,000 output tokens. Three pages:

  • v0 Mini: $0.09 input + $0.12 output = $0.21 per page, $0.63 total
  • v0 Pro: $0.27 input + $0.36 output = $0.63 per page, $1.89 total
  • v0 Max: $0.45 input + $0.60 output = $1.05 per page, $3.15 total
  • v0 Max Fast: $2.70 input + $3.00 output = $5.70 per page, $17.10 total

This is the easiest case. A $20/month Premium plan handles dozens of these. But you rarely need Max Fast for a landing page—you’re waiting for design feedback, not fighting milliseconds.

Internal Dashboard (Auth, Roles, Charts)

A time-tracker MVP: auth login, user dashboard with role-based views, bar charts, data export. You iterate 4 times on the UI (feedback loops). Each generation: 25,000 input tokens, 15,000 output tokens.

  • v0 Mini: ($0.025 input + $0.075 output) × 4 = $0.40 total
  • v0 Pro: ($0.075 input + $0.225 output) × 4 = $1.20 total
  • v0 Max: ($0.125 input + $0.375 output) × 4 = $2.00 total
  • v0 Max Fast: ($0.75 input + $1.875 output) × 4 = $10.60 total

This is where the $50 weekend lives. If you’re on Pro iterating 4 times, you’re at $1.20 per dashboard—fine. If you iterate 10 times (realistic for auth + role system), you’re at $3.00. Still under your $20 monthly ceiling. But add a second dashboard, a third, and you’re overrunning the Premium plan within 48 hours. That’s exactly what happened in the HN $50 thread.

SaaS MVP (Multi-Page, Auth, Database Schema)

5-page app: login, settings, main feature, admin panel, billing page. Each page averages 8 iterations (complex features compound). Per page: 30,000 input, 18,000 output.

  • v0 Mini: ($0.030 input + $0.090 output) × 8 × 5 = $4.80 total
  • v0 Pro: ($0.090 input + $0.270 output) × 8 × 5 = $14.40 total
  • v0 Max: ($0.150 input + $0.450 output) × 8 × 5 = $24.00 total
  • v0 Max Fast: ($0.900 input + $2.250 output) × 8 × 5 = $126.00 total

On Pro, you’re at $14.40 and still under the $20 monthly limit. But that’s pure UI generation—no backend schema review, no API integration loops. Once you add database refinement prompts, you’re bleeding into overage. Max Fast for a startup MVP is economic nonsense—$126 for a UI you’re going to throw away in beta anyway.

Content Site (20+ Articles, Built in v0)

You’re auto-generating 20 blog post landing pages via v0. Each article page: 12,000 input, 10,000 output. Plus 5 template refinement passes.

  • v0 Mini: ($0.012 input + $0.050 output) × 20 + ($0.012 input + $0.050 output) × 5 = $1.65 total
  • v0 Pro: ($0.036 input + $0.150 output) × 20 + ($0.036 input + $0.150 output) × 5 = $4.95 total
  • v0 Max: ($0.060 input + $0.250 output) × 20 + ($0.060 input + $0.250 output) × 5 = $8.25 total
  • v0 Max Fast: ($0.360 input + $1.250 output) × 20 + ($0.360 input + $1.250 output) × 5 = $54.00 total

Mini wins decisively for content. You’re at $1.65. The only reason to upgrade to Pro is if you’re doing design-heavy iteration; at $4.95, you’re still cheap. Max Fast is absurd—you’re paying $54 to generate static landing pages.

The Hidden Vercel Hosting Cost

The pricing page never mentions this: production deployment on Vercel runs an additional $20/month platform fee, separate from v0 token spend. So when you ship that dashboard or SaaS MVP, you’re not just paying for generation—you’re paying $20 + tokens + bandwidth overages. Most v0 users discover this after they’ve already burned through their credits and wonder why the bill is larger than expected.

If you’re building for production, budget: v0 tokens + $20 Vercel platform + domain (~$12/year) + any other services your app needs. A $20/month Premium plan suddenly looks like $40/month at the infrastructure layer, before you’ve used any bandwidth.

When Max Fast Makes Sense (Spoiler: Almost Never)

$30 input, $150 output per million tokens. At those rates, Max Fast is engineered for exactly one workflow: real-time UI generation in a streaming context where you need sub-second latency. Think: live prompt refinement where the user sees the component render as tokens arrive. That’s it. Most projects generate offline (submit → wait → deploy), so latency is irrelevant. The vast majority of v0 builders won’t hit this use case.

If you’re iterating on a dashboard, a landing page, or a content site, Max Mini or Pro will ship everything you need at 1/6th to 1/30th the cost.

How This Compares to Alternatives

We tested how Lovable and Bolt handle token consumption differently. Replit’s effort-based billing sidesteps per-token pricing entirely. And frontier LLM APIs like Claude and GPT-4 have their own per-token costs that can undercut v0 if you’re willing to handle deployment yourself.

The trade-off: v0 bundles generation + deployment + visual feedback into one interface. You pay the convenience premium. Lovable and Bolt price similarly. Raw API access (Claude, GPT-4, Anthropic) is cheaper per token but requires more engineering effort to wire into a UI framework and deploy.

For small projects (landing pages, internal dashboards), v0 Mini is genuinely competitive. For large SaaS MVPs, the token bill grows fast enough that you’re often better off building the backend separately and only using v0 for UI components.

The Bottom Line

Your $20/month Premium plan buys you a working landing page or a lightweight dashboard, not a full SaaS MVP. If you’re reaching for v0 Pro or Max regularly, you’re either iterating hard or building something too complex for token-based pricing to remain transparent. Max Fast pricing is a trap door for everyone except latency-obsessed real-time builders. Budget accordingly, and don’t be surprised when your 48-hour weekend project costs $50—that’s actually within the design of the pricing model, even if Vercel doesn’t advertise it that way.

← More Pricing Watchs

What we don't know is documented at the end of this article. We update when we learn more.