ARPPU (Average Revenue Per Paying User) in iGaming: Definition, Formula and Why It Tells a Different Story Than ARPU
ARPPU (Average Revenue Per Paying User) is the revenue generated per depositing player over a period. Unlike ARPU, which averages across all active users including non-depositors, ARPPU isolates monetisation among players who actually fund their accounts. For most operators, ARPPU is…
iGaming Glossary · Category: Financial & Performance Metrics · Relevant for: CRM, Marketing, Finance, Executive
TL;DR
ARPPU (Average Revenue Per Paying User) is the revenue generated per depositing player over a period. Unlike ARPU, which averages across all active users including non-depositors, ARPPU isolates monetisation among players who actually fund their accounts. For most operators, ARPPU is the more honest measure of monetisation strength. Watching ARPU and ARPPU together separates engagement signals from monetisation signals.
Formula
In its simplest form:
Paying user is typically defined as a player who made at least one real-money deposit in the period. Some operators define it more strictly (made at least one real-money bet) or more broadly (had any real-money activity including bonus-funded play that converted to wagering). The right definition depends on what you are trying to measure.
A typical warehouse-level aggregation:
Warehouse-level aggregationWITH paying AS (
SELECT COUNT(DISTINCT player_id) AS paying_users
FROM deposits
WHERE deposit_date BETWEEN :start AND :end
AND deposit_status = 'completed'
),
revenue AS (
SELECT SUM(stakes - winnings) AS ggr
FROM bets
WHERE bet_date BETWEEN :start AND :end
)
SELECT revenue.ggr * 1.0
/ NULLIF(paying.paying_users, 0) AS arppu
FROM paying, revenue;Why it matters in iGaming
ARPPU strips out the noise of free-play activity. ARPU averages revenue across everyone who logged in or wagered, including bonus-only players, registration tourists and one-spin curiosity sessions. ARPPU averages only across players who put their own money on the line. For most operators, this is a more honest read on whether the business is actually monetising attention.
Different teams read ARPPU differently:
- CRM uses ARPPU as the depositor-side monetisation signal, separate from depositor count or activity rate.
- Marketing tracks ARPPU per acquisition channel to evaluate channel quality at the funded player level.
- Finance models depositor revenue with ARPPU times depositor count, which often produces more stable forecasts than ARPU times active users.
- Executives watch the ARPU-to-ARPPU ratio as a signal of how dependent the business is on bonus-driven activity.
The interplay between ARPU and ARPPU also reveals strategic choices. A wide gap (ARPPU much higher than ARPU) means a large share of activity is non-funded. A narrow gap means most active players are also depositors. Both can be healthy, but they describe different businesses.
Common mistakes and how teams get ARPPU wrong
Confusing ARPPU and ARPU. The two metrics describe different things. Quoting ARPPU but calling it ARPU (or vice versa) flatters or distorts the underlying business performance, depending on which way the error goes. Always name the metric explicitly.
Inconsistent paying-user definition. Is a player who deposited but did not bet a paying user? Is a player who only used a free bet a paying user? Different teams answer differently. The fix is one shared definition or explicit naming when multiple are used.
Reporting ARPPU without depositor count context. ARPPU growth on a shrinking depositor base is concerning. ARPPU growth on a growing depositor base is excellent. The number alone does not distinguish these. Always pair ARPPU with depositor count trend.
Aggregating across deposit-tier segments. A small share of high-deposit players can drag ARPPU dramatically. Reporting only the average without distribution context (median ARPPU, ARPPU by deposit tier) hides the structural shape of monetisation.
Mixing currencies without normalisation. Multi-market operators often have very different ARPPU across markets due to local economic factors. Aggregating without currency and PPP context produces meaningless blended numbers.
Healthy ranges and benchmarks
ARPPU varies dramatically by vertical, market and player mix. Directional patterns:
- ARPPU is typically two to five times higher than ARPU at most operators, depending on the share of bonus-driven non-depositor activity.
- Casino-led operators tend to run higher ARPPU than sportsbook-led operators because of higher per-session monetisation.
- VIP-heavy operators show very wide gaps between mean ARPPU and median ARPPU, since a small share of players generates most of the revenue.
- Mature regulated markets typically deliver higher ARPPU than emerging markets, both for purchasing-power reasons and player-mix reasons.
These are directional patterns based on industry observation, not strict benchmarks. The most useful internal comparisons are ARPPU trend over time, ARPPU by acquisition channel, ARPPU by cohort and ARPU-to-ARPPU ratio over time.
Related metrics and concepts
How Gamblitude handles ARPPU
In Gamblitude, ARPPU is a governed Metric with explicit conventions for paying-user definition (default: any completed real-money deposit in the period) and revenue base. Teams can use ARPPU GGR Monthly, ARPPU NGR Monthly, VIP ARPPU, Sportsbook ARPPU and Casino ARPPU as separate Metrics. The same definition flows into Reports, AI Agent answers and Insight Radar alerts. The ARPU-to-ARPPU ratio is itself tracked as a derived metric, surfacing changes in non-depositor activity share over time.
FAQ
ARPU averages revenue across all active users in the period, including non-depositors. ARPPU averages only across paying users (typically depositors). ARPPU is structurally higher and tells you about monetisation among funded players, while ARPU tells you about overall engagement-to-monetisation conversion.
Because most operators have a large pool of bonus-driven and non-depositing active users. These players contribute to ARPU's denominator without contributing equivalent revenue. ARPPU isolates the depositor pool, which by definition shows higher per-player revenue.
It depends on how you define paying users. If you require a real-money deposit, free-bet activity from those depositors is fairly counted in revenue. If your definition is looser, you risk inflating ARPPU with bonus-driven activity. Consistency between numerator and denominator matters most.
It typically means that more of your active player base is depositing rather than playing on bonus alone. This is generally positive: it suggests acquisition is bringing in monetisable players and that bonus efficiency is improving. The opposite (widening gap) usually signals more bonus-funded activity.
By isolating the depositor pool from each channel. A channel that brings high ARPU but low ARPPU is bringing engaged but non-depositing players, which may not justify CPA. A channel with similar ARPU but higher ARPPU is bringing real customers. The two metrics together separate the volume story from the value story.
Further reading
Found a mistake or want a term added to the iGaming Glossary? Let us know.
Browse the complete glossary or see how governed definitions work across dashboards, reports, alerts and AI answers.
