🏓
Table Tennis odds API
Live and prematch table tennis odds from bet365, delivered via REST and WebSocket. Table tennis runs 24/7 with matches every ~15 minutes. Volume arb and model strategies live and die on data-feed quality.
Coverage
Leagues & competitions
- ✓ITTF World Tour
- ✓TT Elite Series
- ✓TT Cup
Market types
- ✓Match Winner
- ✓Correct Score
- ✓Total Points
- ✓Handicap
Fetch table tennis matches
Example: current upcoming table tennis matches with full market depth.
# Python
import requests
r = requests.get(
"https://api.tickodds.com/api/v1/matches",
params={"sport": "table-tennis", "upcoming": 1},
headers={"X-API-Key": "YOUR_KEY"},
)
for match in r.json()["data"]:
print(match["home"], "v", match["away"], match["kickoff"])
# Sample fixture: Fan Zhendong vs. Ma LongWho uses the table tennis feed?
high-volume in-play traders, bot operators
Recommended plan
Table Tennis 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.