The Rundown · Schema

MarketLinesResponse

SportsBettingOddsNFLNBAMLBNHLSoccerReal-TimeSports DataSportsbook

Properties

Name Type Description
id string
value string Line value (numeric for spreads/totals, participant name if `line_value_is_participant` is true)
selection string
handicap string
prices object Prices keyed by affiliate ID
View JSON Schema on GitHub

JSON Schema

therundown-marketlinesresponse-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://therundown.io/schemas/MarketLinesResponse",
  "title": "MarketLinesResponse",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "value": {
      "type": "string",
      "description": "Line value (numeric for spreads/totals, participant name if `line_value_is_participant` is true)"
    },
    "selection": {
      "type": "string"
    },
    "handicap": {
      "type": "string"
    },
    "prices": {
      "type": "object",
      "description": "Prices keyed by affiliate ID",
      "additionalProperties": {
        "$ref": "#/components/schemas/MarketLinePriceResponse"
      }
    }
  }
}