How to get live Stake Crash data
The crash multiplier for every Stake Crash round, plus bettor counts and round timing. This guide shows the exact calls, with this game's real response shape.
1. Get the latest Stake Crash round
The fastest way to read the current state is /rounds/latest. The {slug} for Stake Crash is stake-crash.
# Latest settled Stake Crash round curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/stake-crash/rounds/latest"
const res = await fetch(
'https://api.trackersino.com/v1-beta/games/stake-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/stake-crash/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 Stake Crash, captured from the live API:
{
"round_index": 7393228772258146753,
"round_id": "cc0706c3f891d301fcec3855",
"multiplier": "4.7100",
"state": "finalized",
"finalized_at": "2026-06-01T12:20:27Z",
"observed_at": "2026-06-01T12:20:28.580645Z",
"raw": {
"result": { "rtp": 196.23, "maxMultiplier": 4.71, "roundDuration": 25825.0 },
"source": "casino.org",
"bettorsCount": 320,
"totalWinners": 270,
"totalAmount": 13609.24,
"totalBetAmount": 6935.21
}
}Every round also carries the common envelope: round_index, round_id, multiplier, state, finalized_at and observed_at.
3. Stake Crash fields explained
multiplierThe crash point (bust multiplier) as a decimal string.
raw.result.maxMultiplierSame crash point, numeric, as published by the source.
raw.result.roundDurationHow long the round ran, in milliseconds.
raw.bettorsCount / totalWinnersPlayers in the round and how many cashed out in time.
raw.totalAmount / totalBetAmountTotal wagered and total paid out for the round.
4. History & last 5 minutes
To poll for recent activity, hit /rounds with a relative window. Both calls below return Stake Crash rounds, newest first.
# Last 5 minutes of Stake Crash curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/stake-crash/rounds?window=5m" # Last 200 rounds, history curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/stake-crash/rounds?limit=200" # Walk older history with the backward cursor curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/stake-crash/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 Stake Crash'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/stake-crash/summary"
Need a key or a custom sample?
Tell us you're building on Stake Crash and we'll provision a key and send a working snippet in your language.
Open Telegram →