{
  "openapi": "3.0.1",
  "info": {
    "title": "Bovada Odds Scraper - Lines, Props, Futures & Live Scores",
    "description": "Scrape Bovada sportsbook odds across 25 sports: moneylines, spreads, totals, alternate lines, props, futures and live scores. American, decimal and fractional prices, plus implied probability, vig and fair price. No login, no proxy.",
    "version": "0.1",
    "x-build-id": "QzDcSKvz5Fg5o7ORg"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/parseforge~bovada-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-parseforge-bovada-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/parseforge~bovada-scraper/runs": {
      "post": {
        "operationId": "runs-sync-parseforge-bovada-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/parseforge~bovada-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-parseforge-bovada-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "properties": {
          "leaguePaths": {
            "title": "Leagues",
            "type": "array",
            "description": "Bovada league paths to scrape, e.g. <code>/football/nfl</code>, <code>/basketball/nba</code>, <code>/hockey/nhl</code>. Full bovada.lv URLs work too. This is the fastest and most precise way to run the Actor.",
            "items": {
              "type": "string"
            }
          },
          "sports": {
            "title": "Whole sports",
            "type": "array",
            "description": "Scrape every league inside a sport. Accepts <code>/football</code>, <code>/soccer</code>, <code>/basketball</code>, <code>/baseball</code>, <code>/hockey</code>, <code>/tennis</code>, <code>/ufc-mma</code>, <code>/golf</code>, <code>/boxing</code>, <code>/cricket</code>, <code>/esports</code>, <code>/politics</code>, <code>/entertainment</code> and any other sport Bovada lists. Slower than naming leagues directly.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "startUrls": {
            "title": "Bovada URLs",
            "type": "array",
            "description": "Paste bovada.lv league or sport URLs straight from your browser.",
            "default": [],
            "items": {
              "type": "object",
              "required": [
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string",
                  "title": "URL of a web page",
                  "format": "uri"
                }
              }
            }
          },
          "scrapeAllLive": {
            "title": "Scrape every live event",
            "type": "boolean",
            "description": "Pull every in-play event across all 25 sports in one request. Ignores the league and sport lists above.",
            "default": false
          },
          "eventStatus": {
            "title": "Event status",
            "enum": [
              "all",
              "upcoming",
              "live"
            ],
            "type": "string",
            "description": "Bovada filters this server-side, so narrowing it here makes the run cheaper and faster.",
            "default": "all"
          },
          "maxEvents": {
            "title": "Maximum events",
            "minimum": 1,
            "maximum": 100000,
            "type": "integer",
            "description": "Stop after this many event rows. Every league in the list contributes until the cap is hit.",
            "default": 100
          },
          "includeFutures": {
            "title": "Include futures and outright markets",
            "type": "boolean",
            "description": "Adds championship winners, season props, division odds and proposition markets (Bovada's <code>RANKEVENT</code> type). These live in separate coupons, so this widens the crawl. Billed as <b>Futures book</b>.",
            "default": false
          },
          "maxMarketsPerEvent": {
            "title": "Maximum markets per event",
            "minimum": 0,
            "maximum": 500,
            "type": "integer",
            "description": "Trim very large events. <code>0</code> keeps every market returned.",
            "default": 0
          },
          "includeAlternateLines": {
            "title": "Alternate lines",
            "type": "boolean",
            "description": "Every alternate spread and total Bovada offers, not just the main number. Turns an 18-game NBA slate from 54 markets into ~380. Billed as <b>Alternate lines</b>.",
            "default": false
          },
          "includePropMarkets": {
            "title": "Prop markets",
            "type": "boolean",
            "description": "Game props, score props, correct score, and the sport-specific prop groups: pitcher and batter props (MLB), set and match props (tennis), fight props (UFC), map markets (esports). Billed as <b>Prop markets</b>.",
            "default": false
          },
          "includeLiveScores": {
            "title": "Live scores",
            "type": "boolean",
            "description": "One extra request per event to Bovada's scoreboard: current score, period, game clock, and the score of every period played. Coverage is partial — the scoreboard has no record for some events (smaller cricket and tennis matches especially), and those rows get an empty block and are not billed. Billed as <b>Live score</b>.",
            "default": false
          },
          "includeValueMetrics": {
            "title": "Value metrics (implied probability, vig, fair price)",
            "type": "boolean",
            "description": "Adds implied probability, the book's hold and vig percentage per market, vig-free probabilities, the break-even fair price, and Hong Kong / Malay / Indonesian odds formats. Billed as <b>Value metrics</b>.",
            "default": false
          },
          "includeLineMovement": {
            "title": "Line movement vs previous run",
            "type": "boolean",
            "description": "Compares every price against the last run of this Actor and reports what moved and by how much. The first run records a baseline and reports no movement. Billed as <b>Line movement</b>.",
            "default": false
          },
          "outputOddsRows": {
            "title": "Also output one row per outcome (tidy format)",
            "type": "boolean",
            "description": "Writes an extra long-format row for every single outcome, ready for arbitrage screens and modelling pipelines. A 10-event NBA slate produces roughly 60 of these. Billed as <b>Odds row</b>.",
            "default": false
          },
          "startsAfter": {
            "title": "Starts after",
            "type": "string",
            "description": "Keep only events starting after this moment. Accepts a date (<code>2026-09-01</code>), a full timestamp, or a relative offset (<code>12h</code>, <code>3d</code>)."
          },
          "startsBefore": {
            "title": "Starts before",
            "type": "string",
            "description": "Keep only events starting before this moment. Same formats as above."
          },
          "teamKeywords": {
            "title": "Team or event keywords",
            "type": "array",
            "description": "Keep only events whose name or competitors match one of these, e.g. <code>Lakers</code>, <code>Real Madrid</code>.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "excludeKeywords": {
            "title": "Exclude keywords",
            "type": "array",
            "description": "Drop events matching any of these. Useful for stripping simulated feeds, e.g. <code>eFootball</code>, <code>MERLIN</code>, <code>eBasketball</code>.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "excludeLeagues": {
            "title": "Exclude leagues",
            "type": "array",
            "description": "Drop whole leagues by name or path fragment, e.g. <code>e-basketball</code>.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "marketKeywords": {
            "title": "Only these markets",
            "type": "array",
            "description": "Keep only markets matching these names or keys, e.g. <code>Moneyline</code>, <code>Total</code>, <code>2W-HCAP</code>. Leave empty for all.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "minAmericanOdds": {
            "title": "Minimum American odds",
            "minimum": -100000,
            "maximum": 100000,
            "type": "integer",
            "description": "Keep only events that offer at least one price at or above this number, e.g. <code>150</code> for underdogs."
          },
          "maxAmericanOdds": {
            "title": "Maximum American odds",
            "minimum": -100000,
            "maximum": 100000,
            "type": "integer",
            "description": "Keep only events that offer at least one price at or below this number, e.g. <code>-200</code> for heavy favourites."
          },
          "onlyWithStreaming": {
            "title": "Only events with live streaming",
            "type": "boolean",
            "description": "Keep only events Bovada flags as streamable.",
            "default": false
          },
          "onlySameGameParlay": {
            "title": "Only events that allow same-game parlays",
            "type": "boolean",
            "description": "Keep only events flagged as SGP-eligible.",
            "default": false
          },
          "oddsFormat": {
            "title": "Odds format",
            "enum": [
              "all",
              "american",
              "decimal",
              "fractional"
            ],
            "type": "string",
            "description": "Bovada returns American, decimal and fractional for every price. Keep all three, or narrow the columns.",
            "default": "all"
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}