Understanding fee calculation helps you price tickets accurately and communicate costs to attendees. This document provides the exact formulas and examples.
Fee Components
Stripe Processing Fee
BrightStar Platform Fee
Currency Conversion (if applicable)
Calculation Formula
// Fee Calculation Formula
ticket_price = 100.00 // $100 ticket
tier = "elevate"
// BrightStar Fee (Elevate)
bs_fixed = 0.89
bs_percent = 0.0185
bs_fee = bs_fixed + (ticket_price * bs_percent)
// bs_fee = 0.89 + 1.85 = $2.74
// Stripe Fee (domestic)
stripe_percent = 0.029
stripe_fixed = 0.30
// If passing fees to buyer:
total_charge = ticket_price + bs_fee
stripe_fee = (total_charge * stripe_percent) + stripe_fixed
// stripe_fee = (102.74 * 0.029) + 0.30 = $3.28
buyer_pays = total_charge + stripe_fee
// buyer_pays = $106.02
organizer_receives = ticket_price
// organizer_receives = $100.00Interactive fee calculator
Interactive component coming soon
Fee Absorption Options
Pass Fees to Buyer (Default)
Absorb Fees into Price
Partial Absorption
Edge Cases
Free Tickets ($0) No fees charged. Payment processing skipped.
Very Low Price (<$5) Fixed fees become significant. $5 ticket + $2.74 BS + $0.45 Stripe = 64% fee ratio Consider absorbing for low-price tickets.
Donation Add-ons Fees calculated on total (ticket + donation).
Discount Codes Fees calculated on discounted price. 20% off $100 = $80, fees on $80.