Subscription Pricing Models

Subscription-based pricing provides predictable, recurring revenue. These models are perfect for SaaS platforms where you charge for access, regardless of usage.

1. Setup Fee

Charge customers a one-time fee for onboarding, setup, training, or integration work.

📖 Real-World Scenario

Alex runs an enterprise AI analytics platform called 'DataMind AI'. Each new enterprise customer requires 2-3 weeks of dedicated work: custom data pipeline setup, security configurations, employee training sessions, and integration with their existing tools (Salesforce, Slack, databases). This initial effort costs Alex's team significant time and resources, but he can't charge monthly fees that would cover this upfront investment.

💡 Solution

Alex implements a $5,000 one-time setup fee that's separate from the ongoing subscription. This ensures he's fairly compensated for the initial integration work:

Setup Fee Structure:

  • Small Business: $2,500 - Basic setup + 2 training sessions
  • Mid-Market: $5,000 - Full setup + custom integrations
  • Enterprise: $15,000 - White-glove setup + dedicated support

After paying the setup fee once, customers transition to monthly usage-based pricing.

✅ Result

Alex successfully onboards 12 enterprise customers in Q1, generating $60,000 in setup fees alone. Customers appreciate the transparency - they understand the one-time cost covers real integration work, while ongoing costs are based on actual AI usage.

2. Platform Fee

Charge a recurring base fee for platform access, regardless of usage. Perfect for ensuring predictable monthly revenue while also offering usage-based pricing.

📖 Real-World Scenario

Maria built 'CodeReview AI', an AI-powered code review tool for development teams. She faces a dilemma: some customers use it heavily (reviewing 100+ pull requests per week), while others use it lightly (10-20 PRs per week). Pure usage-based pricing means unpredictable revenue. She needs steady cash flow to pay her team, but also wants fair usage-based pricing for AI costs.

💡 Solution

Maria implements a hybrid pricing model with a monthly platform fee plus usage-based charges:

Starter

$99/mo

  • • Up to 5 team members
  • • Platform access
  • • Basic features
  • • + AI usage costs

Professional

$299/mo

  • • Up to 25 team members
  • • All features
  • • Priority support
  • • + AI usage costs

Enterprise

$999/mo

  • • Unlimited team members
  • • Custom integrations
  • • Dedicated support
  • • + AI usage costs

Customers pay the platform fee for access + support, then pay additional costs based on AI code reviews performed.

✅ Result

Maria now has $15,000/month in predictable recurring revenue from 50 customers on various platform tiers. Usage-based AI costs add another $8,000-$12,000/month depending on usage. This hybrid model gives her financial stability while keeping pricing fair for customers.

3. Per-Seat Pricing

Charge based on the number of users or team members using your AI platform. Revenue scales naturally with team size.

📖 Real-World Scenario

Tom's AI writing assistant 'ContentGenius' is used by marketing teams to generate blog posts, social media content, and ad copy. Each team member needs their own account to manage their projects, track their content, and access personalized AI suggestions. A 5-person startup has very different needs than a 50-person agency. Tom needs pricing that scales fairly with team size.

💡 Solution

Tom implements $29/month per seat pricing with volume discounts:

Pricing Structure
1// Per-seat pricing calculation
2const basePricePerSeat = 29; // $29/seat/month
3
4function calculateMonthlyPrice(numberOfSeats: number): number {
5  let discount = 1.0;
6  
7  if (numberOfSeats >= 50) {
8    discount = 0.80; // 20% discount for 50+ seats
9  } else if (numberOfSeats >= 20) {
10    discount = 0.90; // 10% discount for 20-49 seats
11  } else if (numberOfSeats >= 10) {
12    discount = 0.95; // 5% discount for 10-19 seats
13  }
14  
15  return numberOfSeats * basePricePerSeat * discount;
16}
17
18// Examples
19calculateMonthlyPrice(5);  // $145/month (5 × $29)
20calculateMonthlyPrice(20); // $522/month (20 × $29 × 0.90)
21calculateMonthlyPrice(50); // $1,160/month (50 × $29 × 0.80)

Real Customer Examples:

  • Startup (5 seats): $145/month - Full access for small team
  • Growing Agency (20 seats): $522/month - 10% discount kicks in
  • Enterprise (100 seats): $2,320/month - 20% discount + priority support

✅ Result

ContentGenius now serves 300 customers with an average of 12 seats each, generating $104,400/month in recurring revenue. Teams love that pricing is simple and predictable - they know exactly what they'll pay each month. As teams grow, they simply add more seats.

Combining Subscription Models

Pro Tip: Many successful AI platforms combine multiple subscription models:

  • Setup Fee + Platform Fee: Charge for initial integration, then monthly access
  • Platform Fee + Per-Seat: Base platform fee + additional cost per user
  • Per-Seat + Usage-Based: Charge per user, plus AI usage costs on top

The key is finding the right balance between predictable revenue and fair usage-based pricing.

Need help? Contact us at support@withpaygent.com