The Rundown · Schema

MarketLinePriceResponse

SportsBettingOddsNFLNBAMLBNHLSoccerReal-TimeSports DataSportsbook

Properties

Name Type Description
id string
price number American odds price. Value of 0.0001 means "off the board".
price_delta number Change from previous price
is_main_line boolean Whether this is the primary/main line
updated_at string
closed_at string
View JSON Schema on GitHub

JSON Schema

therundown-marketlinepriceresponse-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://therundown.io/schemas/MarketLinePriceResponse",
  "title": "MarketLinePriceResponse",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "price": {
      "type": "number",
      "description": "American odds price. Value of 0.0001 means \"off the board\".",
      "example": -110
    },
    "price_delta": {
      "type": "number",
      "nullable": true,
      "description": "Change from previous price"
    },
    "is_main_line": {
      "type": "boolean",
      "description": "Whether this is the primary/main line"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time"
    },
    "closed_at": {
      "type": "string",
      "format": "date-time",
      "nullable": true
    }
  }
}