tkTickOdds
🏏

Cricket odds API

Live and prematch cricket odds from bet365, delivered via REST and WebSocket. Cricket's session markets change every over. WebSocket push is the only viable delivery method for a serious trading model.

Coverage

Leagues & competitions

  • IPL
  • Big Bash League
  • The Hundred
  • Test matches
  • ODI
  • T20 Internationals

Market types

  • Match Winner
  • Top Batsman
  • Top Bowler
  • Innings Run Totals
  • Method of Dismissal
  • Session Markets

Fetch cricket matches

Example: current upcoming cricket matches with full market depth.

# Python
import requests

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

# Sample fixture: Mumbai Indians vs. Chennai Super Kings — IPL

Who uses the cricket feed?

South Asia markets, in-play cricket traders

Recommended plan

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