Bonus Conversion in iGaming: Definition, Formula and Why This Number Decides Whether Promotions Work
Bonus Conversion is the share of awarded bonus value that players actually convert into wagering activity (or, more strictly, into withdrawable funds). It is the metric that connects bonus cost to bonus impact. A high conversion rate means players are using the bonuses; a low…
iGaming Glossary · Category: CRM, Retention & Loyalty · Relevant for: CRM, Marketing, Finance
TL;DR
Bonus Conversion is the share of awarded bonus value that players actually convert into wagering activity (or, more strictly, into withdrawable funds). It is the metric that connects bonus cost to bonus impact. A high conversion rate means players are using the bonuses; a low conversion rate means money is being awarded but not generating engagement or revenue. The metric drives almost every promotion design decision.
Formula
Two common variants exist:
Wager Conversion measures whether players engaged with the bonus at all. Cash Conversion measures whether they completed the play-through requirement and converted bonus to real money. The two metrics tell different stories: high wager conversion with low cash conversion means players engaged but didn't complete; low wager conversion means the bonus didn't activate engagement at all.
A typical warehouse-level aggregation:
Warehouse-level aggregationWITH bonus_lifecycle AS (
SELECT bonus_id,
player_id,
awarded_amount,
wagered_amount,
converted_to_cash
FROM bonuses
WHERE awarded_date BETWEEN :start AND :end
)
SELECT
SUM(wagered_amount) * 1.0
/ NULLIF(SUM(awarded_amount), 0) AS wager_conversion,
SUM(converted_to_cash) * 1.0
/ NULLIF(SUM(awarded_amount), 0) AS cash_conversion
FROM bonus_lifecycle;Why it matters in iGaming
Bonus is one of the largest controllable expenses in iGaming. A bonus that is awarded but never used costs nothing in cash terms but signals a CRM failure: the player didn't engage with the offer. A bonus that is fully converted is the cleanest case of CRM working. Most actual outcomes sit in between, and Bonus Conversion is the metric that locates them.
Different teams care about Bonus Conversion differently:
- CRM uses it to evaluate campaign mechanics: which bonus structures actually engage players?
- Finance treats it as a key driver of effective Bonus Cost Ratio: low conversion means bonus cost is structurally lower than face value would suggest.
- Marketing uses it by acquisition channel and player segment to compare promotion effectiveness across cohorts.
- Product uses it as a UX signal: if bonus claim or play-through requires excessive effort, conversion drops.
Bonus Conversion is also one of the metrics most affected by play-through and wagering requirements. Aggressive 50x play-through dramatically lowers cash conversion even when wager conversion is high. Operators designing promotional mechanics need to model expected conversion at each requirement level rather than guessing.
Common mistakes and how teams get Bonus Conversion wrong
Confusing wager conversion and cash conversion. These are different metrics measuring different things. Reports that mix them or quote one as if it were the other produce wrong conclusions about promotion effectiveness.
Aggregating across very different bonus types. Free spins, deposit match, cashback and reload bonuses have structurally different conversion profiles. A blended conversion rate hides these differences and misleads about which mechanic is actually working.
Ignoring expiry. Bonuses with short expiry windows naturally show lower conversion than ones with longer windows. Comparing conversion across bonus types without normalising for expiry timing produces apples-to-oranges numbers.
Mixing acquisition and retention bonuses. Welcome bonuses awarded to fresh registrations behave differently from reload bonuses awarded to existing players. The two should be tracked as separate cohorts in conversion reporting.
Treating low conversion as a failure without diagnosis. Low conversion can mean the bonus didn't appeal (offer issue), the play-through was too steep (requirement issue), the UX made it hard to claim (product issue) or the cohort was wrong (targeting issue). Conversion alone doesn't tell you which; deeper analysis is needed before redesigning.
Bonus abuse not separated. Bonus hunters convert at very different rates than typical players, often gaming the offer mechanics. Reporting blended conversion without separating abuse signals produces noisy numbers and obscures the genuine cohort behaviour.
Healthy patterns and benchmarks
Bonus conversion varies dramatically by bonus type, vertical and player segment. Directional patterns:
- Free spins typically show high wager conversion (the spin is automatic) but variable cash conversion based on play-through requirements.
- Deposit match bonuses with reasonable play-through (10-30x) typically show meaningful conversion across both wager and cash dimensions.
- Aggressive play-through (50x+) suppresses cash conversion dramatically; very few players complete it.
- Reload bonuses typically convert better than welcome bonuses among the same players, because the audience is already engaged.
- Cashback bonuses convert at very high rates by design, since they're typically credited as available balance.
These are directional patterns based on industry observation, not strict benchmarks. Internal trend tracking and cohort comparisons across bonus types are far more useful than industry-average targets.
Related metrics and concepts
How Gamblitude handles Bonus Conversion
In Gamblitude, both Wager Conversion and Cash Conversion are governed Metrics with explicit conventions for bonus type, expiry handling and abuse filtering. Variants such as Welcome Bonus Conversion, Reload Bonus Conversion, Free Spin Conversion, Cashback Conversion and Player Segment Conversion coexist as separate Metrics. CRM teams use these to evaluate promotion mechanics, and the Insight Radar surfaces meaningful drift in conversion patterns that often signal abuse or product issues before they show up in monthly bonus cost reports.
FAQ
Closely related but not identical. Bonus take-up usually refers to the share of eligible players who claim the bonus. Bonus conversion measures what those who claimed actually did with it. A bonus can have high take-up (players claim it) and low conversion (they don't use it productively), which is a meaningful distinction for CRM evaluation.
Wager conversion measures engagement with the bonus. Cash conversion measures completion of the play-through requirement. A player can wager the full bonus amount but not meet the play-through and lose it, producing high wager conversion and low cash conversion. The two metrics describe different parts of the bonus lifecycle.
Significantly, especially for cash conversion. A 10x play-through is achievable for engaged players. A 50x play-through is barely completed by anyone outside dedicated bonus hunters. Operators tuning play-through to balance cost and conversion need to model the trade-off explicitly rather than copying competitor mechanics.
Both, with explicit naming. Pre-filter conversion shows raw mechanic performance. Post-filter conversion shows behaviour from genuine players. Bonus hunters and abusers can dramatically inflate raw conversion numbers, so the post-filter version is what most operators actually use for CRM decisions.
Several possible causes: the offer didn't appeal to the targeted cohort, the play-through was too aggressive, the UX made it hard to claim or use, the bonus expired before players engaged, or the cohort wasn't the right audience. Diagnosing which cause applies requires drilling into bonus type, cohort and product context.
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.
