Fixed pricing structure

Charge a fixed price for each unit of a product or service.
View as Markdown

Overview

The Fixed pricing structure is the simplest way to price a product: each unit has a fixed cost, and the total charge scales linearly with the quantity purchased.

Use fixed pricing when:

  • Each unit of your product has a consistent price
  • Customers are billed upfront for the exact number of units purchased
  • You don’t need packages, tiers, or usage-based calculationsns

How fixed pricing works

With fixed pricing:

  • Define a unit price for the product
  • Multiply by the quantity purchased
  • Generate a single invoice or checkout session for the total amount

Examples

Tiered plans

Each plan is a separate product or price with its own flat amount. Customers pick one plan, which includes a set of features.

1Products:
2├── Pro Plan
3│ ├── Price: $29/month
4│ └── Price: $290/year
5├── Enterprise Plan
6│ ├── Price: $99/month
7│ └── Price: $990/year

Unit-based pricing

Charge a fixed amount per unit, optionally with included units or add-ons.

1Product: Team Seats
2Base: 5 seats included, $50/month
3Extra seats: $10 per seat
4
5Customer orders 7 seats:
6Total = $50 + (2 × $10) = $70/month