18+ Mindestalter 18 Jahre. BeGambleAware.org Wir sind Affiliate. Klicks auf Links können uns eine Provision einbringen.
Top-Bonus
Home  /  Tools  /  Payout-speed estimator

Payout-speed estimator.

A withdrawal time range based on method, KYC status, VIP tier and the casino's stated SLA — with pessimistic, median and best-case figures so you can plan a real cash-out window.

Your cash-out

All inputs are persisted in the URL. Press Calculate — the maths is server-side, the URL is your shareable receipt.

Most casinos route withdrawals through the deposit method when allowed.
h
As advertised in the casino's terms — we treat it as the median.
Larger amounts may trigger extra review.
Reset
No JavaScript required. The calculation runs server-side when you submit the form — the URL contains every input so you can share the same scenario.
How the math works

Payout windows, not promises

A casino's payout time is the sum of two clocks: the operator's internal review, and the payment network that moves the money. The operator clock is what the casino quotes in its terms — the SLA. It is the median, not the maximum. Add the network clock on top: crypto rails settle in tens of minutes, e-wallets clear in a few hours, cards take a banking day, bank wires take two to three.

Two factors stretch every clock. KYC verification, if not completed before the withdrawal, blocks the operator clock entirely until documents land — usually one to three days. Weekends pause the network clock for cards and wires; e-wallets and crypto mostly ignore them. VIP tiers shrink the operator clock by giving you a priority queue and a named manager, with the top tier often quoting same-day handling.

We don't promise a number. We give you three: best case (everything works), median (the realistic plan), and pessimistic (KYC drama plus a weekend). Use the median for planning, expect the pessimistic, and treat best case as a pleasant surprise.

# method baseline (median hours via network)
method_h = { crypto: 0.5, ewallet: 4, card: 24, bank: 48 }
# operator review weighted by VIP tier
vip_factor = { standard: 1.0, silver: 0.7, gold: 0.5, platinum: 0.25 }
operator_h = casino_sla × vip_factor
# KYC delay if documents not yet approved
kyc_h = kyc_done ? 0 : 36
# weekend pause on card and bank methods only
weekend_h = weekend && method in {card, bank} ? 36 : 0
# composite times
median_hours = operator_h + method_h + kyc_h + weekend_h
best_hours = max(method_h, operator_h × 0.3)
worst_hours = median_hours × 1.8