tkTickOdds
🏉

Rugby odds API

Live and prematch rugby odds from bet365, delivered via REST and WebSocket. Rugby has two major codes (League, Union) with different liquidity patterns. A unified feed across both is rare.

Coverage

Leagues & competitions

  • Six Nations
  • Rugby World Cup
  • Premiership Rugby
  • Super Rugby
  • Top 14
  • NRL
  • Super League

Market types

  • Match Winner
  • Handicap
  • Total Points
  • First Try Scorer
  • Winning Margin
  • Half/Full Time

Fetch rugby matches

Example: current upcoming rugby matches with full market depth.

# Python
import requests

r = requests.get(
    "https://api.tickodds.com/api/v1/matches",
    params={"sport": "rugby", "upcoming": 1},
    headers={"X-API-Key": "YOUR_KEY"},
)
for match in r.json()["data"]:
    print(match["home"], "v", match["away"], match["kickoff"])

# Sample fixture: England vs. Ireland — Six Nations

Who uses the rugby feed?

UK/AU bettors, rugby tipster sites

Recommended plan

Rugby 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.