trackersino
stale
18+Solo dati · Nessuna previsione · Gioca responsabilmenteCome funziona questo sito
BetaBeta pubblica · possibili interruzioni temporanee dei feed.
Torna alle guide·Guida per gioco

Come ottenere i dati live di Stake Crash

Il moltiplicatore di crash per ogni round di Stake Crash, più conteggio scommettitori e timing del round. Questa guida mostra le chiamate esatte, con la forma di risposta reale di questo gioco.

1. Ottieni l'ultimo round di Stake Crash

Il modo più rapido per leggere lo stato attuale è /rounds/latest. Lo {slug} di Stake Crash è stake-crash.

bash
# Latest settled Stake Crash round
curl -H "Authorization: Bearer YOUR_KEY" \
  "https://api.trackersino.com/v1-beta/games/stake-crash/rounds/latest"
javascript
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);
python
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. Risposta reale

Una risposta /rounds/latest reale per Stake Crash, catturata dall'API live:

json
{
  "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
  }
}

Ogni round porta anche l'envelope comune: round_index, round_id, multiplier, state, finalized_at e observed_at.

3. Campi di Stake Crash spiegati

multiplier

Il punto di crash (bust) come stringa decimale.

raw.result.maxMultiplier

Stesso punto di crash, numerico, come pubblicato dalla fonte.

raw.result.roundDuration

Durata del round, in millisecondi.

raw.bettorsCount / totalWinners

Giocatori nel round e quanti hanno incassato in tempo.

raw.totalAmount / totalBetAmount

Totale puntato e totale pagato per il round.

4. Storico e ultimi 5 minuti

Per il polling dell'attività recente, chiama /rounds con una finestra relativa. Entrambe le chiamate ritornano round di Stake Crash, dal più recente.

bash
# 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"

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 Stake Crash, i conteggi rolling (5m / 15m / 1h / 24h), la forma dei moltiplicatori 24h e la tabella delay in una sola chiamata.

bash
curl -H "Authorization: Bearer YOUR_KEY" \
  "https://api.trackersino.com/v1-beta/games/stake-crash/summary"

Ti serve una chiave o un sample su misura?

Dicci che stai costruendo su Stake Crash e ti attiviamo una chiave + ti mandiamo uno snippet funzionante nel tuo linguaggio.

Apri Telegram
Come ottenere i dati live di Stake Crash via API — TrackerSino · TrackerSino