trackersino
stale
18+केवल data · कोई predictions नहीं · ज़िम्मेदारी से खेलेंयह site कैसे काम करता है
BetaPublic beta · feeds stabilize होने तक occasional gaps की उम्मीद रखें.
Back to guides·Per-game guide

How to get live Roobet Slide data

The slide multiplier plus the underlying randomNumber and the full open/lock/spin timing for each round. This guide shows the exact calls, with this game's real response shape.

1. Get the latest Roobet Slide round

The fastest way to read the current state is /rounds/latest. The {slug} for Roobet Slide is slide.

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

json
{
  "round_index": 191865,
  "round_id": "6a1d7c5cfb44ab11e41b140c",
  "multiplier": "20.4400",
  "random_number": 3,
  "state": "finalized",
  "finalized_at": "2026-06-01T12:34:58.833679Z",
  "raw": {
    "value": "20.44",
    "game": {
      "index": 191865,
      "randomNumber": 3,
      "timeSpinStart": "2026-06-01T12:34:52.169Z",
      "timeSpinStop": "2026-06-01T12:34:58.169Z"
    }
  }
}

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

3. Roobet Slide fields explained

multiplier

The slide result as a decimal string.

random_number

The raw wheel index that produced the multiplier.

raw.game.timeSpinStart / timeSpinStop

Exact spin window so you can align with a live view.

4. History & last 5 minutes

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

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

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

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

Need a key or a custom sample?

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

Open Telegram
How to get live Roobet Slide data via API — TrackerSino · TrackerSino