Come ottenere i dati live di Monopoly Roulette
Numero vincente (0–36) con la tabella dei numeri boost Monopoly (tiri × moltiplicatore) e la mappa delle tile Chance / Community Chest. Questa guida mostra le chiamate esatte, con la forma di risposta reale di questo gioco.
1. Ottieni l'ultimo round di Monopoly Roulette
Il modo più rapido per leggere lo stato attuale è /rounds/latest. Lo {slug} di Monopoly Roulette è monopolyroulette.
# Latest settled Monopoly Roulette round curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/monopolyroulette/rounds/latest"
const res = await fetch(
'https://api.trackersino.com/v1-beta/games/monopolyroulette/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/monopolyroulette/rounds/latest",
headers={"Authorization": "Bearer YOUR_KEY"}, timeout=10,
)
r.raise_for_status()
round = r.json()
print(round["multiplier"], round["finalized_at"])2. Risposta reale
Una risposta /rounds/latest reale per Monopoly Roulette, catturata dall'API live:
{
"round_index": 45602478612345678,
"round_id": "18c04d9f4aee88e20d24097f",
"multiplier": "30.0000",
"random_number": 32,
"state": "finalized",
"finalized_at": "2026-07-08T11:40:55.884Z",
"raw": {
"number": 32, "color": "Red", "type": "Even",
"source": "casinoscores",
"is_boosted_winner": false,
"monopoly_numbers": [
{ "num": 14, "rolls": 8, "multi": 1, "is_winner": false },
{ "num": 18, "rolls": 5, "multi": 1, "is_winner": false },
{ "num": 26, "rolls": 5, "multi": 2, "is_winner": false }
],
"bonus_bet_spots": {
"monopoly": { "14": { "rolls": 8, "multiplier": 1 } },
"communityChest": { "3": { "level": "Rare" }, "19": { "level": "RichGold" } }
}
}
}Ogni round porta anche l'envelope comune: round_index, round_id, multiplier, state, finalized_at e observed_at.
3. Campi di Monopoly Roulette spiegati
random_number / raw.numberLa casella vincente (0–36).
raw.color / raw.typeRosso / Nero / Verde e Pari / Dispari.
raw.monopoly_numbersTabella dei numeri boost — ognuno { num, rolls, multi, is_winner }. Rolls × multi è il payout medio effettivo sul tabellone Monopoly.
raw.bonus_bet_spotsMappa completa delle tile { monopoly, communityChest } — trigger dei bonus round e livelli.
raw.is_boosted_winnerTrue quando la pallina è caduta su un numero boost Monopoly.
multiplierRolls × multi su una vincita boosted, altrimenti il payout standard 30×.
4. Storico e ultimi 5 minuti
Per il polling dell'attività recente, chiama /rounds con una finestra relativa. Entrambe le chiamate ritornano round di Monopoly Roulette, dal più recente.
# Last 5 minutes of Monopoly Roulette curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/monopolyroulette/rounds?window=5m" # Last 200 rounds, history curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/monopolyroulette/rounds?limit=200" # Walk older history with the backward cursor curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/monopolyroulette/rounds?limit=1000&until=2026-06-01T00:00:00Z"
Le finestre accettano 5m / 15m / 30m / 1h / 3h / 6h / 12h / 24h / 72h / 7d / 30d, oppure usa since_minutes=N per un conteggio esatto in minuti.
5. Panoramica in un colpo
/summary raggruppa l'ultimo round di Monopoly Roulette, i conteggi rolling (5m / 15m / 1h / 24h), la forma dei moltiplicatori 24h e la tabella delay in una sola chiamata.
curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/monopolyroulette/summary"
Ti serve una chiave o un sample su misura?
Dicci che stai costruendo su Monopoly Roulette e ti attiviamo una chiave + ti mandiamo uno snippet funzionante nel tuo linguaggio.
Apri Telegram →