⚾
Baseball odds API
Live and prematch baseball odds from bet365, delivered via REST and WebSocket. MLB props are deep and often soft. Continuous odds data lets modelers back-test and deploy strategies across a 162-game season.
Coverage
Leagues & competitions
- ✓MLB
- ✓NPB
- ✓KBO
- ✓AAA
Market types
- ✓Moneyline
- ✓Run Line
- ✓Over/Under
- ✓First 5 Innings
- ✓Player Strikeouts
- ✓Player Hits
- ✓Home Run Props
- ✓Team Totals
Fetch baseball matches
Example: current upcoming mlb games with full market depth.
# Python
import requests
r = requests.get(
"https://api.tickodds.com/api/v1/matches",
params={"sport": "baseball", "upcoming": 1},
headers={"X-API-Key": "YOUR_KEY"},
)
for match in r.json()["data"]:
print(match["home"], "v", match["away"], match["kickoff"])
# Sample fixture: New York Yankees vs. Boston Red Sox — MLBWho uses the baseball feed?
baseball modelers, first-five bettors, player-prop specialists
Recommended plan
Baseball is a headline sport — available on Starter ($19/mo) and above. For live in-play access via WebSocket, use the Live tier ($39/mo).