The Art of SaaS Pricing
Pricing directly impacts revenue and growth. Underprice and you struggle to fund product. Overprice and you lose customers to competitors. The sweet spot maximizes lifetime customer value.
Tiered Pricing Models
Most successful SaaS uses tiered pricing: Starter, Professional, Enterprise.
Starter Plan ($29/month):
- 5 projects
- 1000 API calls/month
- Basic support
- Target: early-stage startups, side projects
Professional Plan ($99/month):
- 50 projects
- 100k API calls/month
- Priority support
- Advanced analytics
- Target: growing teams
Enterprise Plan (custom):
- Unlimited everything
- Dedicated support
- Custom integrations
- Target: enterprises with specific needs
Each tier should feel like an upgrade, not a limitation. A customer on Starter hitting 1000 API calls easily upgrades to Professional.
Usage-Based Billing
For usage-heavy products, charge per unit: API calls, storage, compute. This aligns price with value delivered.
type UsageMetric = {
apiCalls: number;
storageGb: number;
monthlyUsers: number;
};
function calculateUsageCharge(usage: UsageMetric) {
return (
usage.apiCalls * 0.0001 + // $0.01 per 100 calls
usage.storageGb * 0.10 + // $0.10 per GB
usage.monthlyUsers * 0.50 // $0.50 per user
);
}
Usage-based pricing works best when:
- Usage scales with customer value
- Customers understand consumption patterns
- Metering is accurate and transparent
Annual Commitments
Annual billing improves cash flow and retention. Offer 20-30% discount for annual payment:
- Monthly: $99/month = $1188/year
- Annual: $840/month equivalent = $10,080/year (15% savings)
Annual customers have lower churn (psychological commitment) and lower billing overhead.
Value-Based Pricing
Price based on value delivered, not cost. If your SaaS saves customers $10k/year, charge $2k-3k annually—10-30% of value.
Calculate your value metric:
- How much revenue does your product generate?
- How much cost does it save?
- How much time does it save?
Use this to justify pricing to enterprise buyers.
Freemium Strategy
Free tiers drive adoption but must convert to paid. Design free tiers:
- Generous enough to deliver real value (daily users, not one-time)
- Constrained enough to necessitate upgrade (limits hit within weeks)
- Showcase premium features (users experience value of paid)
Ideal conversion: 2-5% of free users to paying. Anything lower indicates insufficient value or high friction.
Competitive Positioning
Research competitor pricing. Position yourself:
Premium: 20-30% more expensive. Justify with superior features or support. Competitive: Within 10% of market leader. Compete on features and experience. Budget: 30%+ cheaper. Sacrifice features or support for affordability.
Changing pricing mid-company is hard. Start at sustainable positioning.
Testing and Optimization
A/B test pricing:
- Landing page: show different prices to different visitors
- Messaging: emphasize value to justify price
- Tiers: test 3-tier vs 4-tier models
- Payment terms: annual vs monthly conversion
Measure:
- Conversion rate per tier
- Monthly recurring revenue (MRR)
- Customer acquisition cost (CAC)
- Lifetime value (LTV)
- LTV:CAC ratio (target 3:1 or higher)
Adjust quarterly based on data.
Frequently asked questions
When should we switch from tiered to usage-based pricing?
Switch when usage variation is high and aligns with value. Products like cloud infrastructure benefit immediately. B2B SaaS with similar usage patterns per company benefit less. Start with tiered, add usage-based on top for flexibility.
How do we handle customer price increases?
Grandfather existing customers for 6-12 months. Communicate changes 3 months ahead with clear rationale. Offer incentives for longer commitments. 10-20% increases are acceptable if delivered value increased. Communicate proactively to prevent churn.
What pricing works best for B2B vs B2C SaaS?
B2B favors higher prices with fewer, larger customers. B2C favors lower per-user prices with many customers. B2B typically $10-100/month/seat. B2C typically $5-50/month/user. Adjust based on customer acquisition cost and lifetime value.