⛳
Golf odds API
Live and prematch golf odds from bet365, delivered via REST and WebSocket. Golf markets have hundreds of competitors and 3+ day tournaments. Continuous refresh is the only way to track dynamic head-to-head lines.
Coverage
Leagues & competitions
- ✓PGA Tour
- ✓European Tour
- ✓LIV Golf
- ✓Majors (Masters, U.S. Open, Open, PGA)
Market types
- ✓Outright Winner
- ✓Top 5 / Top 10 / Top 20 Finish
- ✓Head-to-Head Matchups
- ✓Make the Cut
- ✓First-Round Leader
Fetch golf matches
Example: current upcoming golf tournaments with full market depth.
# Python
import requests
r = requests.get(
"https://api.tickodds.com/api/v1/matches",
params={"sport": "golf", "upcoming": 1},
headers={"X-API-Key": "YOUR_KEY"},
)
for match in r.json()["data"]:
print(match["home"], "v", match["away"], match["kickoff"])
# Sample fixture: The Masters 2026 outright marketWho uses the golf feed?
golf DFS players, outright bettors, matchup specialists
Recommended plan
Golf 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.