Tiered Pricing

Tiered Pricing 101: Bulk Discounts That Reward Scale

Ryan Echternacht
Ryan Echternacht
·
03/13/2026

Tiered pricing lowers unit cost as usage grows. It rewards higher usage with lower per-unit prices, without requiring custom contracts.

For example, you might charge:

  • $0.002 per request for the first 50,000

  • $0.0015 for the next 150,000

  • $0.001 after 200,000

Flat pricing can limit upside, while pure pay-as-you-go can feel expensive at scale. Tiered pricing addresses this by keeping early usage simple and making larger workloads more economical.

In this article, you’ll see how tiered pricing works, when it fits, and how to enforce it correctly inside your product.

TL;DR

  • Tiered pricing (aka volume or graduated pricing) lowers unit cost as usage increases by applying different rates to specific usage bands, not retroactively repricing all usage like volume pricing.

  • Tiered pricing works best when you want predictable economics, smoother self-serve to enterprise upgrades, bulk discounts without custom contracts, and clear pricing tiers that reward scale.

  • Platforms like Schematic enforce tiered and hybrid pricing at runtime by managing usage tiers, entitlements, limits, and overage rules inside the product while Stripe handles billing.

What Is Tiered Pricing?

Tiered pricing, also called volume pricing or graduated pricing, builds bulk discounts directly into usage. Instead of one flat rate, you define a tiered pricing structure with multiple pricing tiers and different price points that apply to specific usage bands.

The tiered pricing model is a common strategy for software-as-a-service (SaaS) and other usage-driven products. When consumption increases, the marginal rate declines. 

For example, you might charge:

  • 0–10,000 events → $0.01 each

  • 10,000–100,000 → $0.008 each

  • 100,000+ → $0.006 each

Tiered pricing is calculated per band, not as one blended rate from the start.

You can apply this tiered model to almost any product or service where usage scales. Infrastructure events, API calls, storage, or messaging volume all fit naturally into different pricing tiers. 

The result is a clear pricing structure that rewards growth without requiring custom contracts.

How Tiered Pricing Works

Tiered pricing can be implemented in several ways, depending on how usage is priced as customers move through tiers. The three common approaches are graduated pricing (per use), volume pricing (per use), and volume pricing (aggregate).

Graduated Pricing (Per Use)

Graduated pricing applies different rates to different usage bands. Each band is priced independently.

Check this structure:

0–50,000 units → $0.002 50,000–200,000 units → $0.0015 200,000+ units → $0.001

If a customer consumes 250,000 units, the calculation works per band:

50,000 × $0.002 = $100 150,000 × $0.0015 = $225 50,000 × $0.001 = $50

Total charge = $375

Earlier usage keeps its original rate. Higher tiers only apply to additional usage. This model is common for APIs, messaging, infrastructure events, and AI tokens.

Volume Pricing (Per Use)

Volume pricing applies a single rate to all usage based on the highest tier reached.

Using the same tiers:

0–50,000 units → $0.002 50,000–200,000 units → $0.0015 200,000+ units → $0.001

If a customer consumes 250,000 units, the final tier rate applies to the entire volume.

250,000 × $0.001 = $250

Once a higher tier is reached, earlier usage is repriced at the lower rate. This structure creates stronger incentives for customers to increase usage.

Volume Pricing (Aggregate)

Some products use pricing tiers as fixed usage blocks instead of per-unit rates.

Example:

0–100 units → $10 101–300 units → $20 301+ units → $30

If a customer uses 180 units, the total charge is $20.

The system does not calculate the price per unit. Instead, the total usage determines which pricing level applies. This model appears in seat bundles, packaged usage tiers, and SaaS plan levels.

Key Difference

The difference comes down to how pricing is applied when usage crosses a threshold:

  • Graduated pricing lowers the marginal cost only for additional usage.

  • Volume pricing (per use) lowers the price for all usage once a tier is reached.

  • Aggregate pricing charges a fixed amount for a usage range.

Examples in the Wild

Image

Tiered pricing shows up across industries and businesses. Here are a few examples we pulled.

  • Business cards (volume-based pricing) – Vistaprint and MOO lower the per-card price as quantity increases. For example, MOO lists pricing around $0.44 per card at 50 cards versus about $0.25 per card at 1,000. 

  • Grocery retail (volume-based pricing) – Larger package sizes often cost less per ounce. Shelf labels make different tiers visible so you can compare price per unit directly.

  • SaaS messaging, Twilio SMS (graduated) – Many SaaS companies publish usage bands where the per-message rate drops as monthly volume crosses thresholds. 

  • Cloud storage, AWS S3 (graduated) – $0.023 per GB for the first 50 TB per month, $0.022 for the next 450 TB, $0.021 beyond that. 

  • Tightknit, Community Membership – Pricing increases based on community size, with different tiers tied to member count.

Image

Source: tightknit.ai

Why Teams Use Tiered Pricing

Tiered pricing keeps usage-based flexibility while building bulk discounts into your pricing options. Small accounts stay accessible. Larger accounts unlock better unit economics automatically.

That balance is one of the core benefits of tiered pricing.

Better Economics and Predictability

