tkTickOdds
🎯

Darts odds API

Live and prematch darts odds from bet365, delivered via REST and WebSocket. Darts is a high-liquidity UK/European sport with fast in-play markets. WebSocket delivery keeps models current leg-by-leg.

Coverage

Leagues & competitions

  • PDC World Championship
  • Premier League Darts
  • World Matchplay
  • Grand Slam of Darts

Market types

  • Match Winner
  • Correct Score (Sets/Legs)
  • Total 180s
  • Highest Checkout

Fetch darts matches

Example: current upcoming darts matches with full market depth.

# Python
import requests

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

# Sample fixture: Luke Humphries vs. Michael van Gerwen — PDC

Who uses the darts feed?

UK betting market, in-play darts traders

Recommended plan

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