How to get live Lightning Dice data
The three dice faces, their total, and the lightning multipliers struck on each total for every Lightning Dice roll. This guide shows the exact calls, with this game's real response shape.
1. Get the latest Lightning Dice round
The fastest way to read the current state is /rounds/latest. The {slug} for Lightning Dice is lightningdice.
# Latest settled Lightning Dice round curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/lightningdice/rounds/latest"
const res = await fetch(
'https://api.trackersino.com/v1-beta/games/lightningdice/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/lightningdice/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 Dice, captured from the live API:
{
"round_index": 63580727398123617,
"round_id": "18b4f51be8e14e26b0897d9d",
"multiplier": null,
"random_number": 13,
"state": "finalized",
"finalized_at": "2026-06-01T12:34:46.015Z",
"raw": {
"dice": [3, 4, 6],
"total": 13,
"source": "casinoscores",
"lightnings": [
{ "number": 7, "multi": 25, "outcome": "LightningDice_Total7" },
{ "number": 15, "multi": 75, "outcome": "LightningDice_Total15" }
]
}
}Every round also carries the common envelope: round_index, round_id, multiplier, state, finalized_at and observed_at.
3. Lightning Dice fields explained
raw.diceThe three dice faces, e.g. [3, 4, 6].
raw.total / random_numberThe sum of the three dice (the winning total).
raw.lightningsArray of struck multipliers — each has number (the total), multi (the multiplier) and outcome.
4. History & last 5 minutes
To poll for recent activity, hit /rounds with a relative window. Both calls below return Lightning Dice rounds, newest first.
# Last 5 minutes of Lightning Dice curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/lightningdice/rounds?window=5m" # Last 200 rounds, history curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/lightningdice/rounds?limit=200" # Walk older history with the backward cursor curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/lightningdice/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 Dice'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/lightningdice/summary"
Need a key or a custom sample?
Tell us you're building on Lightning Dice and we'll provision a key and send a working snippet in your language.
Open Telegram →