Ticket Fees — How to Choose Event Payments Without Eroding Your Margin
> cd .. / HUB_EDITORIALE
Software Gestionali

Ticket Fees — How to Choose Event Payments Without Eroding Your Margin

[2026-08-07] Author: Ing. Calogero Bono
> share
Zenithby Meteora Web The operating system for your business. Social, clients, bookings and invoices in one platform. Gyms, barbers, professionals. Discover Zenith Free demo · no card

You organize an event, sell 500 tickets at 30 euros each, and discover your actual revenue is 13,000 euros instead of 15,000. Where did the 2,000 euros go? Between platform fees, payment gateways, VAT, and rounding. The problem isn't the ticket price — it's the hidden cost of every transaction.

We, at Meteora Web, come from accounting — budgets, double-entry bookkeeping, VAT returns — and when we build ticketing software for our clients, the first question is never "what design do you want?" but "how much does each sale cost you?". Because if you don't know, you're organizing events to give away margins to someone else.

How do ticket fees work and why do they vary so much?

Every online ticket sale goes through a chain of intermediaries, and each one takes its cut. Understanding who takes what is the first step to not being surprised.

The three cost levels in every transaction

1. Ticketing platform fee. If you use Eventbrite, Ticketmaster, or similar, you pay a percentage on the ticket price — typically 5% to 10% — plus a fixed cost per transaction. On a 25-euro ticket, that's 1.25-2.50 euros just for the platform.

2. Payment gateway fee. Stripe, PayPal, Nexi, and other processors take a percentage (typically 1.5%-3.5%) plus a fixed amount (0.20-0.50 euros) per transaction. This fee applies to the entire amount, including the platform fee.

Sponsored Protocol

3. Banking and management costs. If the platform credits you with frequent bank transfers, you might pay fees for each transfer. Some platforms also charge conversion costs if you sell in different currencies.

The result? On a 25-euro ticket, between platform and gateway you can lose 2-4 euros per sale. With 1,000 tickets, that's 2,000-4,000 euros disappearing. It's the margin that decides whether your event breaks even or loses money.

The common mistake: who pays the fees?

Many organizers absorb fees into the ticket price without knowing it. Others pass them on to the customer with an explicit surcharge, but risk appearing untransparent. The best solution depends on your audience: for B2B events or high-priced tickets, absorbing fees is acceptable; for popular events with 10-20 euro tickets, every cent counts.

What you can do now: calculate your real cost per ticket. Take your last event, add up all fees paid, and divide by the number of tickets sold. Now you know what each sale really costs you.

Which payment gateway should you choose for your event?

Choosing the gateway is the decision that most affects your ticket fees. There's no "best in absolute": there's the gateway best suited to your sales volume, your audience, and your country.

Stripe vs PayPal vs Nexi: what really changes

Stripe is the most common choice for custom ticketing platforms. Transparent fees (2.9% + 0.30 euros per transaction in Europe), excellent API integration, and support for recurring payments. Ideal if you want to build your own platform or integrate with management software.

Sponsored Protocol

PayPal is convenient for the end customer, but fees are higher (3.4% + 0.35 euros per standard transaction) and conversion rates can suffer if the user has to leave your site to pay. Great as a secondary option, less as a primary gateway.

Nexi and other Italian banking circuits offer negotiable fees based on volume, but require more bureaucracy and longer activation times. For events with tickets worth hundreds of euros, negotiating with Nexi can bring fees below 1.5%.

The practical rule? Under 10,000 euros in sales per event, Stripe is almost always the best choice. Above that threshold, it's worth negotiating with a banking circuit.

How to compare offers without being fooled

Advertised fees are never the real ones. Every gateway has hidden costs: chargeback fees, reconciliation costs, penalties for declined transactions. Always ask for the full price list and run a simulation with your actual volume.

# Fee simulation for 1,000 tickets at 25 euros
# Stripe: 2.9% + 0.30 EUR per transaction
# Total: (25 * 0.029 + 0.30) * 1000 = 755 EUR
# PayPal: 3.4% + 0.35 EUR per transaction
# Total: (25 * 0.034 + 0.35) * 1000 = 1,200 EUR
# Difference: 445 EUR — the cost of a service or a local DJ

