How to get live Ice Fishing data
The wheel segment + sector id, bonus multiplier and winner count for every Ice Fishing spin. This guide shows the exact calls, with this game's real response shape.
1. Get the latest Ice Fishing round
The fastest way to read the current state is /rounds/latest. The {slug} for Ice Fishing is icefishing.
# Latest settled Ice Fishing round curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/icefishing/rounds/latest"
const res = await fetch(
'https://api.trackersino.com/v1-beta/games/icefishing/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/icefishing/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 Ice Fishing, captured from the live API:
{
"round_index": 8997986037426756,
"round_id": "18b4f51e4931e1c39bae6f34",
"multiplier": "4.0000",
"random_number": 2,
"state": "finalized",
"finalized_at": "2026-06-01T12:34:43.532Z",
"raw": {
"result": 2,
"source": "casinoscores",
"segment": "bf",
"sector_id": 44,
"bettorsCount": 5797,
"totalWinners": 912
}
}Every round also carries the common envelope: round_index, round_id, multiplier, state, finalized_at and observed_at.
3. Ice Fishing fields explained
raw.segment / raw.sector_idThe segment code and the numeric sector index on the wheel.
raw.bonus_multiplier / is_bonus_multiplier_matchedBonus multiplier and whether it applied to the result.
raw.totalWinners / bettorsCountWinners and total bettors for the spin.
4. History & last 5 minutes
To poll for recent activity, hit /rounds with a relative window. Both calls below return Ice Fishing rounds, newest first.
# Last 5 minutes of Ice Fishing curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/icefishing/rounds?window=5m" # Last 200 rounds, history curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/icefishing/rounds?limit=200" # Walk older history with the backward cursor curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/icefishing/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 Ice Fishing's latest round, rolling counts (5m / 15m / 1h / 24h), the 24h multiplier shape and the delay table in a single call.
curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.trackersino.com/v1-beta/games/icefishing/summary"
Need a key or a custom sample?
Tell us you're building on Ice Fishing and we'll provision a key and send a working snippet in your language.
Open Telegram →