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

Moltiplicatore di crash più il set completo provably-fair (server seed + beacon drand) per verificare ogni round. Questa guida mostra le chiamate esatte, con la forma di risposta reale di questo gioco.

1. Ottieni l'ultimo round di Duel Crash

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

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

json
{
  "round_index": 973831,
  "round_id": "973831",
  "multiplier": "1.5998",
  "state": "finalized",
  "finalized_at": "2026-06-01T12:34:03Z",
  "raw": {
    "id": 973831,
    "source": "duel.com",
    "multiplier": 1.5997744,
    "started_at": "2026-06-01 12:34:03",
    "server_seed": "dcb7ecb8296fc302fe7e9ac72a05effc2e00d0c5c677ca6363446a6d38d2d660",
    "server_seed_hashed": "5da2dab5a7366578cc89f57d2b416578a05b3f3e43b59fb4d05dc8325d5cbb5c",
    "drand_round_id": 29171293,
    "drand_randomness": "8e60b3e694d1b8f1bfa9c2aed74aebaa6cf1489cf3bc4f02ba8f8bc75edc5c9a..."
  }
}

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

3. Campi di Duel Crash spiegati

multiplier

Il punto di crash come stringa decimale.

raw.server_seed / server_seed_hashed

Il server seed rivelato e il suo hash pre-pubblicato — verifica che il reveal corrisponda al commitment.

raw.drand_round_id / drand_randomness

Il round del beacon di casualità drand usato come sorgente di entropia pubblica.

raw.started_at

Quando è iniziato il round, timestamp upstream.

4. Storico e ultimi 5 minuti

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

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

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

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

Ti serve una chiave o un sample su misura?

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

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