Come ottenere i dati live di Crazy Time
Quale segmento della ruota è uscito (numero o bonus), il moltiplicatore del top-slot, payout totale e vincitori per ogni spin di Crazy Time. Questa guida mostra le chiamate esatte, con la forma di risposta reale di questo gioco.
1. Ottieni l'ultimo round di Crazy Time
Il modo più rapido per leggere lo stato attuale è /rounds/latest. Lo {slug} di Crazy Time è crazytime.
# Latest settled Crazy Time round curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/crazytime/rounds/latest"
const res = await fetch(
'https://api.trackersino.com/v1-beta/games/crazytime/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/crazytime/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 Crazy Time, catturata dall'API live:
{
"round_index": 68099814944532018,
"round_id": "cdHphY2_tby8",
"multiplier": "4.0000",
"random_number": 2,
"state": "finalized",
"finalized_at": "2026-06-01T12:19:36Z",
"raw": {
"result": 2,
"source": "tracksino",
"segment": "n2",
"slot_result": 2,
"slot_multiplier": 2,
"total_payout": 19461,
"total_winners": 3381,
"is_top_slot_matched": true
}
}Ogni round porta anche l'envelope comune: round_index, round_id, multiplier, state, finalized_at e observed_at.
3. Campi di Crazy Time spiegati
raw.segmentIl segmento della ruota: n1, n2, n5, n10, cf (Coin Flip), pa (Pachinko), ch (Cash Hunt), ct (Crazy Time).
random_numberIl risultato numerico (1/2/5/10 per i numeri; 100/200/300/400 codificano i bonus round).
raw.slot_multiplier / is_top_slot_matchedIl moltiplicatore del top-slot e se ha matchato il segmento risultato.
raw.total_payout / total_winnersPayout del round e numero di scommettitori vincenti.
4. Storico e ultimi 5 minuti
Per il polling dell'attività recente, chiama /rounds con una finestra relativa. Entrambe le chiamate ritornano round di Crazy Time, dal più recente.
# Last 5 minutes of Crazy Time curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/crazytime/rounds?window=5m" # Last 200 rounds, history curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/crazytime/rounds?limit=200" # Walk older history with the backward cursor curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/crazytime/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 Crazy Time, 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/crazytime/summary"
Ti serve una chiave o un sample su misura?
Dicci che stai costruendo su Crazy Time e ti attiviamo una chiave + ti mandiamo uno snippet funzionante nel tuo linguaggio.
Apri Telegram →