🥊
MMA odds API
Live and prematch mma odds from bet365, delivered via REST and WebSocket. UFC card lines shift sharply after weigh-ins. Fast refresh catches the edge between open and fight time.
Coverage
Leagues & competitions
- ✓UFC
- ✓Bellator
- ✓ONE Championship
- ✓PFL
Market types
- ✓Moneyline
- ✓Method of Victory (KO/Sub/Dec)
- ✓Round Betting
- ✓Total Rounds Over/Under
- ✓Fight to Go the Distance
Fetch mma matches
Example: current upcoming mma bouts with full market depth.
# Python
import requests
r = requests.get(
"https://api.tickodds.com/api/v1/matches",
params={"sport": "mma", "upcoming": 1},
headers={"X-API-Key": "YOUR_KEY"},
)
for match in r.json()["data"]:
print(match["home"], "v", match["away"], match["kickoff"])
# Sample fixture: Islam Makhachev vs. Charles Oliveira — UFCWho uses the mma feed?
MMA prop bettors, method-of-victory specialists
Recommended plan
MMA 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.