What you can do now: download the price lists from Stripe, PayPal, and Nexi, run this simulation with your numbers, and choose the gateway that loses you the least margin.

Sponsored Protocol

How to reduce ticket fees without losing sales?

Fees aren't a fixed cost: you can reduce them with strategic choices. Here are the levers we use when configuring ticketing software for clients.

Strategy 1: Aggregate payments with a wallet

If your audience buys tickets for multiple events throughout the year, an internal wallet lets you collect once and then deduct subsequent payments from the balance. Fewer transactions = fewer fees. It's the same model used by major ticketing platforms, but you can implement it on a smaller scale too.

Strategy 2: Optimize pricing to absorb fees

Instead of adding a visible surcharge, incorporate fees into the ticket price and offer a discount for those who pay with zero-cost methods (like bank transfer or debit card). The customer perceives a fair price, you recover the margin.

Strategy 3: Reduce chargebacks and failed transactions

Every chargeback costs you the gateway fee plus a penalty. Prevention is better than cure: verify buyer identity, use 3D Secure, and set up anti-fraud rules. A prevented chargeback is a fee you don't pay.

What you can do now: if you sell tickets for multiple events, implement a wallet or internal credit system. If you sell for a single event, review the price to incorporate fees and offer a discount for direct payments.

Sponsored Protocol

How to handle VAT and fee reporting?

Ticket fees aren't just a cost: they have tax implications that many organizers discover only at year-end, when it's too late.

The VAT rule on fees

In Italy, the payment gateway fee is an exempt financial service, but the ticketing platform fee is subject to 22% VAT. If you use a foreign platform, you might need to apply reverse charge. The confusion is normal: the advice is to track each fee component separately.

How to track fees in your management system

When we configure ticketing software for clients, we always separate the items: ticket price, platform fee, gateway fee, VAT. This allows precise reporting and a clear view of real costs per event.

// Example: data structure to track fees
$transaction = [
    'ticket_price' => 25.00,
    'platform_fee' => 1.50,      // 6% platform fee
    'gateway_fee' => 0.85,       // 2.9% + 0.30 Stripe fee
    'vat_on_fees' => 0.33,       // 22% on platform_fee
    'net_revenue' => 22.32       // 25.00 - 1.50 - 0.85 - 0.33
];

What you can do now: talk to your accountant and ask how to handle your gateway fees in the next tax return. If you use management software, set up separate cost items for platform and gateway.

Sponsored Protocol

In summary

Ticket fees are the invisible cost that decides whether your event breaks even or loses money. Here are the concrete actions to take now:

  • Calculate your real cost per ticket — add up all fees from your last event and divide by tickets sold. Now you know your true margin.
  • Compare gateways with a simulation — use your real volumes, not advertised rates. Stripe wins almost always under 10,000 euros in sales.
  • Decide who pays the fees — incorporate them into the price or offer a discount for direct payments. Don't let chance decide for you.
  • Track each component separately — platform, gateway, and VAT are different items. Your accountant will thank you.
  • Prevent chargebacks — every chargeback is an extra fee. Verify identity and use 3D Secure.

If you want to dive deeper into building a ticketing system that accounts for these costs, check out our complete guide to ticketing software. And if you already have a system, ask yourself: how much does each sale cost you? If you don't know, you're organizing events to give away margins to someone else.

Try it with Zenith

Zenith Ticket is the all-in-one platform to run your business — clients, scheduling, deadlines, invoicing and WhatsApp reminders, all from your browser. No installation required.

Discover Zenith Ticket →
> share
Ing. Calogero Bono

> AUTHOR_EXTRACTED

Ing. Calogero Bono

Ingegnere informatico, fondatore di Meteora Web e Zenith OS. System administrator e progettista di piattaforme, app e CMS proprietari, con esperienza in sviluppo full-stack, marketing digitale ed ecosistema Google.
[ Read Full Dossier ]

> METEORA_WEB // DIGITAL AGENCY

We build the digital presence your business deserves.

Websites, social media, online advertising, e-commerce and high-performance hosting, engineered with method by computer engineers in Sciacca, for all of Italy.

> MW_JOURNAL

> READ_ALL()