NHL
Scottfree Sports supports NHL across all three model markets.
API Values
| Item | Value |
|---|---|
| Sport code | nhl |
| Markets | over_under, won_on_points, won_on_spread |
| Moneyline axis | Home team probability |
| Spread axis | Home puck-line probability |
| Total axis | Over probability |
Reading The Axes
- Moneyline and puck-line 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/nhl/won_on_points
Puck-line predictions:
bash
curl -H "X-API-Key: $SFS_API_KEY" \
https://sports-api.scottfreellc.com/api/v1/predictions/nhl/won_on_spread
Total predictions:
bash
curl -H "X-API-Key: $SFS_API_KEY" \
https://sports-api.scottfreellc.com/api/v1/predictions/nhl/over_under
Current odds:
bash
curl -H "X-API-Key: $SFS_API_KEY" \
https://sports-api.scottfreellc.com/api/v1/odds/nhl
Recent results:
bash
curl -H "X-API-Key: $SFS_API_KEY" \
"https://sports-api.scottfreellc.com/api/v1/results/nhl/won_on_points?limit=25"
Team form:
bash
curl -H "X-API-Key: $SFS_API_KEY" \
https://sports-api.scottfreellc.com/api/v1/results/nhl/won_on_points/team-form
CLI Examples
bash
sfs predictions get nhl ml
sfs predictions get nhl spread
sfs predictions get nhl ou
sfs scores scores nhl
sfs summary get nhl ml
MCP Prompt Example
text
Use Scottfree Sports tools to research today's NHL slate. Pull the daily brief,
moneyline predictions, current odds, summary data, and any available live-score
or roster context.
Sports Docs