Come ottenere i dati live di Roobet Crash
Moltiplicatore di crash ed economia del round (scommettitori, payout) per ogni round di Roobet Crash. Questa guida mostra le chiamate esatte, con la forma di risposta reale di questo gioco.
1. Ottieni l'ultimo round di Roobet Crash
Il modo più rapido per leggere lo stato attuale è /rounds/latest. Lo {slug} di Roobet Crash è crash.
# Latest settled Roobet Crash round curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/crash/rounds/latest"
const res = await fetch(
'https://api.trackersino.com/v1-beta/games/crash/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/crash/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 Roobet Crash, catturata dall'API live:
{
"round_index": 4797516666769451263,
"round_id": "...",
"multiplier": "2.0200",
"state": "finalized",
"finalized_at": "2026-06-01T12:19:13Z",
"raw": {
"result": { "maxMultiplier": 2.02 },
"source": "casino.org",
"bettorsCount": 280
}
}Ogni round porta anche l'envelope comune: round_index, round_id, multiplier, state, finalized_at e observed_at.
3. Campi di Roobet Crash spiegati
multiplierIl punto di crash come stringa decimale.
raw.result.maxMultiplierPunto di crash numerico come pubblicato dalla fonte.
raw.bettorsCount / totalWinnersGiocatori nel round e vincitori.
4. Storico e ultimi 5 minuti
Per il polling dell'attività recente, chiama /rounds con una finestra relativa. Entrambe le chiamate ritornano round di Roobet Crash, dal più recente.
# Last 5 minutes of Roobet Crash curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/crash/rounds?window=5m" # Last 200 rounds, history curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/crash/rounds?limit=200" # Walk older history with the backward cursor curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/crash/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 Roobet Crash, 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/crash/summary"
Ti serve una chiave o un sample su misura?
Dicci che stai costruendo su Roobet Crash e ti attiviamo una chiave + ti mandiamo uno snippet funzionante nel tuo linguaggio.
Apri Telegram →