Player & Activity Metrics B02 / 08

Conversion Rate in iGaming: Definition, Formula and the Funnel It Describes

Conversion Rate in iGaming is the share of users completing a defined funnel step over a defined time window. It is not one number but a family of numbers, depending on which step you measure: visit-to-registration, registration-to-FTD, FTD-to-NDC, FTD-to-first-bet. Each conversion…

iGaming Glossary · Category: Player & Activity Metrics · Relevant for: Marketing, Affiliate, Product, CRM

iGaming GlossaryMarketingAffiliateProductCRM

TL;DR

Conversion Rate in iGaming is the share of users completing a defined funnel step over a defined time window. It is not one number but a family of numbers, depending on which step you measure: visit-to-registration, registration-to-FTD, FTD-to-NDC, FTD-to-first-bet. Each conversion rate diagnoses a different friction point. The right discipline is to track the full funnel rather than pick one number to celebrate or worry about.

Mechanics 02

Formula

In its simplest form:

Conversion Rate = Users Completing the Step / Users Reaching the Step (over the time window)

The most-tracked iGaming conversion rates:

  • Visit-to-Registration: distinct visitors who register an account.
  • Registration-to-FTD: registered players who make their first deposit.
  • FTD-to-First-Bet: depositing players who place their first real-money bet.
  • Visit-to-FTD: end-to-end conversion from site visit to first depositor.
  • FTD-to-NDC: depositing players who meet contractual qualification rules.

A typical warehouse-level aggregation for registration-to-FTD:

Warehouse-level aggregationWITH cohort AS (
SELECT player_id, registration_date
FROM players
WHERE registration_date BETWEEN :start AND :end
)
SELECT
COUNT(DISTINCT cohort.player_id) AS registered,
COUNT(DISTINCT d.player_id)      AS deposited,
COUNT(DISTINCT d.player_id)
* 1.0 / NULLIF(COUNT(DISTINCT cohort.player_id), 0)
AS reg_to_ftd_rate
FROM cohort
LEFT JOIN deposits d
ON cohort.player_id = d.player_id
AND d.deposit_status = 'completed';
Business context 03

Why it matters in iGaming

Conversion rates diagnose where the funnel leaks. A site with strong visit-to-registration but weak registration-to-FTD has an onboarding or KYC problem. A site with strong registration-to-FTD but weak FTD-to-first-bet has a bonus or game-discovery problem. The same headline FTD count can hide very different upstream realities. Without granular funnel-step conversion, marketing budgets get spent on the wrong fixes.

Different teams read conversion differently:

  • Marketing tracks visit-to-registration and visit-to-FTD per acquisition channel as the headline channel performance metric.
  • Affiliate teams report conversion against contractual definitions, often tied to NDC qualification.
  • Product and UX teams use registration-to-FTD as the diagnostic for onboarding friction.
  • CRM uses FTD-to-first-bet as the entry-point conversion that determines lifecycle programme activation.

Conversion is also the metric where the gap between aggregate and per-channel reporting is most diagnostic. A blended conversion rate hides that one channel may be converting brilliantly while another is wasting spend. Channel-level and source-level conversion is far more useful than the aggregate.

Failure modes 04

Common mistakes and how teams get conversion wrong

Reporting one number without specifying the step. "Our conversion rate is 12 percent" means nothing without saying which step. Visit-to-registration, registration-to-FTD and FTD-to-NDC are different orders of magnitude. The discipline is to always name the step.

Inconsistent time windows. Conversion is a windowed metric. A registration-to-FTD rate at 24 hours, 7 days and 30 days post-registration produces three very different numbers. Comparing across teams without aligning windows leads to confused conclusions.

Counting late conversions in the wrong cohort. A player who registers in week 1 and deposits in week 3 belongs to week 1's registration cohort, not week 3's. Period-anchored conversion (counting deposits made in the period regardless of registration date) produces misleading channel comparisons.

Aggregating across markets and currencies. Conversion rates differ dramatically by market because of payment infrastructure, KYC requirements and regulatory friction. A blended global conversion rate describes none of the markets that produced it.

Treating conversion improvements as additive across the funnel. Improving registration-to-FTD by 10 percent does not necessarily produce a 10 percent improvement in visit-to-FTD, because gains at one step can be offset by losses at another. Funnel-level optimisation needs end-to-end tracking, not step-by-step.

What good looks like 05

Healthy ranges and benchmarks

Conversion rates vary dramatically by step, channel and market. Directional patterns:

  • Visit-to-registration in well-converting funnels often sits in the low single digits, with affiliate-driven traffic typically converting better than display.
  • Registration-to-FTD varies widely by market (high-friction KYC environments lower conversion meaningfully) and by bonus offer.
  • FTD-to-first-bet should be very high in well-designed flows, often above 80 percent within hours. Lower numbers signal friction in game discovery, bonus terms or wallet experience.
  • FTD-to-NDC depends heavily on the contractual NDC definition and is typically the most variable conversion across affiliate channels.

These are directional patterns based on industry observation, not strict benchmarks. The most useful comparisons are within an operator over time and across channels.

Gamblitude 07

How Gamblitude handles conversion rate

In Gamblitude, conversion is tracked as a family of governed Metrics, each anchored on a defined funnel step and a defined time window. Visit-to-Registration, Registration-to-FTD (24h, 7d, 30d), FTD-to-First-Bet and FTD-to-NDC coexist as separate Metrics with clear ownership and naming. The platform supports cohort-anchored conversion (the standard) and period-anchored conversion (for specific reporting needs), with explicit naming. Insight Radar surfaces conversion-rate drift across channels and steps before it shows up in headline acquisition numbers.

Explore Product analytics ↗
Questions 08

FAQ

All of them, for different purposes. Visit-to-FTD is the headline marketing efficiency metric. Registration-to-FTD diagnoses onboarding. FTD-to-first-bet diagnoses post-deposit experience. Tracking only one creates blind spots in the others. Mature operators run a full funnel view rather than picking a single number.

Cohort-anchored is generally cleaner. A cohort of registrations from week 1 follows their conversion behaviour through subsequent weeks, giving an honest picture of how that cohort performs. Period-anchored conversion (deposits in a period over registrations in the same period) mixes cohorts and produces noisier signals. Both have valid uses, but cohort-anchored is the default for trend analysis.

Channels deliver different audiences. Affiliate channels often pre-qualify visitors who are already interested in iGaming. Display advertising captures broader, less qualified intent. Search captures higher intent than social. The conversion rate is partly a property of the channel's audience, not just its execution. Fair channel comparison requires controlling for audience type.

Multiple windows are useful. 24-hour conversion captures the immediate post-registration intent. 7-day captures most well-converting players. 30-day captures the long tail. Most operators track all three. Reporting only one creates incomplete picture of how acquisition cohorts mature into depositors.

Not for a properly defined cohort-anchored conversion. If you see this, it usually means period-anchored measurement is being applied (with deposits from earlier registration cohorts being counted against the current period's registrations) or that there is a duplication issue in the underlying data.

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.