🎱
Snooker odds API
Live and prematch snooker odds from bet365, delivered via REST and WebSocket. Snooker's frame markets update constantly during play. Low-latency data is essential for in-play edge.
Coverage
Leagues & competitions
- ✓World Championship
- ✓UK Championship
- ✓Masters
- ✓Triple Crown events
Market types
- ✓Match Winner
- ✓Correct Score
- ✓Total Frames
- ✓Century Breaks
Fetch snooker matches
Example: current upcoming snooker matches with full market depth.
# Python
import requests
r = requests.get(
"https://api.tickodds.com/api/v1/matches",
params={"sport": "snooker", "upcoming": 1},
headers={"X-API-Key": "YOUR_KEY"},
)
for match in r.json()["data"]:
print(match["home"], "v", match["away"], match["kickoff"])
# Sample fixture: Ronnie O'Sullivan vs. Judd TrumpWho uses the snooker feed?
UK/Asia bettors, frame-by-frame traders
Recommended plan
Snooker is available on the free Developer tier (pick this sport as one of your two). Upgrade to Starter when you need live data or more sports.