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 Monopoly Roulette data

Winning number (0–36) with the Monopoly-boost number table (rolls × multiplier) and the Chance / Community Chest tile map. This guide shows the exact calls, with this game's real response shape.

1. Get the latest Monopoly Roulette round

The fastest way to read the current state is /rounds/latest. The {slug} for Monopoly Roulette is monopolyroulette.

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

json
{
  "round_index": 45602478612345678,
  "round_id": "18c04d9f4aee88e20d24097f",
  "multiplier": "30.0000",
  "random_number": 32,
  "state": "finalized",
  "finalized_at": "2026-07-08T11:40:55.884Z",
  "raw": {
    "number": 32, "color": "Red", "type": "Even",
    "source": "casinoscores",
    "is_boosted_winner": false,
    "monopoly_numbers": [
      { "num": 14, "rolls": 8, "multi": 1, "is_winner": false },
      { "num": 18, "rolls": 5, "multi": 1, "is_winner": false },
      { "num": 26, "rolls": 5, "multi": 2, "is_winner": false }
    ],
    "bonus_bet_spots": {
      "monopoly":       { "14": { "rolls": 8, "multiplier": 1 } },
      "communityChest": { "3": { "level": "Rare" }, "19": { "level": "RichGold" } }
    }
  }
}

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

3. Monopoly Roulette fields explained

random_number / raw.number

The winning pocket (0–36).

raw.color / raw.type

Red / Black / Green and Even / Odd.

raw.monopoly_numbers

Boosted number table — each { num, rolls, multi, is_winner }. Rolls × multi is the effective Monopoly-board average payout.

raw.bonus_bet_spots

Full { monopoly, communityChest } tile map — bonus-round triggers and levels.

raw.is_boosted_winner

True when the ball landed on a Monopoly-boost number.

multiplier

Rolls × multi on a boosted win, else the 30× standard straight-up payout.

4. History & last 5 minutes

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

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

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

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

Need a key or a custom sample?

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

Open Telegram
How to get live Monopoly Roulette data via API — TrackerSino · TrackerSino