Patreon Fee Calculator 2026

Patreon fee calculator: get a detailed breakdown of all creator fees including PayPal, credit card, and payout costs before you earn.

Total Net Earnings
$0.00
Take-home: 0.00%
Total Fees $0.00
Platform Fee $0.00
Income Details
$
Platform Settings
Summary Chart
Net Earnings
$0.00
Platform Fee
$0.00
Processing Fee
$0.00
Payout Fee
$0.00
Fee Breakdown
Platform Fee -$0.00
Processing Fee -$0.00
Payout Fee -$0.00
Total Fees -$0.00

What Is the Patreon Fee Calculator?

The calculator is a JavaScript-powered tool that takes a creator’s monthly earnings, patron count, and plan/processor selections to compute every Patreon fee layer and display the true take-home amount. It applies three sequential fee deductions — platform fee, payment processing fee, and payout fee — then renders the net result in a dashboard and donut chart.

Calculator Inputs Explained

Input FieldID in CodeOptions / RangeDefault Value
Monthly Earnings ($)ptEarningsAny number ≥ 0$5,000.00
Number of PatronsptPatronsAny integer ≥ 0100
Patreon PlanptPlanLite/Founders, Pro, PremiumPro (8%)
Payment ProcessorptProcessorCredit Card, PayPal US, PayPal Non-USCredit Card (2.9% + $0.30)
Payout MethodptPayoutDirect Deposit, PayPal, PayoneerDirect Deposit ($0.25)
Micropayments ToggleptMicroChecked / UncheckedUnchecked

Platform Fee Chart (Fee Layer 1)

This is deducted as a straight percentage of total monthly earnings.

Plan NamePlatform Fee RateBest ForCode Value
Lite / Founders5%Legacy creators (pre-May 2019)0.05
Pro (default)8%Most active creators0.08
Premium12%Large teams, high-volume creators0.12

Formula used in code:

textplatformFee = earnings × planRate

Example: $5,000 × 8% = $400.00

Payment Processing Fee Chart (Fee Layer 2)

This fee covers secure transaction infrastructure and varies by payment method and pledge size.

Standard Rate (Pledges > $3)

Processor Option% RateFixed Fee Per PatronCode Key
Credit Card / Apple Pay2.9%$0.30std_us
PayPal / Venmo (US)2.9%$0.30pp_us
PayPal / Venmo (Non-US)3.9%$0.30pp_intl

Micropayment Rate (Pledges ≤ $3)

Condition% RateFixed Fee Per PatronToggle
Micropayments enabled5.0%$0.10ptMicro checked

Formula used in code:

textprocessingFee = (earnings × procRate) + (patrons × procFixed)

Example (100 patrons, Credit Card): ($5,000 × 0.029) + (100 × $0.30) = $145 + $30 = $175.00

The fixed per-patron component means creators with more patrons pay more in processing even at the same earnings level.

Payout Fee Chart (Fee Layer 3)

Applied to the remaining balance after platform + processing fees are deducted.

Payout MethodFee StructureMin FeeMax FeeCode Key
Direct Deposit$0.25 flat$0.25$0.25direct
PayPal1% of balance$0.25$20.00paypal
Payoneer$1.00 flat$1.00$1.00payoneer

Formula used in code (PayPal payout):

textrawPayFee = remainingBalance × 0.01
payoutFee = clamp(rawPayFee, $0.25, $20.00)

Complete Fee Calculation Formula

The code executes all four steps in sequence:

StepWhat Is CalculatedFormula
1Platform Feeearnings × planRate
2Processing Fee(earnings × procRate) + (patrons × procFixed)
3Payout FeeBased on remaining balance and method
4Total FeesplatformFee + processingFee + payoutFee
5Net Earningsmax(0, earnings − totalFees)
6Take-home %(netEarnings / earnings) × 100

Worked Examples Across All Plans

All examples use 100 patrons, Credit Card processor, and Direct Deposit payout.

ScenarioEarningsPlatform FeeProcessing FeePayout FeeTotal FeesNet EarningsTake-home %
Lite Plan (5%)$5,000$250.00$175.00$0.25$425.25$4,574.7591.49%
Pro Plan (8%)$5,000$400.00$175.00$0.25$575.25$4,424.7588.50%
Premium Plan (12%)$5,000$600.00$175.00$0.25$775.25$4,224.7584.50%
Pro + Micropayments$5,000$400.00$260.00*$0.25$660.25$4,339.7586.80%
Pro + PayPal Non-US$5,000$400.00$225.00**$0.25$625.25$4,374.7587.49%

*Micropayments: ($5,000 × 5%) + (100 × $0.10) = $250 + $10 = $260
**Non-US: ($5,000 × 3.9%) + (100 × $0.30) = $195 + $30 = $225

Payout Method Impact (Pro Plan, $5,000, 100 Patrons)

Payout MethodRemaining BalancePayout Fee CalcPayout FeeFinal Net
Direct Deposit$4,424.75Flat $0.25$0.25$4,424.50
PayPal$4,424.75$4,424.75 × 1% = $44.25 → capped at $20$20.00$4,404.75
Payoneer$4,424.75Flat $1.00$1.00$4,423.75

More Tool:

Amazon FBA Profit Calculator 2026 - Fee Calculator | Find the Most Accurate Fees

Amazon FBA Fees Calculator: Quickly and accurately estimate your Amazon FBA costs to maximize profit margins and scale your e-commerce business effectively.

Operating System: Web

Application Category: FinanceApplication

Editor's Rating:
5
HTML Snippets Powered By : XYZScripts.com
Scroll to Top