VIP Share of GGR in iGaming: Definition, Formula and Why It Is a Concentration Risk Signal
VIP Share of GGR is the percentage of total GGR generated by players in defined VIP tiers. It is one of the most-watched concentration metrics in iGaming, because it tells operators how dependent their business is on a small share of high-value players. Healthy operators monitor it…
iGaming Glossary · Category: CRM, Retention & Loyalty · Relevant for: Executive, Finance, CRM, Compliance
TL;DR
VIP Share of GGR is the percentage of total GGR generated by players in defined VIP tiers. It is one of the most-watched concentration metrics in iGaming, because it tells operators how dependent their business is on a small share of high-value players. Healthy operators monitor it not just as a commercial KPI but as a risk signal: very high concentration is fragile, very low concentration may indicate underdeveloped VIP programmes.
Formula
In its simplest form:
The metric depends entirely on how VIP is defined. Pareto-style cuts (top 1 percent, top 5 percent, top 20 percent of players by NGR) produce one set of numbers. Tier-based cuts (Diamond and above, Platinum and above) produce another set. Both are useful for different decisions.
A typical warehouse-level aggregation:
Warehouse-level aggregationWITH player_ggr AS (
SELECT player_id,
SUM(stakes - winnings) AS ggr
FROM bets
WHERE bet_date BETWEEN :start AND :end
GROUP BY player_id
),
with_tier AS (
SELECT pg.player_id, pg.ggr,
v.vip_tier
FROM player_ggr pg
LEFT JOIN vip_classification v USING (player_id)
)
SELECT
SUM(CASE WHEN vip_tier IN ('Gold','Platinum','Diamond')
THEN ggr ELSE 0 END)
* 1.0 / NULLIF(SUM(ggr), 0) AS vip_share_of_ggr
FROM with_tier;Why it matters in iGaming
iGaming is fundamentally a high-concentration business. A small share of players generates a large share of revenue at most operators. The exact concentration varies (well-developed VIP operators show very high VIP Share of GGR; mass-market operators show lower concentration), but the pattern is universal. Tracking VIP Share of GGR turns this structural reality into a manageable metric.
Different teams read it differently:
- Executives watch the trend as a portfolio health signal: rising VIP share can mean strong VIP programme, falling share can mean VIP attrition or successful mass-market growth.
- Finance treats it as a concentration risk: very high VIP share means revenue is highly exposed to a small population.
- CRM uses it to size and prioritise VIP-focused work relative to mass-market lifecycle programmes.
- Compliance monitors it because regulator expectations on affordability checks and source-of-funds scale with VIP exposure.
VIP Share of GGR is also a metric that needs to be read alongside its absolute drivers. A VIP share rising while overall GGR is flat means VIPs are getting more valuable while the mass base is stagnant. The same VIP share rising while overall GGR is growing is a different story. Without context on absolute movement, the share metric on its own can mislead.
Common mistakes and how teams get this wrong
VIP definition that drifts. If the VIP threshold changes, the VIP Share of GGR changes mechanically without any underlying business shift. Operators that change tier thresholds need to re-baseline this metric or risk reading definitional changes as performance signals.
Reading the share without absolute context. A 60 percent VIP share is very different on a growing business and a shrinking one. The share alone tells you concentration; what is happening to absolute VIP GGR and absolute mass-market GGR tells you the story.
Mixing definitions across reports. VIP Share of GGR using top-1-percent, top-5-percent, Diamond+ and Platinum+ produce four different numbers. Reports that don't specify which definition mislead readers.
Ignoring single-player risk. Even within a high VIP share, concentration can be heavily skewed: a small number of individual VIPs may produce most of the VIP GGR. Operators that don't drill into single-player concentration miss the real fragility risk.
Treating high VIP share as universally good. Strong VIP programmes drive high share, but very high share also means very high concentration risk. The same number can be celebrated by VIP managers and worried about by finance and compliance. Both readings are correct.
No regulatory framing. Regulators in some markets explicitly look at VIP concentration as a risk factor. Operators reporting only commercial framing of the metric without compliance dimension miss the broader story.
Healthy ranges and benchmarks
VIP Share of GGR varies dramatically by operator, market and product mix. Directional patterns:
- Casino-led operators tend to show higher VIP concentration than sportsbook-led operators, with single VIPs sometimes contributing meaningful share of monthly GGR.
- Mature regulated markets typically show lower VIP concentration than emerging markets, partly because of more developed mass acquisition and partly because of stricter affordability frameworks.
- VIP Share rising rapidly while mass GGR is flat is generally a warning sign, indicating mass acquisition or retention has stalled.
- VIP Share above 50 percent is common at established casino-led operators; above 70 percent often indicates concentrated commercial dependence that warrants attention.
- Single-player concentration within the VIP cohort matters as much as aggregate VIP share; a few players holding most of the VIP GGR is more fragile than diffuse VIP value.
These are directional patterns based on industry observation, not strict benchmarks. The most useful comparisons happen within an operator over time and against absolute GGR movements.
Related metrics and concepts
How Gamblitude handles VIP Share of GGR
In Gamblitude, VIP Share of GGR is a governed Metric defined at the semantic layer with explicit conventions for VIP definition (typically tier-based, with parallel percentile-based variants). Operators can track it across multiple cuts simultaneously: by tier (Diamond+, Platinum+, Gold+) and by percentile (top 1 percent, top 5 percent, top 20 percent). Single-player concentration metrics are exposed as companion views, surfacing where VIP value is concentrated within the VIP cohort. Insight Radar alerts on meaningful drift in the share, particularly when share is rising while absolute mass-market GGR is flat or declining.
FAQ
Related but distinct. Pareto concentration is a general measure (often top-20-percent's share of revenue). VIP Share of GGR is anchored to operator-defined VIP tiers, which may or may not align with Pareto cuts. Both are useful, and many operators track both for different purposes.
It depends on what is happening to absolute numbers. Rising share with growing absolute GGR usually means VIP development is paying off. Rising share with flat or falling absolute GGR usually means mass-market acquisition or retention has stalled. The share alone tells you concentration; absolute movement tells you the story.
It is both a strength and a risk. Strong VIP programmes naturally drive high share, which is healthy. But very high concentration is fragile: a few players churning, self-excluding or facing affordability restrictions can move quarterly numbers materially. Operators should monitor concentration not just at aggregate VIP level but at single-player level.
Significantly. Several regulators view high VIP concentration as a risk factor and apply elevated affordability check expectations. Operators with rising VIP share need parallel investment in compliance infrastructure to ensure regulatory exposure scales appropriately.
Both. Monthly windows track operational performance. Rolling 90-day or 180-day windows smooth out single-VIP variance and produce more stable trend signals. Operators that publish only monthly numbers see noise; operators that publish only rolling numbers miss fast operational signals.
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.
