How to get live Crazy Time data
Which wheel segment hit (number or bonus), the top-slot multiplier, total payout and winners for every Crazy Time spin. This guide shows the exact calls, with this game's real response shape.
1. Get the latest Crazy Time round
The fastest way to read the current state is /rounds/latest. The {slug} for Crazy Time is 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. Real response
A real /rounds/latest response for Crazy Time, captured from the live API:
{
"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
}
}Every round also carries the common envelope: round_index, round_id, multiplier, state, finalized_at and observed_at.
3. Crazy Time fields explained
raw.segmentThe wheel segment: n1, n2, n5, n10, cf (Coin Flip), pa (Pachinko), ch (Cash Hunt), ct (Crazy Time).
random_numberThe numeric result (1/2/5/10 for number slots; 100/200/300/400 encode the bonus rounds).
raw.slot_multiplier / is_top_slot_matchedThe top-slot multiplier and whether it matched the result segment.
raw.total_payout / total_winnersRound payout and number of winning bettors.
4. History & last 5 minutes
To poll for recent activity, hit /rounds with a relative window. Both calls below return Crazy Time rounds, newest first.
# 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"
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 Crazy Time'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/crazytime/summary"
Need a key or a custom sample?
Tell us you're building on Crazy Time and we'll provision a key and send a working snippet in your language.
Open Telegram →