NBA
Scottfree Sports supports NBA across all three model markets.
API Values
| Item | Value |
|---|---|
| Sport code | nba |
| Markets | over_under, won_on_points, won_on_spread |
| Moneyline axis | Home team probability |
| Spread axis | Home spread probability |
| Total axis | Over probability |
Reading The Axes
- Moneyline and spread probabilities are home-team relative.
- Total probabilities are over-relative.
Delta(Model - Implied)means model probability minus market-implied probability on that same axis.- Model outputs are research signals, not a guaranteed betting selector.
Data Integrity Note
Game time is part of the canonical game key: date, time_est, away_team, home_team. Use that full key when reconciling games or exporting rows.
Common Requests
Moneyline predictions:
bash
curl -H "X-API-Key: $SFS_API_KEY" \
https://sports-api.scottfreellc.com/api/v1/predictions/nba/won_on_points
Spread predictions:
bash
curl -H "X-API-Key: $SFS_API_KEY" \
https://sports-api.scottfreellc.com/api/v1/predictions/nba/won_on_spread
Total predictions:
bash
curl -H "X-API-Key: $SFS_API_KEY" \
https://sports-api.scottfreellc.com/api/v1/predictions/nba/over_under
Current odds:
bash
curl -H "X-API-Key: $SFS_API_KEY" \
https://sports-api.scottfreellc.com/api/v1/odds/nba
Summary:
bash
curl -H "X-API-Key: $SFS_API_KEY" \
https://sports-api.scottfreellc.com/api/v1/summary/nba/won_on_spread
Team form:
bash
curl -H "X-API-Key: $SFS_API_KEY" \
https://sports-api.scottfreellc.com/api/v1/results/nba/won_on_spread/team-form
CLI Examples
bash
sfs predictions get nba ml
sfs predictions get nba spread
sfs predictions get nba ou
sfs odds get nba
sfs summary get nba spread
MCP Prompt Example
text
Use Scottfree Sports tools to research NBA spread games. Pull predictions,
current odds, recent results, summary data, and any available injury context.
Explain where the models disagree with the market.
Sports Docs