Skip to main content
Plans are configured in the Nozle dashboard and served through the GET /api/v1/plans endpoint. Default plan tiers:
PlanMonthly PriceEvent LimitMRR Limit
Starter$50/mo50,000$5,000
Growth$100/mo10,000,000$100,000
Scale$500/mo100,000,000$1,000,000
EnterpriseCustomCustomCustom
Plan features by tier:
  • Starter: core billing + entitlements
  • Growth: + revenue_analytics, remove_branding_watermark, auto_dunning, progressive_billing, lifetime_usage
  • Scale: + all integrations (netsuite, xero, hubspot, salesforce, okta, avalara), api_permissions, custom_roles, forecasted_usage, security_logs, from_email, issue_receipts, manual_payments, multi_entities_pro
Fetching plans in your app: React: usePlans() hook
const { plans, isLoading } = usePlans();
Node:
const plans = await nozle.plans();
Python:
plans = nozle.plans()