Vercel Functions vs Netlify Functions: pricing
Vercel Functions and Netlify Functions both bill by resource-time rather than per request. Vercel Functions is faas / fluid compute (invocation + active cpu + memory) ($0.60 / 1M) and Netlify Functions is faas (invocations + gb-hour, credit-based) (Not request-priced). Snapshot June 2026 — verify on the vendor's pricing page.
Data as of June 2026.
Vercel Functions vs Netlify Functions side by side
| Cost factor | Vercel Functions | Netlify Functions |
|---|---|---|
| Vendor | Vercel | Netlify |
| Pricing model | FaaS / Fluid compute (invocation + active CPU + memory) | FaaS (invocations + GB-hour, credit-based) |
| Per 1M requests | $0.60 / 1M | Not request-priced |
| Per GB-second | n/a | n/a |
| Free tier | Hobby (free): 1M invocations + 4 active-CPU-hours + 360 GB-hours memory + 100 GB bandwidth/month, hard-capped. Pro: $20/seat/mo with $20 usage credit; then $0.60/1M invocations + $0.128/active-CPU-hour + $0.0106/GB-hour memory. | Free plan: 300 credits/month ≈ 125,000 invocations + ~30 GB-hours compute (10 credits per GB-hour). Default memory is 1024 MB. Usage is credit-metered rather than a clean per-million rate. |
| Scale to zero | Yes | Yes |
| Egress | $0.06/GB | varies |
| Regions | Global edge + regional serverless regions (configurable). | Global CDN + regional function execution. |
Sources: Vercel pricing · Netlify pricing.
Sample monthly cost
A rough monthly total for a sample workload: 5,000,000 requests/month, each ~150 ms at 256 MB of memory, plus 25 GB of egress. Computed after each platform's free tier; excludes platform minimums and regional variation, so treat it as a starting point:
| Component | Vercel Functions | Netlify Functions |
|---|---|---|
| Compute (after free tier) | Usage-based | Usage-based |
| Egress (25 GB) | $1.50 | varies |
| Estimated total / month | Usage-based | Usage-based |
Verdict
On cost for this sample workload, Vercel Functions and Netlify Functions both bill by resource-time rather than per request. But price is not the only factor: Vercel Functions (zero-config deploys for next.js and frontend frameworks) versus Netlify Functions (tight integration with netlify cdn, builds and edge). Read each platform's full breakdown — Vercel Functions and Netlify Functions — and model your own workload in the calculator.
Frequently asked questions
Is Vercel Functions or Netlify Functions cheaper?
For a sample workload of 5M requests/month at 256 MB, 150 ms each plus 25 GB egress, Vercel Functions and Netlify Functions both bill by resource-time rather than per request. This is illustrative and after each platform's free tier; your real cost depends on memory, duration, egress and region. snapshot captured June 2026.
How do Vercel Functions and Netlify Functions price requests?
Vercel Functions: Fluid compute bills three meters: $0.60 per 1M invocations + $0.128 per active-CPU-hour (only while code runs) + $0.0106 per GB-hour of provisioned memory. Fast Origin Transfer is $0.06/GB. Pro is $20/seat/mo with a $20 usage credit. Netlify Functions: Credit-based: compute is 10 credits per GB-hour of function runtime; the Free plan gives 300 credits/month (~30 GB-hours) and 125,000 invocations. There is no clean published $/1M-request rate, so we mark per-request cost as credit-metered. Snapshot June 2026 — verify on the vendor's pricing page.
Do Vercel Functions and Netlify Functions scale to zero?
Vercel Functions: yes, no charge when idle. Netlify Functions: yes, no charge when idle. Scale-to-zero saves money for spiky traffic but adds cold-start latency on the first request.
Which has the better free tier, Vercel Functions or Netlify Functions?
Vercel Functions: Hobby (free): 1M invocations + 4 active-CPU-hours + 360 GB-hours memory + 100 GB bandwidth/month, hard-capped. Pro: $20/seat/mo with $20 usage credit; then $0.60/1M invocations + $0.128/active-CPU-hour + $0.0106/GB-hour memory. Netlify Functions: Free plan: 300 credits/month ≈ 125,000 invocations + ~30 GB-hours compute (10 credits per GB-hour). Default memory is 1024 MB. Usage is credit-metered rather than a clean per-million rate.
More comparisons
Last updated: 2026-06-21