How to get live Lightning Roulette data
The winning number and the lucky-number multipliers (with their values) for every Lightning Roulette spin. This guide shows the exact calls, with this game's real response shape.
1. Get the latest Lightning Roulette round
The fastest way to read the current state is /rounds/latest. The {slug} for Lightning Roulette is lightningroulette.
# Latest settled Lightning Roulette round curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/lightningroulette/rounds/latest"
const res = await fetch(
'https://api.trackersino.com/v1-beta/games/lightningroulette/rounds/latest',
{ headers: { Authorization: 'Bearer YOUR_KEY' } },
);
const round = await res.json();
console.log(round.multiplier, round.finalized_at);import requests
r = requests.get(
"https://api.trackersino.com/v1-beta/games/lightningroulette/rounds/latest",
headers={"Authorization": "Bearer YOUR_KEY"}, timeout=10,
)
r.raise_for_status()
round = r.json()
print(round["multiplier"], round["finalized_at"])2. Real response
A real /rounds/latest response for Lightning Roulette, captured from the live API:
{
"round_index": 54695443570050374,
"round_id": "1780317292-15",
"multiplier": "30.0000",
"random_number": 15,
"state": "finalized",
"finalized_at": "2026-06-01T12:34:52Z",
"raw": {
"result": 15,
"source": "tracksino",
"luckies": [
{ "num": 12, "multi": 200 },
{ "num": 25, "multi": 100 }
],
"is_top_slot_matched": false
}
}Every round also carries the common envelope: round_index, round_id, multiplier, state, finalized_at and observed_at.
3. Lightning Roulette fields explained
random_number / raw.resultThe winning pocket (0–36).
raw.luckiesArray of lucky numbers — each has num (the number) and multi (its multiplier, 50x–500x).
multiplierThe payout multiplier for the winning number when it was a lucky number; otherwise the straight-up payout.
4. History & last 5 minutes
To poll for recent activity, hit /rounds with a relative window. Both calls below return Lightning Roulette rounds, newest first.
# Last 5 minutes of Lightning Roulette curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/lightningroulette/rounds?window=5m" # Last 200 rounds, history curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/lightningroulette/rounds?limit=200" # Walk older history with the backward cursor curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/lightningroulette/rounds?limit=1000&until=2026-06-01T00:00:00Z"
Windows accept 5m / 15m / 30m / 1h / 3h / 6h / 12h / 24h / 72h / 7d / 30d, or use since_minutes=N for an exact minute count.
5. One-shot overview
/summary bundles Lightning Roulette's latest round, rolling counts (5m / 15m / 1h / 24h), the 24h multiplier shape and the delay table in a single call.
curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/lightningroulette/summary"
Need a key or a custom sample?
Tell us you're building on Lightning Roulette and we'll provision a key and send a working snippet in your language.
Open Telegram →