The Rundown · Schema

BestLineResponse

SportsBettingOddsNFLNBAMLBNHLSoccerReal-TimeSports DataSportsbook

Properties

Name Type Description
event_id string
moneyline object
spread object
total object
periods object Period-specific best lines keyed by period name
View JSON Schema on GitHub

JSON Schema

therundown-bestlineresponse-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://therundown.io/schemas/BestLineResponse",
  "title": "BestLineResponse",
  "type": "object",
  "properties": {
    "event_id": {
      "type": "string"
    },
    "moneyline": {
      "$ref": "#/components/schemas/BestMoneyline"
    },
    "spread": {
      "$ref": "#/components/schemas/BestSpread"
    },
    "total": {
      "$ref": "#/components/schemas/BestTotal"
    },
    "periods": {
      "type": "object",
      "description": "Period-specific best lines keyed by period name",
      "additionalProperties": {
        "type": "object",
        "properties": {
          "moneyline": {
            "$ref": "#/components/schemas/BestMoneyline"
          },
          "spread": {
            "$ref": "#/components/schemas/BestSpread"
          },
          "total": {
            "$ref": "#/components/schemas/BestTotal"
          }
        }
      }
    }
  }
}