Tiered pricing

Charge different prices based on quantity thresholds using volume or graduated tiers.
View as Markdown

Overview

Use tiered pricing when the price per unit changes based on quantity thresholds. Tiered pricing supports two calculation methods: volume pricing (single rate for all units) and graduated pricing (different rates for each tier portion).

Common use cases include:

  • SaaS seat pricing with quantity discounts
  • API calls with tiered consumption rates
  • Bulk purchase discounts
  • Utility billing (electricity, water, cloud storage)

Volume pricing

With volume pricing, a single per-unit price applies to all units based on the total quantity purchased. The more units a customer buys, the lower the price per unit can be.

How volume pricing works

  • Define quantity tiers with per-unit prices
  • Determine which tier the total quantity falls into
  • Apply that tier’s price to all units

Example: SaaS seats

1Product: Team Plan
2Quantity tiers:
31–10 seats: $10/seat
411–50 seats: $9/seat
551+ seats: $8/seat
6
7Customer purchases 12 seats
8→ Falls into 11–50 tier
9→ Price per seat = $9
10→ Total = 12 × $9 = $108

Graduated pricing

With graduated pricing, each portion of a customer’s quantity is billed at a different rate based on the tier it falls into. This provides more granular pricing that rewards higher-volume usage.

How graduated pricing works

  • Define quantity tiers with per-unit prices
  • Each tier applies only to the portion of quantity within that tier
  • Total charge = sum of charges for each tier portion

Example: API calls

1Product: API Access
2Quantity tiers:
31–1,000 calls: $0.01 per call
41,001–5,000 calls: $0.008 per call
55,001+ calls: $0.005 per call
6
7Customer makes 3,000 calls:
8- First 1,000 calls × $0.01 = $10
9- Next 2,000 calls × $0.008 = $16
10- Total = $26

Volume vs. graduated pricing

AspectVolumeGraduated
Price calculationSingle rate for all unitsDifferent rates per tier
Best forBulk discounts, seat pricingUsage-based billing, utilities
Customer benefitPredictable per-unit costFair pricing for each usage tier

Volume pricing example

1100 units with tiers: 1-50 @ $10, 51-100 @ $8
2
3Volume: All 100 units @ $8 = $800

Graduated pricing example

1100 units with tiers: 1-50 @ $10, 51-100 @ $8
2
3Graduated:
4- First 50 units @ $10 = $500
5- Next 50 units @ $8 = $400
6- Total = $900