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 Shuffle Crash

Il moltiplicatore di crash per ogni round di Shuffle Crash appena si chiude. Questa guida mostra le chiamate esatte, con la forma di risposta reale di questo gioco.

1. Ottieni l'ultimo round di Shuffle Crash

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

bash
# Latest settled Shuffle Crash round
curl -H "Authorization: Bearer YOUR_KEY" \
  "https://api.trackersino.com/v1-beta/games/shuffle-crash/rounds/latest"
javascript
const res = await fetch(
  'https://api.trackersino.com/v1-beta/games/shuffle-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/shuffle-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 Shuffle Crash, catturata dall'API live:

json
{
  "round_index": 3663312,
  "round_id": "...",
  "multiplier": "2.6600",
  "state": "finalized",
  "finalized_at": "2026-06-01T12:30:00Z",
  "raw": { "source": "shuffle.com", "multiplier": 2.66 }
}

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

3. Campi di Shuffle Crash spiegati

multiplier

Il punto di crash come stringa decimale.

raw

Payload specifico della fonte, copiato dal feed round GraphQL di Shuffle.

4. Storico e ultimi 5 minuti

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

bash
# Last 5 minutes of Shuffle Crash
curl -H "Authorization: Bearer YOUR_KEY" \
  "https://api.trackersino.com/v1-beta/games/shuffle-crash/rounds?window=5m"

# Last 200 rounds, history
curl -H "Authorization: Bearer YOUR_KEY" \
  "https://api.trackersino.com/v1-beta/games/shuffle-crash/rounds?limit=200"

# Walk older history with the backward cursor
curl -H "Authorization: Bearer YOUR_KEY" \
  "https://api.trackersino.com/v1-beta/games/shuffle-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 Shuffle 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/shuffle-crash/summary"

Ti serve una chiave o un sample su misura?

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

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