Time-to-First-Bet in iGaming: Definition, Formula and What It Reveals About Onboarding
Time-to-First-Bet is the elapsed time between a player's first real-money deposit (FTD) and their first real-money bet. It is the cleanest diagnostic for post-deposit onboarding friction in iGaming. A short time-to-first-bet means players found a game, understood the bonus terms and…
iGaming Glossary · Category: Player & Activity Metrics · Relevant for: Product, CRM, Marketing, Executive
TL;DR
Time-to-First-Bet is the elapsed time between a player's first real-money deposit (FTD) and their first real-money bet. It is the cleanest diagnostic for post-deposit onboarding friction in iGaming. A short time-to-first-bet means players found a game, understood the bonus terms and started playing without obstruction. A long one means something in the wallet, the lobby or the bonus flow is getting in the way.
Formula
In its simplest form:
A typical warehouse-level aggregation:
Warehouse-level aggregationWITH ftd AS (
SELECT player_id, MIN(deposit_date) AS ftd_at
FROM deposits
WHERE deposit_status = 'completed'
GROUP BY player_id
),
first_bet AS (
SELECT player_id, MIN(bet_date) AS first_bet_at
FROM bets
WHERE stake > 0 AND bet_status IN ('settled','open')
GROUP BY player_id
)
SELECT
AVG(EXTRACT(EPOCH FROM
first_bet.first_bet_at - ftd.ftd_at) / 60)
AS avg_time_to_first_bet_minutes
FROM ftd
JOIN first_bet USING (player_id);Like session length, time-to-first-bet is right-skewed. A small share of players takes much longer than typical, pulling the mean up. Median plus percentile distribution gives the more useful picture for product diagnosis.
Why it matters in iGaming
The window between first deposit and first bet is one of the most failure-prone points in the iGaming player journey. The deposit has cleared, the player is on the platform with funded wallet, and yet a meaningful share of them never place that first bet. Understanding why means tracking the time distribution and acting on what it reveals.
Different teams read time-to-first-bet differently:
- Product teams use it as the diagnostic for post-deposit UX, including game discovery, bonus visibility and wallet UX.
- CRM uses it to identify struggling new players who can be helped by triggered onboarding flows.
- Marketing reads it per acquisition channel as a signal of player intent quality.
- Executives watch median time-to-first-bet as a top-level signal of acquisition-to-engagement friction.
The strategic implication: an FTD that never converts to a first bet is, in business terms, a wasted acquisition. The time distribution shows where intervention can recover otherwise-lost players. Triggered welcome flows, bonus reminders and game suggestions in the right window can move the metric meaningfully.
Common mistakes and how teams get time-to-first-bet wrong
Using mean instead of median. Time distributions are heavily right-skewed. The mean is dragged up by the small share of players who take days or weeks to place their first bet. Median plus percentile distribution gives the typical experience much more honestly.
Excluding never-converted players. If you only measure time-to-first-bet for players who eventually placed a bet, you exclude the most diagnostic cases: those who never converted. The fix is to track first-bet conversion separately, then time-to-first-bet for those who did convert, and look at both together.
Mixing free-bet and real-money first bets. A free-bet is awarded by the operator, not chosen by the player. Counting a free-bet as the first bet inflates conversion and shortens time-to-first-bet artificially. Real-money first bets are the more honest measure of player intent.
Aggregating across products without context. Sportsbook players often place their first bet within minutes of deposit because they came specifically to bet on a known event. Casino players often browse for longer before committing. Mixing them produces an average that fits neither product.
Reading short-window changes as trends. Time-to-first-bet is sensitive to acquisition campaign mix and event calendars. Weekly comparisons can reflect channel mix shifts rather than UX changes. Rolling four-week views are more reliable for product diagnosis.
Healthy ranges and benchmarks
Time-to-first-bet varies dramatically by vertical and channel. Directional patterns:
- Sportsbook players often place their first bet within minutes of FTD, especially around major fixtures.
- Casino players typically take longer, browsing the lobby and exploring bonus terms before committing.
- Affiliate-driven traffic with specific game intent often converts to first bet faster than display-driven traffic with general intent.
- Long median times (hours rather than minutes) often signal friction in the bonus terms, the wallet flow or the game discovery experience.
- A growing share of FTDs taking more than 24 hours to first bet is a strong signal that something has changed in the post-deposit flow and warrants product investigation.
These are directional patterns based on industry observation, not strict benchmarks. The most useful comparisons are within an operator over time and across channels.
Related metrics and concepts
How Gamblitude handles time-to-first-bet
In Gamblitude, time-to-first-bet is tracked as a governed Metric in three forms (mean, median, percentile distribution) plus the binary conversion rate (share of FTDs that ever place a real-money bet). The metric is available across dashboards, AI Agent answers and Insight Radar alerts, sliced by channel, vertical, market and acquisition cohort. CRM teams use it to trigger Lists of struggling new players for targeted onboarding flows, and Insight Radar surfaces drift before it becomes a structural acquisition problem.
FAQ
It depends on vertical and channel. Sportsbook can run very fast (minutes) when players come for a specific event. Casino is typically slower because of game discovery. Within an operator, the right benchmark is your own median over time, with attention to the share of FTDs that take more than 24 hours.
Time-to-first-bet measures duration for players who did place a bet. FTD-to-first-bet conversion is the share of FTDs who ever placed a bet, regardless of timing. Both metrics are needed for a complete picture: conversion tells you how many converted, time tells you how long the typical conversion took.
Generally no. A free-bet is awarded, not chosen. The first real-money bet is a more honest measure of player intent and engagement. Most operators track real-money first-bet timing separately, with optional free-bet first-bet tracking for specific marketing analyses.
It usually means a meaningful share of FTDs are getting stuck somewhere: bonus wagering requirements they did not understand, game discovery friction, KYC verification taking too long. The exact cause varies, but the long tail is itself the strongest diagnostic signal that there is friction worth investigating.
Yes, and effectively. Triggered welcome emails or push notifications sent at specific time delays after FTD (without an observed first bet) can recover meaningful share of stuck players. The window matters: triggers sent too early feel intrusive, too late and the player has already disengaged. Most operators find the sweet spot in the first few hours after FTD.
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.
