🥊
Boxing odds API
Live and prematch boxing odds from bet365, delivered via REST and WebSocket. Boxing markets open wide and compress fast as sharps hit them. Continuous monitoring is table stakes.
Coverage
Leagues & competitions
- ✓WBC
- ✓WBA
- ✓IBF
- ✓WBO Championship fights
Market types
- ✓Moneyline
- ✓Method of Victory
- ✓Round Group Betting
- ✓Fight to Go the Distance
- ✓Total Rounds
Fetch boxing matches
Example: current upcoming boxing matches with full market depth.
# Python
import requests
r = requests.get(
"https://api.tickodds.com/api/v1/matches",
params={"sport": "boxing", "upcoming": 1},
headers={"X-API-Key": "YOUR_KEY"},
)
for match in r.json()["data"]:
print(match["home"], "v", match["away"], match["kickoff"])
# Sample fixture: Tyson Fury vs. Oleksandr Usyk — Heavyweight TitleWho uses the boxing feed?
boxing specialists, event-driven bettors
Recommended plan
Boxing 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.