CRM, Retention & Loyalty B03 / 01

Churn Rate in iGaming: Definition, Formula and How Operators Should Track It

Churn rate is the percentage of active players who stop playing within a defined window. In iGaming it is the single most important retention metric, and the one that determines whether your acquisition spend ever pays back. It is also one of the most miscommunicated KPIs in the…

iGaming Glossary · Category: CRM, Retention & Loyalty · Relevant for: CRM, Marketing, Executive, Finance

iGaming GlossaryCRMMarketingExecutiveFinance

TL;DR

Churn rate is the percentage of active players who stop playing within a defined window. In iGaming it is the single most important retention metric, and the one that determines whether your acquisition spend ever pays back. It is also one of the most miscommunicated KPIs in the industry, because its definition is loose and inconsistent across teams.

Mechanics 02

Formula

In its standard form:

Churn Rate = Players Active in Period A but Inactive in Period B / Players Active in Period A

The whole metric hinges on what “active” means. A player active under a generous definition (any login in 30 days) will look very different from a player active under a strict definition (a real-money wager above a minimum threshold).

In iGaming, churn is typically measured at three horizons:

  • 30-day churn for fast early-warning signals.
  • 60-day churn as the most common CRM standard.
  • 90-day churn for LTV modelling and finance forecasting.

A typical warehouse-level definition looks like this:

Warehouse-level aggregationWITH active_in_a AS (
SELECT DISTINCT player_id
FROM bets
WHERE bet_date BETWEEN :a_start AND :a_end
),
active_in_b AS (
SELECT DISTINCT player_id
FROM bets
WHERE bet_date BETWEEN :b_start AND :b_end
)
SELECT
COUNT(*) FILTER (WHERE b.player_id IS NULL)
* 1.0 / COUNT(*) AS churn_rate
FROM active_in_a a
LEFT JOIN active_in_b b USING (player_id);

The activity definition (here: any bet in the period) is the design choice that drives the entire metric. Two teams using different activity rules can produce churn rates that differ by 10 to 20 percentage points on the same player base.

Business context 03

Why it matters in iGaming

Acquiring a depositing player in iGaming is expensive. Depending on market, vertical and channel, CPA ranges from low double digits in mature markets to several hundred euros in regulated markets with high competition. None of that spend pays back if players leave before generating enough NGR to cover their acquisition cost. Churn rate is the metric that tells you whether your retention engine is running or leaking.

Different teams read churn for different reasons:

  • CRM uses churn to trigger reactivation campaigns and to size lifecycle programmes.
  • Marketing uses churn to evaluate the quality of acquisition channels, not just the volume.
  • Finance uses churn as the input to LTV and revenue forecasting models.
  • Executives look at churn trends as a leading indicator of brand health and product fit.

Churn is also one of the cleanest places where data quality matters. If your event ingestion lags or misses sessions, churn artificially spikes. If your activity definition is generous, churn looks artificially healthy. The metric is sensitive, which is exactly why it is useful when defined properly.

Failure modes 04

Common mistakes and how teams get churn wrong

Loose or inconsistent activity definition. If CRM defines active as “any login” and Finance defines it as “any settled bet”, the two teams will literally be measuring different metrics and calling them the same name.

Calendar windows that hide cohort patterns. A monthly churn report flattens every cohort into one bucket. Players acquired in week 1 and week 4 of the same month show up identically, even though their behavioural arc is very different.

Mixing reactivation back into churn. Some operators net reactivated players against churned ones. The result is a single number that hides whether retention is improving or whether reactivation campaigns are masking a deeper problem.

Treating VIPs and casuals identically. VIPs deserve their own churn definition because their natural play patterns are lumpy. A two-week gap from a VIP can mean nothing or it can mean everything. Treating them in one bucket with daily slot players gives misleading averages.

Counting churn from acquisition date vs last activity. Both are valid but tell different stories. Acquisition-anchored churn measures cohort decay. Activity-anchored churn measures recent retention health. Operators that conflate them produce confusing reports.

Ignoring the sportsbook event calendar. Sportsbook churn naturally spikes after major tournaments or off-seasons. Comparing churn week-on-week without controlling for fixture density leads to wrong conclusions about retention performance.

What good looks like 05

Healthy ranges and benchmarks

Churn rates vary widely by vertical, market maturity and acquisition mix. Directional ranges that we observe across the industry:

  • Online casino tends to run higher churn than sportsbook because casino play is more habit-driven and more sensitive to bonus availability.
  • Sportsbook churn is event-driven, so 60-day rates depend heavily on whether the window covers a major tournament.
  • Lottery and bingo typically sit between casino and sportsbook in terms of churn behaviour, with strong calendar effects.
  • Heavily bonused acquisition cohorts churn faster than organically acquired ones, often dramatically so. This is not a churn problem but an acquisition quality signal.
  • VIP cohorts should churn at materially lower rates than the overall base. If they do not, the VIP programme is underperforming.

Numbers depend so heavily on definitions that cross-operator benchmarking is rarely useful without aligning the underlying activity rules. Within a single operator, trend over time and difference across cohorts are what matter.

Gamblitude 07

How Gamblitude handles churn

In Gamblitude, churn is defined once at the semantic layer as a governed Metric, with the activity rule made explicit and version-controlled. CRM, Finance and Marketing share the same number, and any change to the activity definition leaves an audit trail. Variants like Casino Churn 30d, Sportsbook Churn 60d and VIP Churn 90d coexist as separate Metrics with clear ownership.

On top of the descriptive metric, Gamblitude offers a Predictive Churn Score as a per-player Attribute, computed by ML models trained on iGaming behaviour patterns. CRM teams use it to build dynamic Lists of at-risk players, trigger reactivation flows and feed Insight Radar alerts when churn risk drifts above thresholds. The same score powers Targets and Reports, so the entire retention workflow runs on one consistent signal.

Explore Predictive Models ↗
Questions 08

FAQ

They are inverses of each other. Churn Rate plus Retention Rate equals 100 percent over the same window and the same activity definition. CRM teams often prefer retention because it sounds more positive in reporting. Finance teams often prefer churn because it ties directly to revenue at risk.

Voluntary churn is when a player chooses to stop playing. Involuntary churn covers cases like account closure for KYC failure, self-exclusion or compliance restriction. The two have very different operational meaning and should be tracked separately. Mixing them masks the real retention picture.

ML models trained on iGaming behaviour can flag rising churn risk well before a player goes silent. Strong predictive signals include declining session frequency, shrinking average bet size, drop in deposit cadence and shifts in game preference. The earlier the signal, the cheaper the reactivation.

Almost always because of three things: different activity definitions (login vs wager vs deposit), different windows (30d vs 60d vs 90d) and different player exclusions (with or without VIPs, with or without bonus-only players). The fix is one shared definition stored centrally.

Player level is more meaningful for retention analytics, since one person can hold multiple accounts across brands. Account-level churn is easier to compute but tends to overstate true churn whenever players consolidate or migrate between brands within the same operator.

Explore next 09

Further reading

Keep the glossary useful

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.