🏒
Ice Hockey odds API
Live and prematch ice hockey odds from bet365, delivered via REST and WebSocket. Low-scoring, high-variance markets reward bettors with accurate closing-line data. NHL props are often softer than NBA/NFL equivalents.
Coverage
Leagues & competitions
- ✓NHL
- ✓KHL
- ✓SHL
- ✓Liiga
- ✓World Championships
Market types
- ✓Moneyline
- ✓Puck Line
- ✓Over/Under Goals
- ✓Period Betting
- ✓Player Points
- ✓Anytime Goalscorer
Fetch ice hockey matches
Example: current upcoming nhl games with full market depth.
# Python
import requests
r = requests.get(
"https://api.tickodds.com/api/v1/matches",
params={"sport": "ice-hockey", "upcoming": 1},
headers={"X-API-Key": "YOUR_KEY"},
)
for match in r.json()["data"]:
print(match["home"], "v", match["away"], match["kickoff"])
# Sample fixture: Toronto Maple Leafs vs. Tampa Bay Lightning — NHLWho uses the ice hockey feed?
NHL modelers, Eastern-Europe league bettors
Recommended plan
Ice Hockey 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.