Come ottenere i dati live di Crazy Time A
Stessa forma di Crazy Time — segmento, moltiplicatore top-slot e payout — per il tavolo Crazy Time A. Questa guida mostra le chiamate esatte, con la forma di risposta reale di questo gioco.
1. Ottieni l'ultimo round di Crazy Time A
Il modo più rapido per leggere lo stato attuale è /rounds/latest. Lo {slug} di Crazy Time A è crazytimea.
# Latest settled Crazy Time A round curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/crazytimea/rounds/latest"
const res = await fetch(
'https://api.trackersino.com/v1-beta/games/crazytimea/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/crazytimea/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 A, catturata dall'API live:
{
"round_index": 60933294370702108,
"round_id": "cdOVhY2_tb4s",
"multiplier": "7.0000",
"random_number": 200,
"state": "finalized",
"finalized_at": "2026-06-01T12:33:20Z",
"raw": {
"result": 200,
"segment": "pa",
"slot_result": 300,
"slot_multiplier": 2,
"total_payout": 8568,
"total_winners": 2521,
"is_top_slot_matched": false
}
}Ogni round porta anche l'envelope comune: round_index, round_id, multiplier, state, finalized_at e observed_at.
3. Campi di Crazy Time A spiegati
raw.segmentSegmento ruota: n1/n2/n5/n10/cf/pa/ch/ct.
raw.slot_result / slot_multiplierIl segmento del top-slot e il suo moltiplicatore.
raw.total_payout / total_winnersPayout e vincitori dello spin.
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 A, dal più recente.
# Last 5 minutes of Crazy Time A curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/crazytimea/rounds?window=5m" # Last 200 rounds, history curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/crazytimea/rounds?limit=200" # Walk older history with the backward cursor curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/crazytimea/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 A, 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/crazytimea/summary"
Ti serve una chiave o un sample su misura?
Dicci che stai costruendo su Crazy Time A e ti attiviamo una chiave + ti mandiamo uno snippet funzionante nel tuo linguaggio.
Apri Telegram →