Skip to main content
GET
/
bets
/
lines
Betting Lines
curl --request GET \
  --url https://v1.hockey.sportsapipro.com/bets/lines \
  --header 'x-api-key: <api-key>'
{
  "lines": {
    "gameId": 123,
    "markets": {
      "moneyline": {
        "home": 123,
        "away": 123,
        "draw": 123
      },
      "puckLine": {
        "line": 123,
        "home": 123,
        "away": 123
      },
      "totalGoals": {
        "line": 123,
        "over": 123,
        "under": 123
      }
    }
  }
}

Overview

Returns betting lines for a specific hockey game including moneylines, puck lines, and total goals from multiple sportsbooks.

Code Examples

curl -X GET "https://v1.hockey.sportsapipro.com/bets/lines?gameId=4668072" \
  -H "x-api-key: YOUR_API_KEY"

Hockey Betting Markets

  • Moneyline (3-way): Win, Loss, or OT/Draw
  • Puck Line: 1.5 goal handicap (similar to run line in baseball)
  • Total Goals: Over/under on combined goals scored
  • Period Betting: Bet on individual periods
  • Player Props: Goals, assists, shots (NHL)
  • Futures/Outrights: Stanley Cup winner, division winners
Betting data availability varies by game and region. NHL games have the most comprehensive coverage.

Authorizations

x-api-key
string
header
required

Your SportsAPI Pro API key

Query Parameters

gameId
integer
required

Game ID

Example:

4668072

Response

200 - application/json

Betting lines retrieved successfully

lines
object