NFL
Scottfree Sports supports NFL across all three model markets.
API Values
| Item | Value |
|---|---|
| Sport code | nfl |
| 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/nfl/won_on_points
Spread predictions:
bash
curl -H "X-API-Key: $SFS_API_KEY" \
https://sports-api.scottfreellc.com/api/v1/predictions/nfl/won_on_spread
Total predictions:
bash
curl -H "X-API-Key: $SFS_API_KEY" \
https://sports-api.scottfreellc.com/api/v1/predictions/nfl/over_under
Current odds:
bash
curl -H "X-API-Key: $SFS_API_KEY" \
https://sports-api.scottfreellc.com/api/v1/odds/nfl
Team form:
bash
curl -H "X-API-Key: $SFS_API_KEY" \
https://sports-api.scottfreellc.com/api/v1/results/nfl/won_on_spread/team-form
CLI Examples
bash
sfs predictions get nfl ml
sfs predictions get nfl spread
sfs predictions get nfl ou
sfs weather get nfl
sfs scores scores nfl
sfs summary get nfl spread
MCP Prompt Example
text
Use Scottfree Sports tools to research this week's NFL slate. Pull spread
predictions, current odds, summary data, weather, public consensus, and live
score context if games are in progress.
Sports Docs