How to get live Lightning Storm data
The wheel outcome (leaf / bonus), the multiplier range (low–high) and the full bonus payload for every Lightning Storm spin. This guide shows the exact calls, with this game's real response shape.
1. Get the latest Lightning Storm round
The fastest way to read the current state is /rounds/latest. The {slug} for Lightning Storm is lightningstorm.
# Latest settled Lightning Storm round curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/lightningstorm/rounds/latest"
const res = await fetch(
'https://api.trackersino.com/v1-beta/games/lightningstorm/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/lightningstorm/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 Storm, captured from the live API:
{
"round_index": 6823731385927563902,
"round_id": "18b4f444d3876dca4aeac5ff",
"multiplier": "1.0000",
"state": "finalized",
"finalized_at": "2026-06-01T12:19:52.013Z",
"raw": {
"outcome": "EvoLeaf",
"segment": "leaf",
"multiplier_text": "1x",
"multiplier_low": "1.00",
"multiplier_high": "1.00",
"wheel_result": { "wheelSector": { "type": "EvoLeaf" }, "maxMultiplier": 1 },
"totalWinners": 451,
"bettorsCount": 2275
}
}Every round also carries the common envelope: round_index, round_id, multiplier, state, finalized_at and observed_at.
3. Lightning Storm fields explained
raw.outcome / raw.segmentThe raw outcome name (e.g. EvoLeaf, HotSpot, StormBonus) and our normalized segment code (leaf, hsp, stb, …).
raw.multiplier_low / multiplier_highThe multiplier RANGE for the segment — Hot Spot for example pays from low to high, not a single value.
raw.multiplier_textHuman-readable multiplier label as shown on the wheel (e.g. "3x – 100x").
raw.wheel_resultThe full upstream wheel result object, stashed for advanced decoding.
4. History & last 5 minutes
To poll for recent activity, hit /rounds with a relative window. Both calls below return Lightning Storm rounds, newest first.
# Last 5 minutes of Lightning Storm curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/lightningstorm/rounds?window=5m" # Last 200 rounds, history curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/lightningstorm/rounds?limit=200" # Walk older history with the backward cursor curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/lightningstorm/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 Storm'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/lightningstorm/summary"
Need a key or a custom sample?
Tell us you're building on Lightning Storm and we'll provision a key and send a working snippet in your language.
Open Telegram →