All patterns
Notion
Snapshot from Notion
Verified on 2026-03-09

Subscription With Included Quota

Plus starts at $10/member/month; Business starts at $20/member/month.

This is not an included-usage quota product today. The official pricing page is organized around per-member collaboration plans.

The pricing ladder is straightforward: free entry, then predictable per-seat expansion as teams need more governance and features.

Implementation

This snippet is the closest Owostack implementation of the live pricing shape above. It is not a literal copy of the vendor's internal billing system.

const events = metered("events", {
  name: "Events",
});

plan("growth", {
  name: "Growth",
  price: 9900,
  currency: "USD",
  interval: "monthly",
  features: [
    events.config({
      usageModel: "included",
      limit: 50_000,
      overage: "block",
      reset: "monthly",
    }),
  ],
});

Rules

Notion's public pricing is per member, not quota-based metering.

Annual billing can reduce the effective seat price.

Enterprise pricing is custom.

Ready to implement this pattern?

Join our Discord for implementation help, or book a call to discuss how Notion's pricing model fits your product.