When usage increases, the marginal price declines. That protects revenue potential while still letting you attract customers at lower entry levels. Customers pay more only if they use more.

Clear bands also shape customer expectations. You can show the effective cost per unit inside your product so paying customers understand what drives their bill. Transparent pricing tiers increase perceived value and support customer satisfaction.

Smoother Path from Self-Serve to Enterprise

Tiered pricing lets you mirror enterprise “buy more, pay less” buying logic without custom contracts on day one. Higher-priced tiers create natural breakpoints that encourage upgrades.

Sales can use volume thresholds, commitments, or overages as structured levers instead of one-off discounts. This rewards customers for growth while keeping your pricing structure consistent for existing customers.

Operational Simplicity

Customers automatically move through different pricing tiers as usage increases. You avoid manual plan changes and the need for pricing spreadsheets.

It is also easy to migrate from PAYG to keep pricing competitive for higher usage customers.

Why Tiered Pricing Fits AI & Fast-Growing Products

Spiky AI usage makes flat PAYG feel risky. Tiered pricing offers the same simplicity with built-in bulk discounts as volume rises, while keeping entry-level pricing simple for different customer segments.

  • Fits common AI meters - You can apply different tiers to requests, tokens, minutes, images, pages, vector storage, or queries. This supports different customer segments, from small developers converting free users to enterprise buyers evaluating premium plans and advanced features.

  • Controls bill shock during spikes - Clear thresholds and visible price points help customers understand what they pay as they move into higher-priced tiers. That clarity supports customer satisfaction and protects perceived value.

  • Passes backend savings without repricing - When you reduce infrastructure costs, customers who reach higher tiers automatically receive better unit economics. This creates more value without restructuring your premium pricing.

  • Supports product-led and sales-led growth - Published tiers work for self-serve customers, while commits and tiered overage give sales predictable levers for your target market.

  • Aligns incentives by feature - You can discount specific usage drivers without custom contracts, which helps serve a broader range of needs while keeping pricing consistent.

Enforcing Tiered Pricing in Product

Designing the structure is only half the work. You must enforce the tiered pricing system correctly inside the product.

Runtime Evaluation

When you create pricing tiers, movement between different tiers must be evaluated in real time. If a customer crosses from one tier to the next at 200,000 units, pricing logic must update immediately. Delays create billing disputes and erode trust.

Usage Tracking

Accurate metering determines which band a customer sits in. This is especially important if you use user count tiers or feature-based pricing. If tracking lags or drops events, tiered pricing calculated in billing will not match what customers see in the product.

Entitlements

If higher tiers unlock additional features or premium features, those entitlements must update automatically. A customer moving from a basic tier to a higher tier should instantly receive the correct capacity, limits, or pricing options.

Overage Control

If you combine tiered pricing with base plans, commitments, or overages, those rules must apply consistently in both product and billing. Hybrid pricing models require tight coordination between usage tiers, pricing logic, and access control.

A control layer like Schematic manages plans, usage tiers, entitlements, and overage rules at runtime, while Stripe handles billing and invoicing.

Run Tiered Pricing Cleanly With Schematic

Tiered pricing keeps PAYG’s flexibility but builds bulk discounts directly into your pricing. It gives you a clear way to reward growth without relying on custom contracts or one-off negotiations.

When you design it well, you keep higher unit rates at low volumes, step down marginal cost at higher volumes, and give customers pricing they can predict. When you enforce it inside the product, you avoid disputes at tier boundaries and keep billing aligned with real usage.

The structure is simple. Execution is not.

If you run usage-based or hybrid pricing, you need real-time tier evaluation, accurate metering, and entitlements that update the moment a customer crosses a threshold.

That is where Schematic fits.

Image

Schematic is built on Stripe and sits between your product and billing. It becomes the system of record for your plans, SaaS entitlements, limits, credits, and usage tiers, then evaluates access at runtime. As the customer moves from one tier to the next, limits and access are updated immediately.

You implement pricing once, and stop rewriting billing and entitlement logic every time packaging changes.

If you run tiered or hybrid pricing and want it to scale cleanly, start a free account here.

FAQs About Tiered Pricing

What are the four common pricing models?

Four common SaaS pricing models include:

  • Flat-rate pricing

  • Tiered pricing

  • Usage-based pricing

  • Per-seat pricing

Each model structures how potential customers pay based on access, usage, or feature limits, and is typically presented clearly on a pricing page.

What is the difference between fixed and tiered pricing?

Fixed pricing charges one set price for a product or service regardless of usage or feature access. Tiered pricing offers multiple pricing levels with different limits, feature sets, or usage thresholds, allowing potential customers to choose a plan that matches their needs and budget.

What is tier 1 and tier 2 pricing?

In SaaS tiered pricing, Tier 1 typically includes basic features at a lower price point, while Tier 2 offers expanded limits or additional functionality at a higher price. These structured tiers help guide upgrades and can encourage customer loyalty.

Why do companies use tiered pricing on their pricing page?

Companies use tiered pricing on their pricing page to make options easy to compare and to serve different types of potential customers. Clear tiers with defined features and usage limits simplify buying decisions and support long-term customer loyalty.