Come ottenere i dati live di Dream Catcher
Quale segmento della money-wheel è uscito (1, 2, 5, 10, 20 o 40), il payout e il numero di vincitori per ogni spin di Dream Catcher. Questa guida mostra le chiamate esatte, con la forma di risposta reale di questo gioco.
1. Ottieni l'ultimo round di Dream Catcher
Il modo più rapido per leggere lo stato attuale è /rounds/latest. Lo {slug} di Dream Catcher è dreamcatcher.
# Latest settled Dream Catcher round curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/dreamcatcher/rounds/latest"
const res = await fetch(
'https://api.trackersino.com/v1-beta/games/dreamcatcher/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/dreamcatcher/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 Dream Catcher, catturata dall'API live:
{
"round_index": 5109066291241389,
"round_id": "ddHRhY2_tb4g",
"multiplier": "2.0000",
"random_number": 1,
"state": "finalized",
"finalized_at": "2026-06-01T12:34:43Z",
"raw": {
"result": 1,
"source": "tracksino",
"segment": "n1",
"total_payout": 263,
"total_winners": 67,
"is_top_slot_matched": false
}
}Ogni round porta anche l'envelope comune: round_index, round_id, multiplier, state, finalized_at e observed_at.
3. Campi di Dream Catcher spiegati
raw.segmentIl segmento della ruota uscito (n1, n2, n5, n10, n20, n40).
random_numberIl valore numerico su cui si è fermata la ruota.
raw.total_payout / total_winnersPayout del round e scommettitori vincenti.
4. Storico e ultimi 5 minuti
Per il polling dell'attività recente, chiama /rounds con una finestra relativa. Entrambe le chiamate ritornano round di Dream Catcher, dal più recente.
# Last 5 minutes of Dream Catcher curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/dreamcatcher/rounds?window=5m" # Last 200 rounds, history curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/dreamcatcher/rounds?limit=200" # Walk older history with the backward cursor curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/dreamcatcher/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 Dream Catcher, i conteggi rolling (5m / 15m / 1h / 24h), la forma dei moltiplicatori 24h e la tabella delay in una sola chiamata.
curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/dreamcatcher/summary"
Ti serve una chiave o un sample su misura?
Dicci che stai costruendo su Dream Catcher e ti attiviamo una chiave + ti mandiamo uno snippet funzionante nel tuo linguaggio.
Apri Telegram →