How to get live Lightning Baccarat data
Player / Banker / Tie outcome with both hands' scores and cards, the lightning card multipliers and pair flags. This guide shows the exact calls, with this game's real response shape.
1. Get the latest Lightning Baccarat round
The fastest way to read the current state is /rounds/latest. The {slug} for Lightning Baccarat is lightningbaccarat.
# Latest settled Lightning Baccarat round curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/lightningbaccarat/rounds/latest"
const res = await fetch(
'https://api.trackersino.com/v1-beta/games/lightningbaccarat/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/lightningbaccarat/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 Baccarat, captured from the live API:
{
"round_index": 2582642093227158,
"round_id": "18b99361e69fc9988a5e42b9",
"multiplier": "4.0000",
"random_number": 1,
"state": "finalized",
"finalized_at": "2026-06-16T13:40:05.848Z",
"raw": {
"outcome": "Player",
"player_score": 7, "player_cards": ["4D","3H"],
"banker_score": 5, "banker_cards": ["KC","5S"],
"lightnings": [ { "code": "QH", "multi": 5 } ],
"is_lightning_hand": false,
"pair_win": false
}
}Every round also carries the common envelope: round_index, round_id, multiplier, state, finalized_at and observed_at.
3. Lightning Baccarat fields explained
raw.outcome / random_numberPlayer / Banker / Tie (encoded 1 / 2 / 0 in random_number).
raw.player_score / banker_scoreFinal baccarat score (0–9) of each hand.
raw.player_cards / banker_cardsThe dealt cards, e.g. ["4D","7D","QS"].
raw.lightningsLightning cards in play — each { code, multi (2–8×) }.
raw.is_lightning_hand / max_multiplierWhether the winning hand used a lightning card, and the top base-game multiplier.
multiplierThe boosted multiplier on a lightning hand, else the 2× even-money payout.
4. History & last 5 minutes
To poll for recent activity, hit /rounds with a relative window. Both calls below return Lightning Baccarat rounds, newest first.
# Last 5 minutes of Lightning Baccarat curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/lightningbaccarat/rounds?window=5m" # Last 200 rounds, history curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/lightningbaccarat/rounds?limit=200" # Walk older history with the backward cursor curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/lightningbaccarat/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 Baccarat'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/lightningbaccarat/summary"
Need a key or a custom sample?
Tell us you're building on Lightning Baccarat and we'll provision a key and send a working snippet in your language.
Open Telegram →