trackersino
stale
18+Endast data · Inga prognoser · Spela ansvarsfulltSå fungerar sidan
BetaPublik beta · tillfälliga avbrott i flödena kan förekomma.
Back to guides·Per-game guide

How to get live Dream Catcher data

Which money-wheel segment hit (1, 2, 5, 10, 20 or 40), the payout and winner count for every Dream Catcher spin. This guide shows the exact calls, with this game's real response shape.

1. Get the latest Dream Catcher round

The fastest way to read the current state is /rounds/latest. The {slug} for Dream Catcher is dreamcatcher.

bash
# Latest settled Dream Catcher round
curl -H "Authorization: Bearer YOUR_KEY" \
  "https://api.trackersino.com/v1-beta/games/dreamcatcher/rounds/latest"
javascript
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);
python
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. Real response

A real /rounds/latest response for Dream Catcher, captured from the live API:

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

Every round also carries the common envelope: round_index, round_id, multiplier, state, finalized_at and observed_at.

3. Dream Catcher fields explained

raw.segment

The wheel segment that hit (n1, n2, n5, n10, n20, n40).

random_number

The numeric value the wheel landed on.

raw.total_payout / total_winners

Round payout and winning bettors.

4. History & last 5 minutes

To poll for recent activity, hit /rounds with a relative window. Both calls below return Dream Catcher rounds, newest first.

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

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 Dream Catcher's latest round, rolling counts (5m / 15m / 1h / 24h), the 24h multiplier shape and the delay table in a single call.

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

Need a key or a custom sample?

Tell us you're building on Dream Catcher and we'll provision a key and send a working snippet in your language.

Open Telegram
How to get live Dream Catcher data via API — TrackerSino · TrackerSino