🏀
Basketball odds API
Live and prematch basketball odds from bet365, delivered via REST and WebSocket. Basketball props (points, rebounds, assists) are the most volatile markets on a sportsbook. Fast access to line moves is the difference between a +EV bet and a stale one.
Coverage
Leagues & competitions
- ✓NBA
- ✓EuroLeague
- ✓NCAA Men's
- ✓WNBA
- ✓NBL
- ✓Spanish ACB
Market types
- ✓Moneyline
- ✓Point Spread
- ✓Over/Under Total
- ✓Team Totals
- ✓Player Points
- ✓Player Rebounds
- ✓Player Assists
- ✓Player Threes
- ✓Quarter / Half markets
Fetch basketball matches
Example: current upcoming basketball games with full market depth.
# Python
import requests
r = requests.get(
"https://api.tickodds.com/api/v1/matches",
params={"sport": "basketball", "upcoming": 1},
headers={"X-API-Key": "YOUR_KEY"},
)
for match in r.json()["data"]:
print(match["home"], "v", match["away"], match["kickoff"])
# Sample fixture: Los Angeles Lakers vs. Boston Celtics — NBAWho uses the basketball feed?
NBA prop bettors, sharp bettors, DFS tool builders
Recommended plan
Basketball is a headline sport — available on Starter ($19/mo) and above. For live in-play access via WebSocket, use the Live tier ($39/mo).