henrygd / ncaa-api

Free API to retrieve live scores, stats, standings, and other college sports data from ncaa.com
MIT License
41 stars 6 forks source link

Feature request: Live win percentage on scoreboard route (/scoreboard/basketball-men/d1) #1

Closed andrewheekin closed 7 months ago

andrewheekin commented 7 months ago

Very cool project! Just curious, does the NCAA site have a live in-game win percentage or odds that you've seen?

andrewheekin commented 7 months ago

I found this endpoint from DraftKings, which may have this data https://sportsbook.draftkings.com/sites/US-SB/api/v4/featured/live?format=json

henrygd commented 7 months ago

NCAA does not have it, but looks like the hidden ESPN endpoint has it if a game is live.

https://gist.github.com/akeaswaran/b48b02f1c94f873c6655e7129910fc3b

events[0].competitions[0].situation.lastPlay.probability
{
    "tiePercentage": 0,
    "homeWinPercentage": 0.222,
    "awayWinPercentage": 0.778
}