tkTickOdds

Soccer odds API

Live and prematch soccer odds from bet365, delivered via REST and WebSocket. Soccer is the single largest liquidity pool in sports betting. Lines move constantly across 50+ markets per fixture — the best data source is the one with the lowest latency and the fewest missing markets.

Coverage

Leagues & competitions

  • Premier League
  • La Liga
  • Serie A
  • Bundesliga
  • Ligue 1
  • Champions League
  • Europa League
  • MLS
  • Copa Libertadores

Market types

  • 1X2 / Match Result
  • Asian Handicap
  • Over/Under 2.5
  • Both Teams to Score
  • Correct Score
  • First Goalscorer
  • Draw No Bet
  • Corners
  • Cards

Fetch soccer matches

Example: current upcoming soccer matches with full market depth.

# Python
import requests

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

# Sample fixture: Manchester City vs. Arsenal — Premier League

Who uses the soccer feed?

arbitrage bettors, model builders, tipster sites, matched-betting tools

Recommended plan

Soccer is a headline sport — available on Starter ($19/mo) and above. For live in-play access via WebSocket, use the Live tier ($39/mo).