Real-time NHL moneyline, puck line, total, and player-prop odds from every major US sportsbook — normalized to American odds and keyed to canonical game IDs.
The MoneyLine NHL odds API returns hockey game lines and player props in one normalized JSON shape. Filter with league=nhl for moneyline, puck line (spread), and total markets, or scope to props like shots on goal, points, and anytime goal scorer.
Every NHL game maps to a canonical eventId with a summary exposing no-vig fair odds, best price, and consensus average per outcome, so comparison and value detection take one request.
Moneyline, puck line, and total for every NHL matchup across major US books.
Shots on goal, points, assists, and anytime goal scorer, normalized.
Anytime-goal markets are handled correctly for L5/L10/L25/season hit rates.
Opening-to-current consensus snapshots per NHL market via odds-history.
GET /v1/odds — NHL moneyline
Request
curl -H "x-api-key: $ML_API_KEY" \
"https://mlapi.bet/v1/odds?league=nhl&market=moneyline"Response
{
"success": true,
"data": [
{
"eventId": "nhl-ev-119274",
"leagueId": "nhl",
"sport": "hockey",
"bookmakers": [
{
"bookmakerId": "caesars",
"bookmakerName": "Caesars",
"sourceType": "sportsbook",
"markets": [
{
"marketType": "moneyline",
"outcomes": [
{ "name": "Colorado Avalanche", "price": -140 },
{ "name": "Vegas Golden Knights", "price": 120 }
]
}
]
}
]
}
],
"meta": { "count": 1, "page": 1 }
}Power NHL odds screens, puck-line pages, and best-line tables from one feed.
Pair shots-on-goal and anytime-goal props with recent hit rates.
Feed no-vig NHL fair odds into moneyline and total models.
Game markets (moneyline, puck line, total) and player props such as shots on goal, points, assists, and anytime goal scorer.
Binary markets like anytime goal scorer use a line of 0 and map to the correct stat field (goals) instead of a numeric threshold.
Odds update continuously; the line-history cadence tightens to roughly every 20 minutes inside three hours of puck drop.
Free tier to start, one API key, normalized responses across every league and sportsbook.