The Rundown · Schema

V1Moneyline

SportsBettingOddsNFLNBAMLBNHLSoccerReal-TimeSports DataSportsbook

Properties

Name Type Description
moneyline_away number Away team moneyline. 0.0001 = off the board.
moneyline_away_delta number
moneyline_home number
moneyline_home_delta number
moneyline_draw number Draw moneyline (soccer, UFC)
moneyline_draw_delta number
date_updated string
format string
View JSON Schema on GitHub

JSON Schema

therundown-v1moneyline-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://therundown.io/schemas/V1Moneyline",
  "title": "V1Moneyline",
  "type": "object",
  "properties": {
    "moneyline_away": {
      "type": "number",
      "description": "Away team moneyline. 0.0001 = off the board.",
      "example": 150
    },
    "moneyline_away_delta": {
      "type": "number"
    },
    "moneyline_home": {
      "type": "number",
      "example": -180
    },
    "moneyline_home_delta": {
      "type": "number"
    },
    "moneyline_draw": {
      "type": "number",
      "description": "Draw moneyline (soccer, UFC)"
    },
    "moneyline_draw_delta": {
      "type": "number"
    },
    "date_updated": {
      "type": "string",
      "format": "date-time",
      "nullable": true
    },
    "format": {
      "type": "string",
      "example": "American"
    }
  }
}