trackersino
stale
18+Données uniquement · Pas de prédictions · Jouez responsablementComment fonctionne ce site
BêtaBêta publique · interruptions occasionnelles des flux possibles.
Back to guides·Per-game guide

How to get live Super Color Game data

The three drawn colours, the winning outcome(s) with multipliers, and the full lucky-multiplier table. This guide shows the exact calls, with this game's real response shape.

1. Get the latest Super Color Game round

The fastest way to read the current state is /rounds/latest. The {slug} for Super Color Game is supercolorgame.

bash
# Latest settled Super Color Game round
curl -H "Authorization: Bearer YOUR_KEY" \
  "https://api.trackersino.com/v1-beta/games/supercolorgame/rounds/latest"
javascript
const res = await fetch(
  'https://api.trackersino.com/v1-beta/games/supercolorgame/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/supercolorgame/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 Super Color Game, captured from the live API:

json
{
  "round_index": 56018772090792758,
  "round_id": "18b99364d9c01a6a168ae2bc",
  "multiplier": null,
  "state": "finalized",
  "finalized_at": "2026-06-16T13:40:30.133Z",
  "raw": {
    "first": "Yellow", "second": "Pink", "third": "Red",
    "source": "casinoscores",
    "winning": [],
    "luckies": [
      { "outcome": "SCG_S_Yellow", "multi": 10 },
      { "outcome": "SCG_D_Green", "multi": 75 }
    ]
  }
}

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

3. Super Color Game fields explained

raw.first / second / third

The three drawn colours (White, Blue, Yellow, Pink, Green, Red).

raw.winning

Paying outcome(s) — each { outcome (e.g. SCG_D_White), multi }. Empty when no colour repeats.

raw.luckies

The round's lucky-multiplier table for single/double/triple colour hits.

multiplier

The top winning multiplier, or null when the round paid nothing.

4. History & last 5 minutes

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

bash
# Last 5 minutes of Super Color Game
curl -H "Authorization: Bearer YOUR_KEY" \
  "https://api.trackersino.com/v1-beta/games/supercolorgame/rounds?window=5m"

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

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

Need a key or a custom sample?

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

Open Telegram
How to get live Super Color Game data via API — TrackerSino · TrackerSino