diff --git a/Backend/models/arbitrage_detection_notebook.ipynb b/Backend/models/arbitrage_detection_notebook.ipynb deleted file mode 100644 index 557f438..0000000 --- a/Backend/models/arbitrage_detection_notebook.ipynb +++ /dev/null @@ -1,1994 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": { - "application/vnd.databricks.v1+cell": { - "cellMetadata": { - "byteLimit": 2048000, - "rowLimit": 10000 - }, - "inputWidgets": {}, - "nuid": "", - "showTitle": false, - "tableResultSettingsMap": {}, - "title": "" - } - }, - "source": [ - "# Arbitrage Window Detection with Deep Learning\n", - "\n", - "In this notebook, we train a **Dual-Stream Transformer Encoder with Cross-Attention** on historical odds data to identify opportunities for arbitrage betting.\n", - "\n", - "## Architecture Overview\n", - "\n", - "The model processes paired sequences of odds from two bookmakers through:\n", - "1. **Feature Engineering** — raw odds, spread, implied probability difference, rate of change, classical arbitrage indicator\n", - "2. **Dual Transformer Encoders** — one per bookmaker stream, with self-attention + cross-attention\n", - "3. **Attention-Weighted Pooling** — aggregates variable-length sequences (longer = more accurate)\n", - "4. **Market Type Embedding** — conditions the scorer on MONEYLINE / POINTS_SPREAD / POINTS_TOTAL\n", - "5. **MLP Scoring Head** — outputs a scalar arbitrage opportunity score in [0, 1]\n", - "\n", - "This tutorial covers the full lifecycle: data generation, model design, training, hyperparameter tuning, MLflow logging, registration, and deployment." - ] - }, - { - "cell_type": "code", - "execution_count": 32, - "metadata": { - "application/vnd.databricks.v1+cell": { - "cellMetadata": { - "byteLimit": 2048000, - "rowLimit": 10000 - }, - "inputWidgets": {}, - "nuid": "", - "showTitle": true, - "tableResultSettingsMap": {}, - "title": "(Optional) Install the latest version of MLflow" - } - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Note: you may need to restart the kernel to use updated packages.\n" - ] - } - ], - "source": [ - "%pip install -Uqqq mlflow pytorch-lightning optuna skorch uv " - ] - }, - { - "cell_type": "code", - "execution_count": 34, - "metadata": { - "application/vnd.databricks.v1+cell": { - "cellMetadata": { - "byteLimit": 2048000, - "rowLimit": 10000 - }, - "inputWidgets": {}, - "nuid": "", - "showTitle": false, - "tableResultSettingsMap": {}, - "title": "" - } - }, - "outputs": [], - "source": [ - "from typing import Tuple, Optional, Dict, List, Any\n", - "\n", - "import math\n", - "import numpy as np\n", - "import pandas as pd\n", - "import matplotlib.pyplot as plt\n", - "import seaborn as sns\n", - "from sklearn.model_selection import train_test_split\n", - "from sklearn.preprocessing import StandardScaler\n", - "from sklearn.metrics import (\n", - " mean_squared_error, mean_absolute_error, r2_score,\n", - " roc_auc_score, average_precision_score, f1_score, precision_score, recall_score\n", - ")\n", - "\n", - "import torch\n", - "import torch.nn as nn\n", - "import torch.nn.functional as F\n", - "import torch.optim as optim\n", - "from torch.utils.data import DataLoader, Dataset\n", - "from torch.nn.utils.rnn import pad_sequence\n", - "\n", - "import pytorch_lightning as pl\n", - "from pytorch_lightning.callbacks import EarlyStopping, ModelCheckpoint\n", - "\n", - "import mlflow\n", - "from mlflow.models import infer_signature\n", - "from mlflow.tracking import MlflowClient\n", - "from mlflow.entities import Metric, Param\n", - "\n", - "import time\n", - "import warnings\n", - "warnings.filterwarnings(\"ignore\")\n" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "application/vnd.databricks.v1+cell": { - "cellMetadata": { - "byteLimit": 2048000, - "rowLimit": 10000 - }, - "inputWidgets": {}, - "nuid": "", - "showTitle": false, - "tableResultSettingsMap": {}, - "title": "" - } - }, - "source": [ - "## 0. Configure the Model Registry with Unity Catalog\n", - "\n", - "Configure MLflow to use Unity Catalog for model registration." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "application/vnd.databricks.v1+cell": { - "cellMetadata": { - "byteLimit": 2048000, - "rowLimit": 10000 - }, - "inputWidgets": {}, - "nuid": "", - "showTitle": false, - "tableResultSettingsMap": {}, - "title": "" - } - }, - "outputs": [], - "source": "mlflow.set_registry_uri(\"databricks-uc\")\n\nVOLUME_PATH = \"/Volumes/workspace/default/hacklytics_project_storage\"" - }, - { - "cell_type": "markdown", - "execution_count": null, - "metadata": { - "application/vnd.databricks.v1+cell": { - "cellMetadata": { - "byteLimit": 2048000, - "rowLimit": 10000 - }, - "inputWidgets": {}, - "nuid": "", - "showTitle": false, - "tableResultSettingsMap": {}, - "title": "" - } - }, - "outputs": [], - "source": "## 0a. Create Delta Tables and Load Parquet Data\n\nRun the table creation script, then read parquet files from the Databricks Volume\nand write them into the `upcoming_games` and `game_odds` Delta tables." - }, - { - "cell_type": "code", - "source": "# ── Create Delta tables ──────────────────────────────────────────────────────\n%run ../scripts/create_delta_tables", - "metadata": {}, - "execution_count": null, - "outputs": [] - }, - { - "cell_type": "code", - "source": "import os\nfrom functools import reduce\nfrom pyspark.sql import DataFrame, functions as F\n\ndef read_volume_parquets(spark, volume_path: str, prefix: str) -> DataFrame:\n \"\"\"Read all parquet files in a volume whose names start with `prefix`.\n\n Handles the case where there are multiple files sharing a common prefix\n (e.g. events.parquet, events_nba.parquet, events_nfl_2024-25.parquet).\n \"\"\"\n all_files = dbutils.fs.ls(volume_path)\n matched = [\n f.path for f in all_files\n if f.name.startswith(prefix) and f.name.endswith(\".parquet\")\n ]\n if not matched:\n raise FileNotFoundError(\n f\"No parquet files with prefix '{prefix}' found in {volume_path}\"\n )\n print(f\" Found {len(matched)} file(s) for '{prefix}': {[f.split('/')[-1] for f in matched]}\")\n dfs = [spark.read.parquet(path) for path in matched]\n return reduce(DataFrame.unionByName, dfs)\n\n# ── Read parquet files from the volume ───────────────────────────────────────\nprint(f\"Reading parquet files from {VOLUME_PATH} ...\")\nevents_df = read_volume_parquets(spark, VOLUME_PATH, \"events\")\nopening_df = read_volume_parquets(spark, VOLUME_PATH, \"opening\")\nclosing_df = read_volume_parquets(spark, VOLUME_PATH, \"closing\")\n\nprint(f\"\\nEvents: {events_df.count()} rows\")\nprint(f\"Opening: {opening_df.count()} rows\")\nprint(f\"Closing: {closing_df.count()} rows\")", - "metadata": {}, - "execution_count": null, - "outputs": [] - }, - { - "cell_type": "code", - "source": "# ── Cast timestamp columns from string ───────────────────────────────────────\ntimestamp_cols = [\"event_start_time\", \"competition_instance_start\", \"competition_instance_end\"]\n\nfor col_name in timestamp_cols:\n events_df = events_df.withColumn(col_name, F.to_timestamp(col_name))\n opening_df = opening_df.withColumn(col_name, F.to_timestamp(col_name))\n closing_df = closing_df.withColumn(col_name, F.to_timestamp(col_name))\n\nodds_timestamp_cols = [\"read_at\", \"last_found_at\"]\nfor col_name in odds_timestamp_cols:\n opening_df = opening_df.withColumn(col_name, F.to_timestamp(col_name))\n closing_df = closing_df.withColumn(col_name, F.to_timestamp(col_name))\n\n# ── Write events → upcoming_games ───────────────────────────────────────────\nupcoming_games_df = events_df.filter(\n F.col(\"event_start_time\") > F.current_timestamp()\n)\n\nupcoming_games_df.write.mode(\"overwrite\").saveAsTable(\"default.upcoming_games\")\nprint(f\"Wrote {upcoming_games_df.count()} rows to upcoming_games\")\n\n# ── Combine opening + closing odds → game_odds ──────────────────────────────\nopening_tagged = opening_df.withColumn(\"odds_type\", F.lit(\"opening\"))\nclosing_tagged = closing_df.withColumn(\"odds_type\", F.lit(\"closing\"))\nall_odds_df = opening_tagged.unionByName(closing_tagged)\n\nall_odds_df.write.mode(\"overwrite\").saveAsTable(\"default.game_odds\")\nprint(f\"Wrote {all_odds_df.count()} rows to game_odds\")", - "metadata": {}, - "execution_count": null, - "outputs": [] - }, - { - "cell_type": "code", - "source": "# ── Verify Delta tables ──────────────────────────────────────────────────────\nprint(\"=== upcoming_games ===\")\nspark.table(\"default.upcoming_games\").printSchema()\nspark.table(\"default.upcoming_games\").show(5, truncate=False)\n\nprint(\"=== game_odds ===\")\nspark.table(\"default.game_odds\").printSchema()\nspark.table(\"default.game_odds\").show(5, truncate=False)", - "metadata": {}, - "execution_count": null, - "outputs": [] - }, - { - "cell_type": "code", - "source": "# ── Load Delta tables into pandas for model training ─────────────────────────\nX_events = spark.table(\"default.upcoming_games\").toPandas()\nX_odds = spark.table(\"default.game_odds\").toPandas()\n\nX_open_odds = X_odds[X_odds[\"odds_type\"] == \"opening\"].copy()\nX_end_odds = X_odds[X_odds[\"odds_type\"] == \"closing\"].copy()\n\nprint(f\"Events (upcoming): {len(X_events)} rows\")\nprint(f\"Opening odds: {len(X_open_odds)} rows\")\nprint(f\"Closing odds: {len(X_end_odds)} rows\")", - "metadata": {}, - "execution_count": null, - "outputs": [] - }, - { - "cell_type": "markdown", - "metadata": { - "application/vnd.databricks.v1+cell": { - "cellMetadata": { - "byteLimit": 2048000, - "rowLimit": 10000 - }, - "inputWidgets": {}, - "nuid": "", - "showTitle": false, - "tableResultSettingsMap": {}, - "title": "" - } - }, - "source": "## 1. Build Training Data\n\nWe combine **real odds from Delta tables** (opening → closing sequences per bookmaker pair)\nwith **synthetic data** to produce a robust training set. Each sample is a variable-length\ntime series of decimal odds from two bookmakers for a single event and market type." - }, - { - "cell_type": "code", - "source": "from itertools import combinations\n\ndef build_real_odds_samples(\n open_odds: pd.DataFrame,\n close_odds: pd.DataFrame,\n) -> List[Dict[str, Any]]:\n \"\"\"Convert real opening/closing odds into training samples.\n\n For each (event, market_type) group, we find all bookmaker sources,\n form every pair, and build a 2-point time series [opening, closing]\n for each bookmaker in the pair. The arbitrage label is determined by\n whether the sum of implied probabilities drops below 1 at either the\n opening or closing snapshot.\n \"\"\"\n # Join opening and closing odds on the natural key\n join_cols = [\"event_key\", \"market_type\", \"source\", \"participant_key\"]\n merged = open_odds.merge(\n close_odds,\n on=join_cols,\n suffixes=(\"_open\", \"_close\"),\n how=\"inner\",\n )\n\n if merged.empty:\n print(\"Warning: no matching open/close odds pairs found.\")\n return []\n\n samples = []\n # Group by event + market_type to find bookmaker pairs\n for (event_key, market_type), group in merged.groupby([\"event_key\", \"market_type\"]):\n sources = group[\"source\"].unique()\n if len(sources) < 2:\n continue\n\n # Map market_type strings to the model's expected categories\n mt = market_type.upper()\n if mt not in (\"MONEYLINE\", \"POINTS_SPREAD\", \"POINTS_TOTAL\"):\n continue\n\n for src_a, src_b in combinations(sources, 2):\n rows_a = group[group[\"source\"] == src_a]\n rows_b = group[group[\"source\"] == src_b]\n\n if rows_a.empty or rows_b.empty:\n continue\n\n # Use the first participant row for each source to get payout\n row_a = rows_a.iloc[0]\n row_b = rows_b.iloc[0]\n\n # Build 2-point sequences: [opening_payout, closing_payout]\n odds_a = np.array(\n [row_a[\"payout_open\"], row_a[\"payout_close\"]], dtype=np.float32\n )\n odds_b = np.array(\n [row_b[\"payout_open\"], row_b[\"payout_close\"]], dtype=np.float32\n )\n\n # Skip invalid odds (zero or negative payouts)\n if (odds_a <= 0).any() or (odds_b <= 0).any():\n continue\n\n # Determine arbitrage label: sum of implied probs < 1 at any timestep\n impl_sum = (1.0 / odds_a) + (1.0 / odds_b)\n has_arb = float((impl_sum < 1.0).any())\n\n samples.append({\n \"odds_a\": odds_a,\n \"odds_b\": odds_b,\n \"market_type\": mt,\n \"label\": has_arb,\n \"seq_len\": 2,\n })\n\n return samples\n\n\nreal_data = build_real_odds_samples(X_open_odds, X_end_odds)\nn_real_arb = sum(1 for s in real_data if s[\"label\"] == 1.0)\nprint(f\"Real data samples: {len(real_data)}\")\nprint(f\" Arbitrage: {n_real_arb} ({n_real_arb / max(len(real_data), 1):.1%})\")\nprint(f\" No arbitrage: {len(real_data) - n_real_arb}\")", - "metadata": {}, - "execution_count": null, - "outputs": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "application/vnd.databricks.v1+cell": { - "cellMetadata": { - "byteLimit": 2048000, - "rowLimit": 10000 - }, - "inputWidgets": {}, - "nuid": "", - "showTitle": true, - "tableResultSettingsMap": {}, - "title": "Cell 8" - } - }, - "outputs": [], - "source": "def generate_synthetic_odds_data(\n n_samples: int = 3000,\n min_seq_len: int = 10,\n max_seq_len: int = 120,\n seed: int = 42,\n arb_fraction: float = 0.3,\n) -> List[Dict[str, Any]]:\n \"\"\"Generate synthetic paired odds sequences for two bookmakers.\n\n Each sample contains:\n - odds_a: sequence of American odds from bookmaker A\n - odds_b: sequence of American odds from bookmaker B (complementary side)\n - market_type: one of {MONEYLINE, POINTS_SPREAD, POINTS_TOTAL}\n - label: 1 if an arbitrage window existed, 0 otherwise\n - seq_len: length of the sequence\n\n The generator simulates realistic odds dynamics where bookmakers move\n asynchronously and occasionally create short-lived arbitrage windows.\n \"\"\"\n rng = np.random.RandomState(seed)\n market_types = [\"MONEYLINE\", \"POINTS_SPREAD\", \"POINTS_TOTAL\"]\n samples = []\n\n for i in range(n_samples):\n seq_len = rng.randint(min_seq_len, max_seq_len + 1)\n market = rng.choice(market_types)\n has_arb = rng.random() < arb_fraction\n\n # Base implied probabilities for the two sides of a bet\n # (e.g., Team A win vs Team B win for moneyline)\n true_prob_a = rng.uniform(0.30, 0.70)\n true_prob_b = 1.0 - true_prob_a\n\n # Bookmaker vigorish (overround) — typically 3-8%\n vig_a = rng.uniform(0.03, 0.08)\n vig_b = rng.uniform(0.03, 0.08)\n\n # Generate odds sequences as implied probabilities with random walk\n implied_a = np.zeros(seq_len) # bookmaker A implied prob for side A\n implied_b = np.zeros(seq_len) # bookmaker B implied prob for side B\n\n implied_a[0] = true_prob_a + vig_a + rng.normal(0, 0.02)\n implied_b[0] = true_prob_b + vig_b + rng.normal(0, 0.02)\n\n # Correlated random walks with bookmaker-specific lag\n drift_a = rng.normal(0, 0.005, seq_len)\n drift_b = rng.normal(0, 0.005, seq_len)\n\n # Bookmaker B may lag behind market moves\n lag = rng.randint(1, 4)\n common_shock = rng.normal(0, 0.008, seq_len)\n\n for t in range(1, seq_len):\n implied_a[t] = implied_a[t-1] + drift_a[t] + common_shock[t]\n lagged_shock = common_shock[max(0, t - lag)]\n implied_b[t] = implied_b[t-1] + drift_b[t] + lagged_shock\n\n # Clamp to valid probability range\n implied_a = np.clip(implied_a, 0.15, 0.95)\n implied_b = np.clip(implied_b, 0.15, 0.95)\n\n # Inject arbitrage window for positive samples\n if has_arb:\n arb_start = rng.randint(seq_len // 3, 2 * seq_len // 3)\n arb_duration = rng.randint(2, min(8, seq_len - arb_start))\n # Make sum of implied probs < 1 (arbitrage condition)\n for t in range(arb_start, min(arb_start + arb_duration, seq_len)):\n gap = rng.uniform(0.01, 0.04)\n implied_a[t] = true_prob_a - gap / 2\n implied_b[t] = true_prob_b - gap / 2\n\n # Convert implied probabilities to decimal odds\n odds_a = 1.0 / implied_a\n odds_b = 1.0 / implied_b\n\n samples.append({\n \"odds_a\": odds_a.astype(np.float32),\n \"odds_b\": odds_b.astype(np.float32),\n \"market_type\": market,\n \"label\": float(has_arb),\n \"seq_len\": seq_len,\n })\n\n return samples\n\n\nsynthetic_data = generate_synthetic_odds_data(n_samples=4000, seed=42)\nprint(f\"Synthetic samples: {len(synthetic_data)}\")\nprint(f\" Label distribution: {sum(s['label'] for s in synthetic_data) / len(synthetic_data):.1%} positive\")\nprint(f\" Sequence length range: {min(s['seq_len'] for s in synthetic_data)} - {max(s['seq_len'] for s in synthetic_data)}\")\n\n# ── Combine real + synthetic data ────────────────────────────────────────────\nraw_data = real_data + synthetic_data\nn_total_arb = sum(1 for s in raw_data if s[\"label\"] == 1.0)\nprint(f\"\\nCombined training data: {len(raw_data)} samples\")\nprint(f\" Real: {len(real_data)}\")\nprint(f\" Synthetic: {len(synthetic_data)}\")\nprint(f\" Arbitrage: {n_total_arb} ({n_total_arb / len(raw_data):.1%})\")" - }, - { - "cell_type": "markdown", - "metadata": { - "application/vnd.databricks.v1+cell": { - "cellMetadata": { - "byteLimit": 2048000, - "rowLimit": 10000 - }, - "inputWidgets": {}, - "nuid": "", - "showTitle": false, - "tableResultSettingsMap": {}, - "title": "" - } - }, - "source": [ - "## 2. Feature Engineering\n", - "\n", - "At each timestep we compute:\n", - "- Raw decimal odds from both bookmakers\n", - "- Odds spread (A − B)\n", - "- Implied probability difference\n", - "- Classical arbitrage indicator: (< 1 means arbitrage)\n", - "- Rate of change for each bookmaker\n", - "- Time-normalized position in sequence" - ] - }, - { - "cell_type": "code", - "execution_count": 38, - "metadata": { - "application/vnd.databricks.v1+cell": { - "cellMetadata": { - "byteLimit": 2048000, - "rowLimit": 10000 - }, - "inputWidgets": {}, - "nuid": "", - "showTitle": false, - "tableResultSettingsMap": {}, - "title": "" - } - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Feature dimensionality per timestep: 10\n" - ] - } - ], - "source": [ - "MARKET_TYPE_MAP = {\"MONEYLINE\": 0, \"POINTS_SPREAD\": 1, \"POINTS_TOTAL\": 2}\n", - "\n", - "\n", - "def engineer_features(sample: Dict[str, Any]) -> Dict[str, Any]:\n", - " \"\"\"Convert raw odds pair into an engineered feature tensor.\n", - "\n", - " Returns a dict with:\n", - " features: np.ndarray of shape (seq_len, n_features)\n", - " market_type: int index\n", - " label: float\n", - " seq_len: int\n", - " \"\"\"\n", - " odds_a = sample[\"odds_a\"]\n", - " odds_b = sample[\"odds_b\"]\n", - " T = len(odds_a)\n", - "\n", - " # Implied probabilities\n", - " impl_a = 1.0 / odds_a\n", - " impl_b = 1.0 / odds_b\n", - "\n", - " # Classical arbitrage indicator (sum of implied probs)\n", - " arb_indicator = impl_a + impl_b # < 1 means arbitrage\n", - "\n", - " # Spread\n", - " spread = odds_a - odds_b\n", - "\n", - " # Implied probability difference\n", - " impl_diff = impl_a - impl_b\n", - "\n", - " # Rate of change (pad first element with 0)\n", - " delta_a = np.concatenate([[0], np.diff(odds_a)])\n", - " delta_b = np.concatenate([[0], np.diff(odds_b)])\n", - "\n", - " # Relative rate of change\n", - " rel_delta_a = delta_a / (odds_a + 1e-8)\n", - " rel_delta_b = delta_b / (odds_b + 1e-8)\n", - "\n", - " # Time position (normalized 0 to 1)\n", - " time_pos = np.linspace(0, 1, T).astype(np.float32)\n", - "\n", - " # Stack features: (T, 10)\n", - " features = np.stack([\n", - " odds_a, odds_b, # raw odds\n", - " spread, impl_diff, # spreads\n", - " arb_indicator, # arbitrage signal\n", - " delta_a, delta_b, # rate of change\n", - " rel_delta_a, rel_delta_b, # relative rate of change\n", - " time_pos, # temporal position\n", - " ], axis=1).astype(np.float32)\n", - "\n", - " return {\n", - " \"features\": features,\n", - " \"market_type\": MARKET_TYPE_MAP[sample[\"market_type\"]],\n", - " \"label\": sample[\"label\"],\n", - " \"seq_len\": T,\n", - " }\n", - "\n", - "\n", - "engineered_data = [engineer_features(s) for s in raw_data]\n", - "print(f\"Feature dimensionality per timestep: {engineered_data[0]['features'].shape[1]}\")\n" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "application/vnd.databricks.v1+cell": { - "cellMetadata": { - "byteLimit": 2048000, - "rowLimit": 10000 - }, - "inputWidgets": {}, - "nuid": "", - "showTitle": false, - "tableResultSettingsMap": {}, - "title": "" - } - }, - "source": [ - "## 3. Exploratory Data Analysis\n", - "\n", - "Visualize the odds dynamics and feature distributions." - ] - }, - { - "cell_type": "code", - "execution_count": 39, - "metadata": { - "application/vnd.databricks.v1+cell": { - "cellMetadata": { - "byteLimit": 2048000, - "rowLimit": 10000 - }, - "inputWidgets": {}, - "nuid": "", - "showTitle": false, - "tableResultSettingsMap": {}, - "title": "" - } - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "EDA plots generated.\n" - ] - } - ], - "source": [ - "def plot_sample_odds(raw_data, idx=0):\n", - " \"\"\"Plot odds movement for a single sample.\"\"\"\n", - " s = raw_data[idx]\n", - " fig, axes = plt.subplots(1, 2, figsize=(14, 4))\n", - "\n", - " axes[0].plot(s[\"odds_a\"], label=\"Bookmaker A\", alpha=0.8)\n", - " axes[0].plot(s[\"odds_b\"], label=\"Bookmaker B\", alpha=0.8)\n", - " axes[0].set_title(f'Decimal Odds — {s[\"market_type\"]} (label={s[\"label\"]:.0f})')\n", - " axes[0].set_xlabel(\"Timestep\")\n", - " axes[0].set_ylabel(\"Decimal Odds\")\n", - " axes[0].legend()\n", - "\n", - " impl_sum = 1.0 / s[\"odds_a\"] + 1.0 / s[\"odds_b\"]\n", - " axes[1].plot(impl_sum, color=\"red\", alpha=0.8)\n", - " axes[1].axhline(y=1.0, color=\"green\", linestyle=\"--\", label=\"Arbitrage threshold\")\n", - " axes[1].set_title(\"Sum of Implied Probabilities\")\n", - " axes[1].set_xlabel(\"Timestep\")\n", - " axes[1].set_ylabel(\"Σ(1/odds)\")\n", - " axes[1].legend()\n", - "\n", - " plt.tight_layout()\n", - " plt.close(fig)\n", - " return fig\n", - "\n", - "\n", - "def plot_feature_distributions_odds(engineered_data, n_cols=3):\n", - " \"\"\"Plot distributions of engineered features across all timesteps.\"\"\"\n", - " feature_names = [\n", - " \"odds_a\", \"odds_b\", \"spread\", \"impl_diff\",\n", - " \"arb_indicator\", \"delta_a\", \"delta_b\",\n", - " \"rel_delta_a\", \"rel_delta_b\", \"time_pos\"\n", - " ]\n", - " # Collect all timestep features\n", - " all_features = np.concatenate([s[\"features\"] for s in engineered_data], axis=0)\n", - " n_features = all_features.shape[1]\n", - " n_rows = (n_features + n_cols - 1) // n_cols\n", - "\n", - " fig, axes = plt.subplots(n_rows, n_cols, figsize=(15, 4 * n_rows))\n", - " axes = axes.flatten()\n", - "\n", - " for i in range(n_features):\n", - " sns.histplot(all_features[:, i], ax=axes[i], kde=True, color=\"skyblue\", bins=50)\n", - " axes[i].set_title(f\"Distribution of {feature_names[i]}\")\n", - "\n", - " for i in range(n_features, len(axes)):\n", - " axes[i].set_visible(False)\n", - "\n", - " plt.tight_layout()\n", - " fig.suptitle(\"Engineered Feature Distributions\", y=1.02, fontsize=16)\n", - " plt.close(fig)\n", - " return fig\n", - "\n", - "\n", - "def plot_seq_length_distribution(engineered_data):\n", - " \"\"\"Plot distribution of sequence lengths by label.\"\"\"\n", - " fig, ax = plt.subplots(figsize=(8, 4))\n", - " lens_pos = [s[\"seq_len\"] for s in engineered_data if s[\"label\"] == 1.0]\n", - " lens_neg = [s[\"seq_len\"] for s in engineered_data if s[\"label\"] == 0.0]\n", - " ax.hist(lens_neg, bins=30, alpha=0.6, label=\"No arbitrage\", color=\"steelblue\")\n", - " ax.hist(lens_pos, bins=30, alpha=0.6, label=\"Arbitrage\", color=\"coral\")\n", - " ax.set_xlabel(\"Sequence Length\")\n", - " ax.set_ylabel(\"Count\")\n", - " ax.set_title(\"Sequence Length Distribution by Label\")\n", - " ax.legend()\n", - " plt.tight_layout()\n", - " plt.close(fig)\n", - " return fig\n", - "\n", - "\n", - "# Generate EDA plots\n", - "sample_plot_pos = plot_sample_odds(raw_data, idx=next(i for i, s in enumerate(raw_data) if s[\"label\"] == 1.0))\n", - "sample_plot_neg = plot_sample_odds(raw_data, idx=next(i for i, s in enumerate(raw_data) if s[\"label\"] == 0.0))\n", - "feat_dist_plot = plot_feature_distributions_odds(engineered_data)\n", - "seq_len_plot = plot_seq_length_distribution(engineered_data)\n", - "print(\"EDA plots generated.\")\n" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "application/vnd.databricks.v1+cell": { - "cellMetadata": { - "byteLimit": 2048000, - "rowLimit": 10000 - }, - "inputWidgets": {}, - "nuid": "", - "showTitle": false, - "tableResultSettingsMap": {}, - "title": "" - } - }, - "source": [ - "## 4. PyTorch Dataset and Variable-Length Collation\n", - "\n", - "We implement a custom Dataset and a that pads sequences to the\n", - "longest in the batch and returns attention masks. This is critical for\n", - "the transformer to ignore padding tokens." - ] - }, - { - "cell_type": "code", - "execution_count": 40, - "metadata": { - "application/vnd.databricks.v1+cell": { - "cellMetadata": { - "byteLimit": 2048000, - "rowLimit": 10000 - }, - "inputWidgets": {}, - "nuid": "", - "showTitle": false, - "tableResultSettingsMap": {}, - "title": "" - } - }, - "outputs": [], - "source": [ - "class ArbitrageOddsDataset(Dataset):\n", - " \"\"\"PyTorch Dataset for variable-length odds sequences.\"\"\"\n", - "\n", - " def __init__(self, samples: List[Dict[str, Any]]):\n", - " self.samples = samples\n", - "\n", - " def __len__(self):\n", - " return len(self.samples)\n", - "\n", - " def __getitem__(self, idx):\n", - " s = self.samples[idx]\n", - " return {\n", - " \"features\": torch.tensor(s[\"features\"], dtype=torch.float32),\n", - " \"market_type\": torch.tensor(s[\"market_type\"], dtype=torch.long),\n", - " \"label\": torch.tensor(s[\"label\"], dtype=torch.float32),\n", - " \"seq_len\": s[\"seq_len\"],\n", - " }\n", - "\n", - "\n", - "def collate_fn(batch: List[Dict]) -> Dict[str, torch.Tensor]:\n", - " \"\"\"Pad variable-length sequences and create attention masks.\"\"\"\n", - " features = [item[\"features\"] for item in batch]\n", - " market_types = torch.stack([item[\"market_type\"] for item in batch])\n", - " labels = torch.stack([item[\"label\"] for item in batch])\n", - " seq_lens = torch.tensor([item[\"seq_len\"] for item in batch], dtype=torch.long)\n", - "\n", - " # Pad sequences to max length in batch\n", - " features_padded = pad_sequence(features, batch_first=True, padding_value=0.0)\n", - " B, T, _ = features_padded.shape\n", - "\n", - " # Create attention mask (1 = valid, 0 = padding)\n", - " mask = torch.arange(T).unsqueeze(0).expand(B, T) < seq_lens.unsqueeze(1)\n", - "\n", - " return {\n", - " \"features\": features_padded, # (B, T, F)\n", - " \"mask\": mask, # (B, T)\n", - " \"market_type\": market_types, # (B,)\n", - " \"label\": labels, # (B,)\n", - " \"seq_len\": seq_lens, # (B,)\n", - " }" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "application/vnd.databricks.v1+cell": { - "cellMetadata": { - "byteLimit": 2048000, - "rowLimit": 10000 - }, - "inputWidgets": {}, - "nuid": "", - "showTitle": false, - "tableResultSettingsMap": {}, - "title": "" - } - }, - "source": [ - "## 5. Dual-Stream Transformer Encoder with Cross-Attention\n", - "\n", - "The model architecture:\n", - "\n", - "\n", - "\n", - "Key design choices:\n", - "- **ALiBi positional bias** for length generalization\n", - "- **Cross-attention** in later layers for inter-bookmaker dynamics\n", - "- **Attention-weighted pooling** so longer sequences contribute more evidence" - ] - }, - { - "cell_type": "code", - "execution_count": 41, - "metadata": { - "application/vnd.databricks.v1+cell": { - "cellMetadata": { - "byteLimit": 2048000, - "rowLimit": 10000 - }, - "inputWidgets": {}, - "nuid": "", - "showTitle": false, - "tableResultSettingsMap": {}, - "title": "" - } - }, - "outputs": [], - "source": [ - "class ALiBiAttention(nn.Module):\n", - " \"\"\"Multi-head attention with ALiBi (Attention with Linear Biases) positional encoding.\n", - "\n", - " ALiBi adds a linear bias to attention scores based on query-key distance,\n", - " enabling strong length generalization without learned positional embeddings.\n", - " \"\"\"\n", - "\n", - " def __init__(self, d_model: int, n_heads: int, dropout: float = 0.1):\n", - " super().__init__()\n", - " assert d_model % n_heads == 0\n", - " self.d_model = d_model\n", - " self.n_heads = n_heads\n", - " self.head_dim = d_model // n_heads\n", - " self.scale = self.head_dim ** -0.5\n", - "\n", - " self.q_proj = nn.Linear(d_model, d_model)\n", - " self.k_proj = nn.Linear(d_model, d_model)\n", - " self.v_proj = nn.Linear(d_model, d_model)\n", - " self.out_proj = nn.Linear(d_model, d_model)\n", - " self.dropout = nn.Dropout(dropout)\n", - "\n", - " # Compute ALiBi slopes (one per head)\n", - " slopes = self._compute_slopes(n_heads)\n", - " self.register_buffer(\"slopes\", slopes) # (n_heads,)\n", - "\n", - " @staticmethod\n", - " def _compute_slopes(n_heads: int) -> torch.Tensor:\n", - " \"\"\"Compute ALiBi slopes following the geometric sequence from the paper.\"\"\"\n", - " def get_slopes_power_of_2(n):\n", - " start = 2 ** (-(2 ** -(math.log2(n) - 3)))\n", - " ratio = start\n", - " return [start * (ratio ** i) for i in range(n)]\n", - "\n", - " if math.log2(n_heads).is_integer():\n", - " return torch.tensor(get_slopes_power_of_2(n_heads), dtype=torch.float32)\n", - " else:\n", - " closest_power = 2 ** math.floor(math.log2(n_heads))\n", - " slopes = get_slopes_power_of_2(closest_power)\n", - " extra = get_slopes_power_of_2(2 * closest_power)[0::2][:n_heads - closest_power]\n", - " return torch.tensor(slopes + extra, dtype=torch.float32)\n", - "\n", - " def _alibi_bias(self, T: int) -> torch.Tensor:\n", - " \"\"\"Create ALiBi bias matrix of shape (n_heads, T, T).\"\"\"\n", - " positions = torch.arange(T, device=self.slopes.device)\n", - " distance = positions.unsqueeze(0) - positions.unsqueeze(1) # (T, T)\n", - " bias = self.slopes.unsqueeze(-1).unsqueeze(-1) * distance.unsqueeze(0).abs().neg()\n", - " return bias # (n_heads, T, T)\n", - "\n", - " def forward(\n", - " self,\n", - " query: torch.Tensor,\n", - " key: torch.Tensor,\n", - " value: torch.Tensor,\n", - " mask: Optional[torch.Tensor] = None,\n", - " ) -> torch.Tensor:\n", - " \"\"\"\n", - " Args:\n", - " query: (B, T_q, d_model)\n", - " key: (B, T_k, d_model)\n", - " value: (B, T_k, d_model)\n", - " mask: (B, T_k) boolean mask, True=valid\n", - " Returns:\n", - " (B, T_q, d_model)\n", - " \"\"\"\n", - " B, T_q, _ = query.shape\n", - " T_k = key.shape[1]\n", - "\n", - " Q = self.q_proj(query).view(B, T_q, self.n_heads, self.head_dim).transpose(1, 2)\n", - " K = self.k_proj(key).view(B, T_k, self.n_heads, self.head_dim).transpose(1, 2)\n", - " V = self.v_proj(value).view(B, T_k, self.n_heads, self.head_dim).transpose(1, 2)\n", - "\n", - " # Scaled dot-product attention + ALiBi bias\n", - " attn = (Q @ K.transpose(-2, -1)) * self.scale\n", - "\n", - " # Only add ALiBi bias for self-attention (T_q == T_k)\n", - " if T_q == T_k:\n", - " attn = attn + self._alibi_bias(T_q).unsqueeze(0)\n", - "\n", - " # Apply padding mask\n", - " if mask is not None:\n", - " # mask: (B, T_k) -> (B, 1, 1, T_k)\n", - " mask_expanded = mask.unsqueeze(1).unsqueeze(2)\n", - " attn = attn.masked_fill(~mask_expanded, float(\"-inf\"))\n", - "\n", - " attn = F.softmax(attn, dim=-1)\n", - " attn = self.dropout(attn)\n", - "\n", - " out = (attn @ V).transpose(1, 2).contiguous().view(B, T_q, self.d_model)\n", - " return self.out_proj(out)\n", - "\n", - "\n", - "class TransformerEncoderLayer(nn.Module):\n", - " \"\"\"Single transformer encoder layer with optional cross-attention.\"\"\"\n", - "\n", - " def __init__(self, d_model: int, n_heads: int, d_ff: int, dropout: float = 0.1, use_cross_attn: bool = False):\n", - " super().__init__()\n", - " self.self_attn = ALiBiAttention(d_model, n_heads, dropout)\n", - " self.norm1 = nn.LayerNorm(d_model)\n", - "\n", - " self.use_cross_attn = use_cross_attn\n", - " if use_cross_attn:\n", - " self.cross_attn = ALiBiAttention(d_model, n_heads, dropout)\n", - " self.norm_cross = nn.LayerNorm(d_model)\n", - "\n", - " self.ffn = nn.Sequential(\n", - " nn.Linear(d_model, d_ff),\n", - " nn.GELU(),\n", - " nn.Dropout(dropout),\n", - " nn.Linear(d_ff, d_model),\n", - " nn.Dropout(dropout),\n", - " )\n", - " self.norm2 = nn.LayerNorm(d_model)\n", - "\n", - " def forward(\n", - " self,\n", - " x: torch.Tensor,\n", - " mask: Optional[torch.Tensor] = None,\n", - " cross_kv: Optional[torch.Tensor] = None,\n", - " cross_mask: Optional[torch.Tensor] = None,\n", - " ) -> torch.Tensor:\n", - " # Self-attention\n", - " residual = x\n", - " x = self.norm1(x)\n", - " x = residual + self.self_attn(x, x, x, mask)\n", - "\n", - " # Cross-attention (attend to the other bookmaker stream)\n", - " if self.use_cross_attn and cross_kv is not None:\n", - " residual = x\n", - " x = self.norm_cross(x)\n", - " x = residual + self.cross_attn(x, cross_kv, cross_kv, cross_mask)\n", - "\n", - " # Feed-forward\n", - " residual = x\n", - " x = self.norm2(x)\n", - " x = residual + self.ffn(x)\n", - "\n", - " return x\n", - "\n", - "\n", - "class AttentionPooling(nn.Module):\n", - " \"\"\"Learnable attention-weighted pooling over the sequence dimension.\n", - "\n", - " Longer sequences provide more evidence vectors for the pooling to attend to,\n", - " naturally producing more confident (and accurate) scores.\n", - " \"\"\"\n", - "\n", - " def __init__(self, d_model: int):\n", - " super().__init__()\n", - " self.query = nn.Parameter(torch.randn(1, 1, d_model))\n", - " self.scale = d_model ** -0.5\n", - "\n", - " def forward(self, x: torch.Tensor, mask: Optional[torch.Tensor] = None) -> torch.Tensor:\n", - " \"\"\"\n", - " Args:\n", - " x: (B, T, d_model)\n", - " mask: (B, T) boolean\n", - " Returns:\n", - " (B, d_model)\n", - " \"\"\"\n", - " # Compute attention scores\n", - " scores = (self.query * x).sum(dim=-1) * self.scale # (B, T)\n", - "\n", - " if mask is not None:\n", - " scores = scores.masked_fill(~mask, float(\"-inf\"))\n", - "\n", - " weights = F.softmax(scores, dim=-1).unsqueeze(-1) # (B, T, 1)\n", - " return (weights * x).sum(dim=1) # (B, d_model)\n", - "\n", - "\n", - "class TemporalArbitrageScorer(nn.Module):\n", - " \"\"\"Dual-Stream Transformer Encoder with Cross-Attention for arbitrage detection.\n", - "\n", - " The input feature tensor contains both bookmaker streams stacked together.\n", - " The model splits them internally, processes each through its own transformer\n", - " stream with cross-attention in later layers, pools with learned attention\n", - " weights, and produces a scalar arbitrage score.\n", - " \"\"\"\n", - "\n", - " def __init__(\n", - " self,\n", - " n_input_features: int = 10,\n", - " d_model: int = 64,\n", - " n_heads: int = 4,\n", - " n_layers: int = 3,\n", - " d_ff: int = 256,\n", - " dropout: float = 0.1,\n", - " n_market_types: int = 3,\n", - " cross_attn_start_layer: int = 1,\n", - " ):\n", - " super().__init__()\n", - " self.d_model = d_model\n", - " self.n_input_features = n_input_features\n", - " self.n_layers = n_layers\n", - " self.n_heads = n_heads\n", - " self.d_ff = d_ff\n", - " self.dropout_rate = dropout\n", - "\n", - " # Split features: first 5 features relate more to bookmaker A, rest to B\n", - " # But we project the full feature vector for each stream (shared context)\n", - " self.proj_a = nn.Linear(n_input_features, d_model)\n", - " self.proj_b = nn.Linear(n_input_features, d_model)\n", - "\n", - " # Market type embedding\n", - " self.market_emb = nn.Embedding(n_market_types, d_model)\n", - "\n", - " # Transformer layers for stream A\n", - " self.layers_a = nn.ModuleList([\n", - " TransformerEncoderLayer(\n", - " d_model, n_heads, d_ff, dropout,\n", - " use_cross_attn=(i >= cross_attn_start_layer)\n", - " )\n", - " for i in range(n_layers)\n", - " ])\n", - "\n", - " # Transformer layers for stream B\n", - " self.layers_b = nn.ModuleList([\n", - " TransformerEncoderLayer(\n", - " d_model, n_heads, d_ff, dropout,\n", - " use_cross_attn=(i >= cross_attn_start_layer)\n", - " )\n", - " for i in range(n_layers)\n", - " ])\n", - "\n", - " # Attention pooling for each stream\n", - " self.pool_a = AttentionPooling(d_model)\n", - " self.pool_b = AttentionPooling(d_model)\n", - "\n", - " # MLP scoring head\n", - " self.head = nn.Sequential(\n", - " nn.Linear(d_model * 2 + d_model, d_ff), # concat streams + market emb\n", - " nn.GELU(),\n", - " nn.Dropout(dropout),\n", - " nn.Linear(d_ff, d_ff // 2),\n", - " nn.GELU(),\n", - " nn.Dropout(dropout),\n", - " nn.Linear(d_ff // 2, 1),\n", - " )\n", - "\n", - " def forward(\n", - " self,\n", - " features: torch.Tensor,\n", - " mask: torch.Tensor,\n", - " market_type: torch.Tensor,\n", - " ) -> torch.Tensor:\n", - " \"\"\"\n", - " Args:\n", - " features: (B, T, n_input_features) padded feature tensor\n", - " mask: (B, T) boolean, True = valid timestep\n", - " market_type: (B,) integer market type index\n", - " Returns:\n", - " (B,) arbitrage score in [0, 1]\n", - " \"\"\"\n", - " # Project into two streams\n", - " h_a = self.proj_a(features) # (B, T, d_model)\n", - " h_b = self.proj_b(features) # (B, T, d_model)\n", - "\n", - " # Process through transformer layers with cross-attention\n", - " for layer_a, layer_b in zip(self.layers_a, self.layers_b):\n", - " h_a_new = layer_a(h_a, mask=mask, cross_kv=h_b, cross_mask=mask)\n", - " h_b_new = layer_b(h_b, mask=mask, cross_kv=h_a, cross_mask=mask)\n", - " h_a, h_b = h_a_new, h_b_new\n", - "\n", - " # Pool each stream\n", - " pooled_a = self.pool_a(h_a, mask) # (B, d_model)\n", - " pooled_b = self.pool_b(h_b, mask) # (B, d_model)\n", - "\n", - " # Market type embedding\n", - " m_emb = self.market_emb(market_type) # (B, d_model)\n", - "\n", - " # Concatenate and score\n", - " combined = torch.cat([pooled_a, pooled_b, m_emb], dim=-1)\n", - " score = torch.sigmoid(self.head(combined).squeeze(-1)) # (B,)\n", - "\n", - " return score\n", - "\n", - " def get_params(self) -> Dict[str, Any]:\n", - " \"\"\"Return model parameters for MLflow logging.\"\"\"\n", - " return {\n", - " \"n_input_features\": self.n_input_features,\n", - " \"d_model\": self.d_model,\n", - " \"n_heads\": self.n_heads,\n", - " \"n_layers\": self.n_layers,\n", - " \"d_ff\": self.d_ff,\n", - " \"dropout\": self.dropout_rate,\n", - " }" - ] - }, - { - "cell_type": "code", - "execution_count": 42, - "metadata": { - "application/vnd.databricks.v1+cell": { - "cellMetadata": { - "byteLimit": 2048000, - "rowLimit": 10000 - }, - "inputWidgets": {}, - "nuid": "", - "showTitle": false, - "tableResultSettingsMap": {}, - "title": "" - } - }, - "outputs": [], - "source": [ - "class ArbitrageLightningModule(pl.LightningModule):\n", - " \"\"\"PyTorch Lightning wrapper for the TemporalArbitrageScorer.\"\"\"\n", - "\n", - " def __init__(\n", - " self,\n", - " n_input_features: int = 10,\n", - " d_model: int = 64,\n", - " n_heads: int = 4,\n", - " n_layers: int = 3,\n", - " d_ff: int = 256,\n", - " dropout: float = 0.1,\n", - " learning_rate: float = 1e-3,\n", - " weight_decay: float = 1e-5,\n", - " cross_attn_start_layer: int = 1,\n", - " ):\n", - " super().__init__()\n", - " self.save_hyperparameters()\n", - "\n", - " self.model = TemporalArbitrageScorer(\n", - " n_input_features=n_input_features,\n", - " d_model=d_model,\n", - " n_heads=n_heads,\n", - " n_layers=n_layers,\n", - " d_ff=d_ff,\n", - " dropout=dropout,\n", - " cross_attn_start_layer=cross_attn_start_layer,\n", - " )\n", - "\n", - " self.loss_fn = nn.BCELoss()\n", - "\n", - " def forward(self, features, mask, market_type):\n", - " return self.model(features, mask, market_type)\n", - "\n", - " def _shared_step(self, batch, stage: str):\n", - " scores = self(batch[\"features\"], batch[\"mask\"], batch[\"market_type\"])\n", - " loss = self.loss_fn(scores, batch[\"label\"])\n", - "\n", - " # Metrics\n", - " preds = (scores > 0.5).float()\n", - " acc = (preds == batch[\"label\"]).float().mean()\n", - "\n", - " self.log(f\"{stage}_loss\", loss, prog_bar=True, batch_size=len(batch[\"label\"]))\n", - " self.log(f\"{stage}_acc\", acc, prog_bar=True, batch_size=len(batch[\"label\"]))\n", - " return loss\n", - "\n", - " def training_step(self, batch, batch_idx):\n", - " return self._shared_step(batch, \"train\")\n", - "\n", - " def validation_step(self, batch, batch_idx):\n", - " return self._shared_step(batch, \"val\")\n", - "\n", - " def test_step(self, batch, batch_idx):\n", - " return self._shared_step(batch, \"test\")\n", - "\n", - " def configure_optimizers(self):\n", - " optimizer = torch.optim.AdamW(\n", - " self.parameters(),\n", - " lr=self.hparams.learning_rate,\n", - " weight_decay=self.hparams.weight_decay,\n", - " )\n", - " scheduler = torch.optim.lr_scheduler.CosineAnnealingWarmRestarts(\n", - " optimizer, T_0=10, T_mult=2\n", - " )\n", - " return {\"optimizer\": optimizer, \"lr_scheduler\": scheduler}\n", - "\n", - " def get_params(self) -> Dict[str, Any]:\n", - " return self.model.get_params()\n" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "application/vnd.databricks.v1+cell": { - "cellMetadata": { - "byteLimit": 2048000, - "rowLimit": 10000 - }, - "inputWidgets": {}, - "nuid": "", - "showTitle": false, - "tableResultSettingsMap": {}, - "title": "" - } - }, - "source": [ - "## 6. Train / Validation / Test Split & DataLoaders\n", - "\n", - "We split the engineered data and create DataLoaders with our custom collate function." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "application/vnd.databricks.v1+cell": { - "cellMetadata": { - "byteLimit": 2048000, - "rowLimit": 10000 - }, - "inputWidgets": {}, - "nuid": "", - "showTitle": false, - "tableResultSettingsMap": {}, - "title": "" - } - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "2901\n", - "Train: 2800, Val: 600, Test: 600\n", - "Train positives: 28.5%\n" - ] - } - ], - "source": [ - "# Split indices\n", - "indices = list(range(len(engineered_data)))\n", - "labels_for_split = [s[\"label\"] for s in engineered_data]\n", - "\n", - "train_idx, temp_idx = train_test_split(indices, test_size=0.3, random_state=42, stratify=labels_for_split)\n", - "\n", - "print(train_idx[0])\n", - "temp_labels = [labels_for_split[i] for i in temp_idx]\n", - "val_idx, test_idx = train_test_split(temp_idx, test_size=0.5, random_state=42, stratify=temp_labels)\n", - "\n", - "train_data = [engineered_data[i] for i in train_idx]\n", - "\n", - "val_data = [engineered_data[i] for i in val_idx]\n", - "test_data = [engineered_data[i] for i in test_idx]\n", - "\n", - "print(f\"Train: {len(train_data)}, Val: {len(val_data)}, Test: {len(test_data)}\")\n", - "print(f\"Train positives: {sum(1 for s in train_data if s['label'] == 1.0) / len(train_data):.1%}\")\n", - "\n", - "# Create DataLoaders\n", - "BATCH_SIZE = 32\n", - "\n", - "train_loader = DataLoader(\n", - " ArbitrageOddsDataset(train_data), batch_size=BATCH_SIZE, shuffle=True, collate_fn=collate_fn\n", - ")\n", - "val_loader = DataLoader(\n", - " ArbitrageOddsDataset(val_data), batch_size=BATCH_SIZE, shuffle=False, collate_fn=collate_fn\n", - ")\n", - "test_loader = DataLoader(\n", - " ArbitrageOddsDataset(test_data), batch_size=BATCH_SIZE, shuffle=False, collate_fn=collate_fn\n", - ")\n" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "application/vnd.databricks.v1+cell": { - "cellMetadata": { - "byteLimit": 2048000, - "rowLimit": 10000 - }, - "inputWidgets": {}, - "nuid": "", - "showTitle": false, - "tableResultSettingsMap": {}, - "title": "" - } - }, - "source": [ - "## 7. Standard Training Workflow\n", - "\n", - "Train the Temporal Arbitrage Scorer with default hyperparameters as a baseline.\n", - "We use curriculum training — starting with shorter sequences and gradually including longer ones." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "application/vnd.databricks.v1+cell": { - "cellMetadata": { - "byteLimit": 2048000, - "rowLimit": 10000 - }, - "inputWidgets": {}, - "nuid": "", - "showTitle": false, - "tableResultSettingsMap": {}, - "title": "" - } - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "GPU available: True (mps), used: True\n", - "TPU available: False, using: 0 TPU cores\n", - "💡 Tip: For seamless cloud logging and experiment tracking, try installing [litlogger](https://pypi.org/project/litlogger/) to enable LitLogger, which logs metrics and artifacts automatically to the Lightning Experiments platform.\n", - "\n", - " | Name | Type | Params | Mode | FLOPs\n", - "--------------------------------------------------------------------\n", - "0 | model | TemporalArbitrageScorer | 4.5 K | train | 0 \n", - "1 | loss_fn | BCELoss | 0 | train | 0 \n", - "--------------------------------------------------------------------\n", - "4.5 K Trainable params\n", - "0 Non-trainable params\n", - "4.5 K Total params\n", - "0.018 Total estimated model params size (MB)\n", - "135 Modules in train mode\n", - "0 Modules in eval mode\n", - "0 Total Flops\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Epoch 0: 100%|██████████| 175/175 [00:11<00:00, 15.24it/s, v_num=7, train_loss=0.707, train_acc=0.438, val_loss=0.692, val_acc=0.715]" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "`Trainer.fit` stopped: `max_epochs=1` reached.\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Epoch 0: 100%|██████████| 175/175 [00:11<00:00, 15.08it/s, v_num=7, train_loss=0.707, train_acc=0.438, val_loss=0.692, val_acc=0.715]\n", - "Testing DataLoader 0: 100%|██████████| 38/38 [00:00<00:00, 65.25it/s]\n", - "────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────\n", - " Test metric DataLoader 0\n", - "────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────\n", - " test_acc 0.7116666436195374\n", - " test_loss 0.6922598481178284\n", - "────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────\n", - "AUC-ROC: 0.4982\n", - "AUC-PR: 0.2920\n", - "F1: 0.0114\n", - "Prec: 0.2500\n", - "Recall: 0.0058\n", - "\n", - "Accuracy by sequence length:\n", - " [ 10, 30): 0.702 (n=104)\n", - " [ 30, 60): 0.758 (n=157)\n", - " [ 60, 90): 0.696 (n=171)\n", - " [ 90, 121): 0.690 (n=168)\n" - ] - } - ], - "source": [ - "# Model hyperparameters\n", - "N_INPUT_FEATURES = 10\n", - "D_MODEL = 32\n", - "N_HEADS = 4\n", - "N_LAYERS = 3\n", - "D_FF = 256\n", - "DROPOUT = 0.1\n", - "LEARNING_RATE = 1e-3\n", - "WEIGHT_DECAY = 1e-5\n", - "\n", - "# Create the model\n", - "model = ArbitrageLightningModule(\n", - " n_input_features=N_INPUT_FEATURES,\n", - " d_model=D_MODEL,\n", - " n_heads=N_HEADS,\n", - " n_layers=N_LAYERS,\n", - " d_ff=D_FF,\n", - " dropout=DROPOUT,\n", - " learning_rate=LEARNING_RATE,\n", - " weight_decay=WEIGHT_DECAY,\n", - ")\n", - "\n", - "# Callbacks\n", - "early_stopping = EarlyStopping(monitor=\"val_loss\", patience=1, mode=\"min\")\n", - "checkpoint_callback = ModelCheckpoint(\n", - " monitor=\"val_loss\",\n", - " dirpath=\"./checkpoints\",\n", - " filename=\"arb-scorer-{epoch:02d}-{val_loss:.4f}\",\n", - " save_top_k=1,\n", - " mode=\"min\",\n", - ")\n", - "\n", - "# Trainer\n", - "trainer = pl.Trainer(\n", - " max_epochs=30,\n", - " callbacks=[early_stopping, checkpoint_callback],\n", - " enable_progress_bar=True,\n", - " log_every_n_steps=5,\n", - ")\n", - "\n", - "# Train\n", - "trainer.fit(model, train_loader, val_loader)\n", - "\n", - "# Test\n", - "test_results = trainer.test(model, test_loader)\n", - "\n", - "# Collect predictions for evaluation\n", - "model.eval()\n", - "all_scores = []\n", - "all_labels = []\n", - "\n", - "with torch.no_grad():\n", - " for batch in test_loader:\n", - " scores = model(batch[\"features\"], batch[\"mask\"], batch[\"market_type\"])\n", - " all_scores.extend(scores.cpu().numpy())\n", - " all_labels.extend(batch[\"label\"].cpu().numpy())\n", - "\n", - "all_scores = np.array(all_scores)\n", - "all_labels = np.array(all_labels)\n", - "\n", - "# Calculate classification metrics\n", - "preds_binary = (all_scores > 0.5).astype(float)\n", - "auc_roc = roc_auc_score(all_labels, all_scores)\n", - "auc_pr = average_precision_score(all_labels, all_scores)\n", - "f1 = f1_score(all_labels, preds_binary)\n", - "precision = precision_score(all_labels, preds_binary)\n", - "recall = recall_score(all_labels, preds_binary)\n", - "\n", - "print(f\"AUC-ROC: {auc_roc:.4f}\")\n", - "print(f\"AUC-PR: {auc_pr:.4f}\")\n", - "print(f\"F1: {f1:.4f}\")\n", - "print(f\"Prec: {precision:.4f}\")\n", - "print(f\"Recall: {recall:.4f}\")\n", - "\n", - "# Analyze accuracy by sequence length (key: longer = better)\n", - "test_seq_lens = np.array([s[\"seq_len\"] for s in test_data])\n", - "length_bins = [(10, 30), (30, 60), (60, 90), (90, 121)]\n", - "print(\"\\nAccuracy by sequence length:\")\n", - "for lo, hi in length_bins:\n", - " mask = (test_seq_lens >= lo) & (test_seq_lens < hi)\n", - " if mask.sum() > 0:\n", - " bin_acc = (preds_binary[mask] == all_labels[mask]).mean()\n", - " print(f\" [{lo:3d}, {hi:3d}): {bin_acc:.3f} (n={mask.sum()})\")" - ] - }, - { - "cell_type": "code", - "execution_count": 28, - "metadata": { - "application/vnd.databricks.v1+cell": { - "cellMetadata": { - "byteLimit": 2048000, - "rowLimit": 10000 - }, - "inputWidgets": {}, - "nuid": "", - "showTitle": false, - "tableResultSettingsMap": {}, - "title": "" - } - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Evaluation plots generated.\n" - ] - } - ], - "source": [ - "def plot_score_distribution(scores, labels):\n", - " \"\"\"Plot score distribution by class.\"\"\"\n", - " fig, ax = plt.subplots(figsize=(8, 4))\n", - " ax.hist(scores[labels == 0], bins=40, alpha=0.6, label=\"No arb\", color=\"steelblue\")\n", - " ax.hist(scores[labels == 1], bins=40, alpha=0.6, label=\"Arbitrage\", color=\"coral\")\n", - " ax.set_xlabel(\"Predicted Score\")\n", - " ax.set_ylabel(\"Count\")\n", - " ax.set_title(\"Score Distribution by Class\")\n", - " ax.legend()\n", - " plt.tight_layout()\n", - " plt.close(fig)\n", - " return fig\n", - "\n", - "\n", - "def plot_accuracy_by_length(scores, labels, seq_lens):\n", - " \"\"\"Plot accuracy vs sequence length to verify longer = better.\"\"\"\n", - " fig, ax = plt.subplots(figsize=(8, 4))\n", - " preds = (scores > 0.5).astype(float)\n", - " correct = (preds == labels).astype(float)\n", - "\n", - " # Bin by sequence length\n", - " bins = np.arange(10, 130, 10)\n", - " bin_indices = np.digitize(seq_lens, bins)\n", - " bin_accs = []\n", - " bin_centers = []\n", - " for b in range(1, len(bins)):\n", - " mask = bin_indices == b\n", - " if mask.sum() > 5:\n", - " bin_accs.append(correct[mask].mean())\n", - " bin_centers.append((bins[b-1] + bins[b]) / 2)\n", - "\n", - " ax.plot(bin_centers, bin_accs, \"o-\", color=\"teal\", markersize=8)\n", - " ax.set_xlabel(\"Sequence Length\")\n", - " ax.set_ylabel(\"Accuracy\")\n", - " ax.set_title(\"Accuracy vs Sequence Length (Longer → Better)\")\n", - " ax.set_ylim(0, 1.05)\n", - " ax.grid(True, alpha=0.3)\n", - " plt.tight_layout()\n", - " plt.close(fig)\n", - " return fig\n", - "\n", - "\n", - "score_dist_plot = plot_score_distribution(all_scores, all_labels)\n", - "acc_by_len_plot = plot_accuracy_by_length(all_scores, all_labels, test_seq_lens)\n", - "print(\"Evaluation plots generated.\")\n" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "application/vnd.databricks.v1+cell": { - "cellMetadata": { - "byteLimit": 2048000, - "rowLimit": 10000 - }, - "inputWidgets": {}, - "nuid": "", - "showTitle": false, - "tableResultSettingsMap": {}, - "title": "" - } - }, - "source": [ - "## 8. Log the Model with MLflow\n", - "\n", - "Log all metrics, parameters, artifacts, and the model to MLflow." - ] - }, - { - "cell_type": "code", - "execution_count": 30, - "metadata": { - "application/vnd.databricks.v1+cell": { - "cellMetadata": { - "byteLimit": 2048000, - "rowLimit": 10000 - }, - "inputWidgets": {}, - "nuid": "", - "showTitle": true, - "tableResultSettingsMap": {}, - "title": "Cell 24: MLflow Logging with Signature" - } - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Test AUC-ROC: 0.5410\n", - "Test F1: 0.0000\n" - ] - } - ], - "source": [ - "from mlflow.models import infer_signature\n", - "\n", - "with mlflow.start_run() as run:\n", - " mlflow_client = MlflowClient()\n", - " run_id = run.info.run_id\n", - "\n", - " # Log model architecture params\n", - " model_params = model.get_params()\n", - " mlflow.log_params(model_params)\n", - "\n", - " # Batch log metrics\n", - " current_time = int(time.time() * 1000)\n", - " metrics_list = [\n", - " Metric(\"test_auc_roc\", auc_roc, current_time, 0),\n", - " Metric(\"test_auc_pr\", auc_pr, current_time, 0),\n", - " Metric(\"test_f1\", f1, current_time, 0),\n", - " Metric(\"test_precision\", precision, current_time, 0),\n", - " Metric(\"test_recall\", recall, current_time, 0),\n", - " ]\n", - "\n", - " train_loss = trainer.callback_metrics.get(\"train_loss\")\n", - " val_loss = trainer.callback_metrics.get(\"val_loss\")\n", - " if train_loss is not None:\n", - " metrics_list.append(Metric(\"train_loss\", train_loss.item(), current_time, 0))\n", - " if val_loss is not None:\n", - " metrics_list.append(Metric(\"val_loss\", val_loss.item(), current_time, 0))\n", - "\n", - " params_list = [\n", - " Param(\"batch_size\", str(BATCH_SIZE)),\n", - " Param(\"max_epochs\", str(trainer.max_epochs)),\n", - " Param(\"actual_epochs\", str(trainer.current_epoch)),\n", - " Param(\"early_stopping_patience\", str(10)),\n", - " ]\n", - "\n", - " mlflow_client.log_batch(run_id, metrics=metrics_list, params=params_list)\n", - "\n", - " print(f\"Test AUC-ROC: {auc_roc:.4f}\")\n", - " print(f\"Test F1: {f1:.4f}\")" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "application/vnd.databricks.v1+cell": { - "cellMetadata": { - "byteLimit": 2048000, - "rowLimit": 10000 - }, - "inputWidgets": {}, - "nuid": "", - "showTitle": false, - "tableResultSettingsMap": {}, - "title": "" - } - }, - "source": [ - "## 10. Pre-deployment Validation\n", - "\n", - "Validate that the registered model can be loaded and produces predictions." - ] - }, - { - "cell_type": "code", - "execution_count": 0, - "metadata": { - "application/vnd.databricks.v1+cell": { - "cellMetadata": { - "byteLimit": 2048000, - "rowLimit": 10000 - }, - "inputWidgets": {}, - "nuid": "", - "showTitle": false, - "tableResultSettingsMap": {}, - "title": "" - } - }, - "outputs": [ - { - "data": { - "text/plain": [ - "com.databricks.backend.common.rpc.CommandSkippedException\n", - "\tat com.databricks.spark.chauffeur.SequenceExecutionState.$anonfun$cancel$3(SequenceExecutionState.scala:134)\n", - "\tat com.databricks.spark.chauffeur.SequenceExecutionState.$anonfun$cancel$3$adapted(SequenceExecutionState.scala:129)\n", - "\tat scala.collection.immutable.Range.foreach(Range.scala:158)\n", - "\tat com.databricks.spark.chauffeur.SequenceExecutionState.cancel(SequenceExecutionState.scala:129)\n", - "\tat com.databricks.spark.chauffeur.ExecContextState.cancelRunningSequence(ExecContextState.scala:715)\n", - "\tat com.databricks.spark.chauffeur.ExecContextState.$anonfun$cancel$1(ExecContextState.scala:435)\n", - "\tat scala.Option.getOrElse(Option.scala:189)\n", - "\tat com.databricks.spark.chauffeur.ExecContextState.cancel(ExecContextState.scala:435)\n", - "\tat com.databricks.spark.chauffeur.ExecutionContextManagerV1.cancelExecution(ExecutionContextManagerV1.scala:466)\n", - "\tat com.databricks.spark.chauffeur.ChauffeurState.$anonfun$process$1(ChauffeurState.scala:757)\n", - "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperation$1(UsageLogging.scala:510)\n", - "\tat com.databricks.logging.UsageLogging.executeThunkAndCaptureResultTags$1(UsageLogging.scala:616)\n", - "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperationWithResultTags$4(UsageLogging.scala:643)\n", - "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)\n", - "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)\n", - "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)\n", - "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)\n", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)\n", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)\n", - "\tat com.databricks.spark.chauffeur.ChauffeurState.withAttributionContext(ChauffeurState.scala:83)\n", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags(AttributionContextTracing.scala:96)\n", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags$(AttributionContextTracing.scala:77)\n", - "\tat com.databricks.spark.chauffeur.ChauffeurState.withAttributionTags(ChauffeurState.scala:83)\n", - "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags(UsageLogging.scala:611)\n", - "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags$(UsageLogging.scala:519)\n", - "\tat com.databricks.spark.chauffeur.ChauffeurState.recordOperationWithResultTags(ChauffeurState.scala:83)\n", - "\tat com.databricks.logging.UsageLogging.recordOperation(UsageLogging.scala:511)\n", - "\tat com.databricks.logging.UsageLogging.recordOperation$(UsageLogging.scala:475)\n", - "\tat com.databricks.spark.chauffeur.ChauffeurState.recordOperation(ChauffeurState.scala:83)\n", - "\tat com.databricks.spark.chauffeur.ChauffeurState.process(ChauffeurState.scala:735)\n", - "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.handleDriverRequest$1(Chauffeur.scala:926)\n", - "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.$anonfun$applyOrElse$4(Chauffeur.scala:952)\n", - "\tat com.databricks.logging.UsageLogging.executeThunkAndCaptureResultTags$1(UsageLogging.scala:616)\n", - "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperationWithResultTags$4(UsageLogging.scala:643)\n", - "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)\n", - "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)\n", - "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)\n", - "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)\n", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)\n", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)\n", - "\tat com.databricks.rpc.ServerBackend.withAttributionContext(ServerBackend.scala:22)\n", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags(AttributionContextTracing.scala:96)\n", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags$(AttributionContextTracing.scala:77)\n", - "\tat com.databricks.rpc.ServerBackend.withAttributionTags(ServerBackend.scala:22)\n", - "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags(UsageLogging.scala:611)\n", - "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags$(UsageLogging.scala:519)\n", - "\tat com.databricks.rpc.ServerBackend.recordOperationWithResultTags(ServerBackend.scala:22)\n", - "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.handleDriverRequestWithUsageLogging$1(Chauffeur.scala:951)\n", - "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.applyOrElse(Chauffeur.scala:1006)\n", - "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.applyOrElse(Chauffeur.scala:777)\n", - "\tat com.databricks.rpc.ServerBackend.$anonfun$internalReceive0$2(ServerBackend.scala:174)\n", - "\tat com.databricks.rpc.ServerBackend$$anonfun$commonReceive$1.applyOrElse(ServerBackend.scala:200)\n", - "\tat com.databricks.rpc.ServerBackend$$anonfun$commonReceive$1.applyOrElse(ServerBackend.scala:200)\n", - "\tat com.databricks.rpc.ServerBackend.internalReceive0(ServerBackend.scala:171)\n", - "\tat com.databricks.rpc.ServerBackend.$anonfun$internalReceive$1(ServerBackend.scala:147)\n", - "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperation$1(UsageLogging.scala:510)\n", - "\tat com.databricks.logging.UsageLogging.executeThunkAndCaptureResultTags$1(UsageLogging.scala:616)\n", - "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperationWithResultTags$4(UsageLogging.scala:643)\n", - "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)\n", - "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)\n", - "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)\n", - "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)\n", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)\n", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)\n", - "\tat com.databricks.rpc.ServerBackend.withAttributionContext(ServerBackend.scala:22)\n", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags(AttributionContextTracing.scala:96)\n", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags$(AttributionContextTracing.scala:77)\n", - "\tat com.databricks.rpc.ServerBackend.withAttributionTags(ServerBackend.scala:22)\n", - "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags(UsageLogging.scala:611)\n", - "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags$(UsageLogging.scala:519)\n", - "\tat com.databricks.rpc.ServerBackend.recordOperationWithResultTags(ServerBackend.scala:22)\n", - "\tat com.databricks.logging.UsageLogging.recordOperation(UsageLogging.scala:511)\n", - "\tat com.databricks.logging.UsageLogging.recordOperation$(UsageLogging.scala:475)\n", - "\tat com.databricks.rpc.ServerBackend.recordOperation(ServerBackend.scala:22)\n", - "\tat com.databricks.rpc.ServerBackend.internalReceive(ServerBackend.scala:146)\n", - "\tat com.databricks.rpc.JettyServer$RequestManager.handleRPC(JettyServer.scala:1037)\n", - "\tat com.databricks.rpc.JettyServer$RequestManager.handleRequestAndRespond(JettyServer.scala:957)\n", - "\tat com.databricks.rpc.JettyServer$RequestManager.$anonfun$handleHttp$6(JettyServer.scala:552)\n", - "\tat com.databricks.rpc.JettyServer$RequestManager.$anonfun$handleHttp$6$adapted(JettyServer.scala:522)\n", - "\tat com.databricks.logging.activity.ActivityContextFactory$.$anonfun$withActivityInternal$12(ActivityContextFactory.scala:806)\n", - "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)\n", - "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)\n", - "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)\n", - "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)\n", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)\n", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)\n", - "\tat com.databricks.logging.activity.ActivityContextFactory$.withAttributionContext(ActivityContextFactory.scala:52)\n", - "\tat com.databricks.logging.activity.ActivityContextFactory$.$anonfun$withActivityInternal$2(ActivityContextFactory.scala:806)\n", - "\tat com.databricks.context.integrity.IntegrityCheckContext$ThreadLocalStorage$.withValue(IntegrityCheckContext.scala:73)\n", - "\tat com.databricks.logging.activity.ActivityContextFactory$.withActivityInternal(ActivityContextFactory.scala:769)\n", - "\tat com.databricks.logging.activity.ActivityContextFactory$.withActivityInternal(ActivityContextFactory.scala:751)\n", - "\tat com.databricks.logging.activity.ActivityContextFactory$.$anonfun$withServiceRequestActivity$15(ActivityContextFactory.scala:283)\n", - "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)\n", - "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)\n", - "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)\n", - "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)\n", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)\n", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)\n", - "\tat com.databricks.logging.activity.ActivityContextFactory$.withAttributionContext(ActivityContextFactory.scala:52)\n", - "\tat com.databricks.logging.activity.ActivityContextFactory$.withServiceRequestActivity(ActivityContextFactory.scala:283)\n", - "\tat com.databricks.rpc.JettyServer$RequestManager.handleHttp(JettyServer.scala:522)\n", - "\tat com.databricks.rpc.JettyServer$RequestManager.doPost(JettyServer.scala:415)\n", - "\tat javax.servlet.http.HttpServlet.service(HttpServlet.java:665)\n", - "\tat com.databricks.rpc.HttpServletWithPatch.service(HttpServletWithPatch.scala:33)\n", - "\tat javax.servlet.http.HttpServlet.service(HttpServlet.java:750)\n", - "\tat org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:799)\n", - "\tat org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:554)\n", - "\tat org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:190)\n", - "\tat org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:505)\n", - "\tat org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141)\n", - "\tat org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127)\n", - "\tat org.eclipse.jetty.server.Server.handle(Server.java:516)\n", - "\tat org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:487)\n", - "\tat org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:732)\n", - "\tat org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:479)\n", - "\tat org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:277)\n", - "\tat org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311)\n", - "\tat org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:105)\n", - "\tat org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:555)\n", - "\tat org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:410)\n", - "\tat org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:164)\n", - "\tat org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:105)\n", - "\tat org.eclipse.jetty.io.ChannelEndPoint$1.run(ChannelEndPoint.java:104)\n", - "\tat org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:338)\n", - "\tat org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:315)\n", - "\tat org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:173)\n", - "\tat org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:131)\n", - "\tat org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:409)\n", - "\tat com.databricks.rpc.InstrumentedQueuedThreadPool$$anon$1.$anonfun$run$2(InstrumentedQueuedThreadPool.scala:110)\n", - "\tat scala.runtime.java8.JFunction0$mcV$sp.apply(JFunction0$mcV$sp.java:23)\n", - "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)\n", - "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)\n", - "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)\n", - "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)\n", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)\n", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)\n", - "\tat com.databricks.rpc.InstrumentedQueuedThreadPool.withAttributionContext(InstrumentedQueuedThreadPool.scala:45)\n", - "\tat com.databricks.rpc.InstrumentedQueuedThreadPool$$anon$1.$anonfun$run$1(InstrumentedQueuedThreadPool.scala:110)\n", - "\tat scala.runtime.java8.JFunction0$mcV$sp.apply(JFunction0$mcV$sp.java:23)\n", - "\tat com.databricks.instrumentation.QueuedThreadPoolInstrumenter.trackActiveThreads(QueuedThreadPoolInstrumenter.scala:132)\n", - "\tat com.databricks.instrumentation.QueuedThreadPoolInstrumenter.trackActiveThreads$(QueuedThreadPoolInstrumenter.scala:129)\n", - "\tat com.databricks.rpc.InstrumentedQueuedThreadPool.trackActiveThreads(InstrumentedQueuedThreadPool.scala:45)\n", - "\tat com.databricks.rpc.InstrumentedQueuedThreadPool$$anon$1.run(InstrumentedQueuedThreadPool.scala:92)\n", - "\tat org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:883)\n", - "\tat org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:1034)\n", - "\tat java.base/java.lang.Thread.run(Thread.java:840)" - ] - }, - "metadata": { - "application/vnd.databricks.v1+output": { - "addedWidgets": {}, - "arguments": {}, - "datasetInfos": [], - "jupyterProps": null, - "metadata": { - "errorSummary": "Command skipped" - }, - "removedWidgets": [], - "sqlProps": null, - "stackFrames": [ - "com.databricks.backend.common.rpc.CommandSkippedException", - "\tat com.databricks.spark.chauffeur.SequenceExecutionState.$anonfun$cancel$3(SequenceExecutionState.scala:134)", - "\tat com.databricks.spark.chauffeur.SequenceExecutionState.$anonfun$cancel$3$adapted(SequenceExecutionState.scala:129)", - "\tat scala.collection.immutable.Range.foreach(Range.scala:158)", - "\tat com.databricks.spark.chauffeur.SequenceExecutionState.cancel(SequenceExecutionState.scala:129)", - "\tat com.databricks.spark.chauffeur.ExecContextState.cancelRunningSequence(ExecContextState.scala:715)", - "\tat com.databricks.spark.chauffeur.ExecContextState.$anonfun$cancel$1(ExecContextState.scala:435)", - "\tat scala.Option.getOrElse(Option.scala:189)", - "\tat com.databricks.spark.chauffeur.ExecContextState.cancel(ExecContextState.scala:435)", - "\tat com.databricks.spark.chauffeur.ExecutionContextManagerV1.cancelExecution(ExecutionContextManagerV1.scala:466)", - "\tat com.databricks.spark.chauffeur.ChauffeurState.$anonfun$process$1(ChauffeurState.scala:757)", - "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperation$1(UsageLogging.scala:510)", - "\tat com.databricks.logging.UsageLogging.executeThunkAndCaptureResultTags$1(UsageLogging.scala:616)", - "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperationWithResultTags$4(UsageLogging.scala:643)", - "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)", - "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)", - "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)", - "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)", - "\tat com.databricks.spark.chauffeur.ChauffeurState.withAttributionContext(ChauffeurState.scala:83)", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags(AttributionContextTracing.scala:96)", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags$(AttributionContextTracing.scala:77)", - "\tat com.databricks.spark.chauffeur.ChauffeurState.withAttributionTags(ChauffeurState.scala:83)", - "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags(UsageLogging.scala:611)", - "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags$(UsageLogging.scala:519)", - "\tat com.databricks.spark.chauffeur.ChauffeurState.recordOperationWithResultTags(ChauffeurState.scala:83)", - "\tat com.databricks.logging.UsageLogging.recordOperation(UsageLogging.scala:511)", - "\tat com.databricks.logging.UsageLogging.recordOperation$(UsageLogging.scala:475)", - "\tat com.databricks.spark.chauffeur.ChauffeurState.recordOperation(ChauffeurState.scala:83)", - "\tat com.databricks.spark.chauffeur.ChauffeurState.process(ChauffeurState.scala:735)", - "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.handleDriverRequest$1(Chauffeur.scala:926)", - "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.$anonfun$applyOrElse$4(Chauffeur.scala:952)", - "\tat com.databricks.logging.UsageLogging.executeThunkAndCaptureResultTags$1(UsageLogging.scala:616)", - "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperationWithResultTags$4(UsageLogging.scala:643)", - "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)", - "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)", - "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)", - "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)", - "\tat com.databricks.rpc.ServerBackend.withAttributionContext(ServerBackend.scala:22)", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags(AttributionContextTracing.scala:96)", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags$(AttributionContextTracing.scala:77)", - "\tat com.databricks.rpc.ServerBackend.withAttributionTags(ServerBackend.scala:22)", - "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags(UsageLogging.scala:611)", - "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags$(UsageLogging.scala:519)", - "\tat com.databricks.rpc.ServerBackend.recordOperationWithResultTags(ServerBackend.scala:22)", - "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.handleDriverRequestWithUsageLogging$1(Chauffeur.scala:951)", - "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.applyOrElse(Chauffeur.scala:1006)", - "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.applyOrElse(Chauffeur.scala:777)", - "\tat com.databricks.rpc.ServerBackend.$anonfun$internalReceive0$2(ServerBackend.scala:174)", - "\tat com.databricks.rpc.ServerBackend$$anonfun$commonReceive$1.applyOrElse(ServerBackend.scala:200)", - "\tat com.databricks.rpc.ServerBackend$$anonfun$commonReceive$1.applyOrElse(ServerBackend.scala:200)", - "\tat com.databricks.rpc.ServerBackend.internalReceive0(ServerBackend.scala:171)", - "\tat com.databricks.rpc.ServerBackend.$anonfun$internalReceive$1(ServerBackend.scala:147)", - "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperation$1(UsageLogging.scala:510)", - "\tat com.databricks.logging.UsageLogging.executeThunkAndCaptureResultTags$1(UsageLogging.scala:616)", - "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperationWithResultTags$4(UsageLogging.scala:643)", - "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)", - "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)", - "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)", - "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)", - "\tat com.databricks.rpc.ServerBackend.withAttributionContext(ServerBackend.scala:22)", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags(AttributionContextTracing.scala:96)", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags$(AttributionContextTracing.scala:77)", - "\tat com.databricks.rpc.ServerBackend.withAttributionTags(ServerBackend.scala:22)", - "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags(UsageLogging.scala:611)", - "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags$(UsageLogging.scala:519)", - "\tat com.databricks.rpc.ServerBackend.recordOperationWithResultTags(ServerBackend.scala:22)", - "\tat com.databricks.logging.UsageLogging.recordOperation(UsageLogging.scala:511)", - "\tat com.databricks.logging.UsageLogging.recordOperation$(UsageLogging.scala:475)", - "\tat com.databricks.rpc.ServerBackend.recordOperation(ServerBackend.scala:22)", - "\tat com.databricks.rpc.ServerBackend.internalReceive(ServerBackend.scala:146)", - "\tat com.databricks.rpc.JettyServer$RequestManager.handleRPC(JettyServer.scala:1037)", - "\tat com.databricks.rpc.JettyServer$RequestManager.handleRequestAndRespond(JettyServer.scala:957)", - "\tat com.databricks.rpc.JettyServer$RequestManager.$anonfun$handleHttp$6(JettyServer.scala:552)", - "\tat com.databricks.rpc.JettyServer$RequestManager.$anonfun$handleHttp$6$adapted(JettyServer.scala:522)", - "\tat com.databricks.logging.activity.ActivityContextFactory$.$anonfun$withActivityInternal$12(ActivityContextFactory.scala:806)", - "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)", - "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)", - "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)", - "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)", - "\tat com.databricks.logging.activity.ActivityContextFactory$.withAttributionContext(ActivityContextFactory.scala:52)", - "\tat com.databricks.logging.activity.ActivityContextFactory$.$anonfun$withActivityInternal$2(ActivityContextFactory.scala:806)", - "\tat com.databricks.context.integrity.IntegrityCheckContext$ThreadLocalStorage$.withValue(IntegrityCheckContext.scala:73)", - "\tat com.databricks.logging.activity.ActivityContextFactory$.withActivityInternal(ActivityContextFactory.scala:769)", - "\tat com.databricks.logging.activity.ActivityContextFactory$.withActivityInternal(ActivityContextFactory.scala:751)", - "\tat com.databricks.logging.activity.ActivityContextFactory$.$anonfun$withServiceRequestActivity$15(ActivityContextFactory.scala:283)", - "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)", - "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)", - "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)", - "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)", - "\tat com.databricks.logging.activity.ActivityContextFactory$.withAttributionContext(ActivityContextFactory.scala:52)", - "\tat com.databricks.logging.activity.ActivityContextFactory$.withServiceRequestActivity(ActivityContextFactory.scala:283)", - "\tat com.databricks.rpc.JettyServer$RequestManager.handleHttp(JettyServer.scala:522)", - "\tat com.databricks.rpc.JettyServer$RequestManager.doPost(JettyServer.scala:415)", - "\tat javax.servlet.http.HttpServlet.service(HttpServlet.java:665)", - "\tat com.databricks.rpc.HttpServletWithPatch.service(HttpServletWithPatch.scala:33)", - "\tat javax.servlet.http.HttpServlet.service(HttpServlet.java:750)", - "\tat org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:799)", - "\tat org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:554)", - "\tat org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:190)", - "\tat org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:505)", - "\tat org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141)", - "\tat org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127)", - "\tat org.eclipse.jetty.server.Server.handle(Server.java:516)", - "\tat org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:487)", - "\tat org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:732)", - "\tat org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:479)", - "\tat org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:277)", - "\tat org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311)", - "\tat org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:105)", - "\tat org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:555)", - "\tat org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:410)", - "\tat org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:164)", - "\tat org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:105)", - "\tat org.eclipse.jetty.io.ChannelEndPoint$1.run(ChannelEndPoint.java:104)", - "\tat org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:338)", - "\tat org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:315)", - "\tat org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:173)", - "\tat org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:131)", - "\tat org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:409)", - "\tat com.databricks.rpc.InstrumentedQueuedThreadPool$$anon$1.$anonfun$run$2(InstrumentedQueuedThreadPool.scala:110)", - "\tat scala.runtime.java8.JFunction0$mcV$sp.apply(JFunction0$mcV$sp.java:23)", - "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)", - "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)", - "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)", - "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)", - "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)", - "\tat com.databricks.rpc.InstrumentedQueuedThreadPool.withAttributionContext(InstrumentedQueuedThreadPool.scala:45)", - "\tat com.databricks.rpc.InstrumentedQueuedThreadPool$$anon$1.$anonfun$run$1(InstrumentedQueuedThreadPool.scala:110)", - "\tat scala.runtime.java8.JFunction0$mcV$sp.apply(JFunction0$mcV$sp.java:23)", - "\tat com.databricks.instrumentation.QueuedThreadPoolInstrumenter.trackActiveThreads(QueuedThreadPoolInstrumenter.scala:132)", - "\tat com.databricks.instrumentation.QueuedThreadPoolInstrumenter.trackActiveThreads$(QueuedThreadPoolInstrumenter.scala:129)", - "\tat com.databricks.rpc.InstrumentedQueuedThreadPool.trackActiveThreads(InstrumentedQueuedThreadPool.scala:45)", - "\tat com.databricks.rpc.InstrumentedQueuedThreadPool$$anon$1.run(InstrumentedQueuedThreadPool.scala:92)", - "\tat org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:883)", - "\tat org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:1034)", - "\tat java.base/java.lang.Thread.run(Thread.java:840)" - ], - "type": "baseError" - } - }, - "output_type": "display_data" - } - ], - "source": [ - "model_uri = \"models:/m-24afa884e98d444fbd545903c849420b\"\n", - "\n", - "# Load and test with a sample batch\n", - "loaded_model = mlflow.pytorch.load_model(model_uri)\n", - "loaded_model.eval()\n", - "\n", - "sample_batch = next(iter(test_loader))\n", - "with torch.no_grad():\n", - " sample_scores = loaded_model(\n", - " sample_batch[\"features\"], sample_batch[\"mask\"], sample_batch[\"market_type\"]\n", - " )\n", - "\n", - "print(f\"Sample predictions shape: {sample_scores.shape}\")\n", - "print(f\"Sample scores: {sample_scores[:5].numpy()}\")\n", - "print(f\"Sample labels: {sample_batch['label'][:5].numpy()}\")\n" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "application/vnd.databricks.v1+cell": { - "cellMetadata": { - "byteLimit": 2048000, - "rowLimit": 10000 - }, - "inputWidgets": {}, - "nuid": "33853421-d724-40f2-b9e5-49fad26ac2a7", - "showTitle": false, - "tableResultSettingsMap": {}, - "title": "" - } - }, - "source": [ - "## 9. Hyperparameter Tuning with Optuna\n", - "\n", - "Search over model size, learning rate, dropout, and architecture choices." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "application/vnd.databricks.v1+cell": { - "cellMetadata": { - "byteLimit": 2048000, - "rowLimit": 10000 - }, - "collapsed": true, - "inputWidgets": {}, - "nuid": "eaf3716c-c1b7-4517-9c98-a51a52ee9bf8", - "showTitle": false, - "tableResultSettingsMap": {}, - "title": "" - } - }, - "outputs": [], - "source": [ - "class PruningCallback(pl.Callback):\n", - " \"\"\"Prune unpromising Optuna trials during training.\"\"\"\n", - "\n", - " def __init__(self, trial, monitor):\n", - " super().__init__()\n", - " self._trial = trial\n", - " self.monitor = monitor\n", - "\n", - " def on_validation_end(self, trainer, pl_module):\n", - " current = trainer.callback_metrics.get(self.monitor)\n", - " if current is not None:\n", - " self._trial.report(current.item(), trainer.current_epoch)\n", - " if self._trial.should_prune():\n", - " raise optuna.TrialPruned(f\"Pruned at epoch {trainer.current_epoch}\")\n", - "\n", - "\n", - "def objective(trial):\n", - " \"\"\"Optuna objective: minimize validation loss.\"\"\"\n", - " # Search space\n", - " d_model = trial.suggest_categorical(\"d_model\", [32, 64, 128])\n", - " n_heads = trial.suggest_categorical(\"n_heads\", [2, 4, 8])\n", - " n_layers = trial.suggest_int(\"n_layers\", 2, 5)\n", - " d_ff = trial.suggest_categorical(\"d_ff\", [128, 256, 512])\n", - " dropout = trial.suggest_float(\"dropout\", 0.0, 0.4)\n", - " lr = trial.suggest_float(\"learning_rate\", 1e-4, 5e-3, log=True)\n", - " wd = trial.suggest_float(\"weight_decay\", 1e-6, 1e-3, log=True)\n", - " cross_start = trial.suggest_int(\"cross_attn_start_layer\", 0, max(0, n_layers - 1))\n", - "\n", - " # Ensure d_model divisible by n_heads\n", - " if d_model % n_heads != 0:\n", - " raise optuna.TrialPruned(\"d_model not divisible by n_heads\")\n", - "\n", - " with mlflow.start_run(nested=True) as child_run:\n", - " mlflow_client = MlflowClient()\n", - " run_id = child_run.info.run_id\n", - "\n", - " param_dict = {\n", - " \"d_model\": d_model, \"n_heads\": n_heads, \"n_layers\": n_layers,\n", - " \"d_ff\": d_ff, \"dropout\": dropout, \"learning_rate\": lr,\n", - " \"weight_decay\": wd, \"cross_attn_start_layer\": cross_start,\n", - " }\n", - " params_list = [Param(k, str(v)) for k, v in param_dict.items()]\n", - "\n", - " trial_model = ArbitrageLightningModule(\n", - " n_input_features=N_INPUT_FEATURES,\n", - " d_model=d_model,\n", - " n_heads=n_heads,\n", - " n_layers=n_layers,\n", - " d_ff=d_ff,\n", - " dropout=dropout,\n", - " learning_rate=lr,\n", - " weight_decay=wd,\n", - " cross_attn_start_layer=cross_start,\n", - " )\n", - "\n", - " trial_trainer = pl.Trainer(\n", - " max_epochs=40,\n", - " callbacks=[\n", - " EarlyStopping(monitor=\"val_loss\", patience=5, mode=\"min\"),\n", - " PruningCallback(trial, monitor=\"val_loss\"),\n", - " ],\n", - " enable_progress_bar=False,\n", - " log_every_n_steps=10,\n", - " )\n", - "\n", - " trial_trainer.fit(trial_model, train_loader, val_loader)\n", - "\n", - " best_val_loss = trial_trainer.callback_metrics.get(\"val_loss\").item()\n", - "\n", - " current_time = int(time.time() * 1000)\n", - " mlflow_client.log_batch(\n", - " run_id,\n", - " metrics=[Metric(\"val_loss\", best_val_loss, current_time, 0)],\n", - " params=params_list,\n", - " )\n", - "\n", - " trial.set_user_attr(\"model\", trial_model)\n", - " return best_val_loss" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## 11. Export Checkpoint for Local Inference\n", - "\n", - "Save the trained model as a `.ckpt` file that can be loaded by the FastAPI backend\n", - "without any Databricks or MLflow dependencies." - ] - }, - { - "cell_type": "code", - "execution_count": 31, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "`weights_only` was not set, defaulting to `False`.\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Checkpoint saved to model.ckpt\n", - "Copy it to Backend/models/model.ckpt for local FastAPI inference.\n" - ] - } - ], - "source": [ - "# Save the best checkpoint from the baseline trainer for local serving.\n", - "# After running this cell, copy the file to Backend/models/model.ckpt\n", - "#\n", - "# cp model.ckpt ../Backend/models/model.ckpt\n", - "\n", - "trainer.save_checkpoint(\"model.ckpt\")\n", - "print(f\"Checkpoint saved to model.ckpt\")\n", - "print(\"Copy it to Backend/models/model.ckpt for local FastAPI inference.\")" - ] - } - ], - "metadata": { - "application/vnd.databricks.v1+notebook": { - "computePreferences": null, - "dashboards": [], - "environmentMetadata": null, - "inputWidgetPreferences": null, - "language": "python", - "notebookMetadata": { - "pythonIndentUnit": 4 - }, - "notebookName": "arbitrage_detection_notebook", - "widgets": {} - }, - "kernelspec": { - "display_name": "hacklytics", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.13.7" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/Backend/models/checkpoints/arb-scorer-epoch=00-val_loss=0.6002.ckpt b/Backend/models/checkpoints/arb-scorer-epoch=00-val_loss=0.6002.ckpt deleted file mode 100644 index c03210d..0000000 Binary files a/Backend/models/checkpoints/arb-scorer-epoch=00-val_loss=0.6002.ckpt and /dev/null differ diff --git a/Backend/models/checkpoints/arb-scorer-epoch=00-val_loss=0.6923.ckpt b/Backend/models/checkpoints/arb-scorer-epoch=00-val_loss=0.6923.ckpt deleted file mode 100644 index 7d63d71..0000000 Binary files a/Backend/models/checkpoints/arb-scorer-epoch=00-val_loss=0.6923.ckpt and /dev/null differ diff --git a/Backend/models/checkpoints/arb-scorer-epoch=00-val_loss=0.7056.ckpt b/Backend/models/checkpoints/arb-scorer-epoch=00-val_loss=0.7056.ckpt deleted file mode 100644 index 87dcad5..0000000 Binary files a/Backend/models/checkpoints/arb-scorer-epoch=00-val_loss=0.7056.ckpt and /dev/null differ diff --git a/Backend/models/checkpoints/model.ckpt b/Backend/models/checkpoints/model.ckpt deleted file mode 100644 index b1f42ab..0000000 Binary files a/Backend/models/checkpoints/model.ckpt and /dev/null differ diff --git a/Backend/models/lightning_logs/version_5/hparams.yaml b/Backend/models/lightning_logs/version_5/hparams.yaml deleted file mode 100644 index d0968a7..0000000 --- a/Backend/models/lightning_logs/version_5/hparams.yaml +++ /dev/null @@ -1,9 +0,0 @@ -cross_attn_start_layer: 1 -d_ff: 8 -d_model: 8 -dropout: 0.1 -learning_rate: 0.001 -n_heads: 4 -n_input_features: 10 -n_layers: 3 -weight_decay: 1.0e-05 diff --git a/Backend/models/lightning_logs/version_5/metrics.csv b/Backend/models/lightning_logs/version_5/metrics.csv deleted file mode 100644 index c154a5a..0000000 --- a/Backend/models/lightning_logs/version_5/metrics.csv +++ /dev/null @@ -1,38 +0,0 @@ -epoch,step,test_acc,test_loss,train_acc,train_loss,val_acc,val_loss -0,4,,,0.375,0.7543424367904663,, -0,9,,,0.1875,0.8249324560165405,, -0,14,,,0.25,0.7862347364425659,, -0,19,,,0.3125,0.7602759599685669,, -0,24,,,0.375,0.7435064911842346,, -0,29,,,0.25,0.769173264503479,, -0,34,,,0.25,0.7694572806358337,, -0,39,,,0.3125,0.7490764856338501,, -0,44,,,0.375,0.7376501560211182,, -0,49,,,0.3125,0.7528903484344482,, -0,54,,,0.3125,0.7445051670074463,, -0,59,,,0.3125,0.7383866310119629,, -0,64,,,0.25,0.7525804042816162,, -0,69,,,0.4375,0.7249927520751953,, -0,74,,,0.125,0.7843574285507202,, -0,79,,,0.25,0.749443531036377,, -0,84,,,0.125,0.7743544578552246,, -0,89,,,0.25,0.7490494251251221,, -0,94,,,0.375,0.7237653732299805,, -0,99,,,0.125,0.7612468004226685,, -0,104,,,0.125,0.7539792656898499,, -0,109,,,0.1875,0.7421900629997253,, -0,114,,,0.3125,0.7224041819572449,, -0,119,,,0.375,0.7126389741897583,, -0,124,,,0.375,0.7093748450279236,, -0,129,,,0.125,0.7424902319908142,, -0,134,,,0.1875,0.7345143556594849,, -0,139,,,0.3125,0.7083942890167236,, -0,144,,,0.125,0.7418901920318604,, -0,149,,,0.3125,0.7105308771133423,, -0,154,,,0.125,0.7351876497268677,, -0,159,,,0.125,0.7288151979446411,, -0,164,,,0.25,0.7223999500274658,, -0,169,,,0.3125,0.713848888874054,, -0,174,,,0.375,0.6967601180076599,, -0,174,,,,,0.2866666615009308,0.7055799961090088 -1,175,0.2849999964237213,0.7056397199630737,,,, diff --git a/Backend/models/lightning_logs/version_6/hparams.yaml b/Backend/models/lightning_logs/version_6/hparams.yaml deleted file mode 100644 index d0968a7..0000000 --- a/Backend/models/lightning_logs/version_6/hparams.yaml +++ /dev/null @@ -1,9 +0,0 @@ -cross_attn_start_layer: 1 -d_ff: 8 -d_model: 8 -dropout: 0.1 -learning_rate: 0.001 -n_heads: 4 -n_input_features: 10 -n_layers: 3 -weight_decay: 1.0e-05 diff --git a/Backend/models/lightning_logs/version_6/metrics.csv b/Backend/models/lightning_logs/version_6/metrics.csv deleted file mode 100644 index bed438f..0000000 --- a/Backend/models/lightning_logs/version_6/metrics.csv +++ /dev/null @@ -1,38 +0,0 @@ -epoch,step,test_acc,test_loss,train_acc,train_loss,val_acc,val_loss -0,4,,,0.5625,0.6889814138412476,, -0,9,,,0.625,0.6670639514923096,, -0,14,,,0.875,0.6253107786178589,, -0,19,,,0.9375,0.5981148481369019,, -0,24,,,0.75,0.6302738189697266,, -0,29,,,0.5625,0.687087893486023,, -0,34,,,0.5,0.7151452302932739,, -0,39,,,0.875,0.5708862543106079,, -0,44,,,0.75,0.5912352800369263,, -0,49,,,0.625,0.6528588533401489,, -0,54,,,0.6875,0.5962772369384766,, -0,59,,,0.5,0.7453770637512207,, -0,64,,,0.8125,0.5136316418647766,, -0,69,,,0.8125,0.5628675222396851,, -0,74,,,0.875,0.4996149241924286,, -0,79,,,0.6875,0.6692314147949219,, -0,84,,,0.875,0.49484696984291077,, -0,89,,,0.625,0.676321268081665,, -0,94,,,0.8125,0.5382205843925476,, -0,99,,,0.6875,0.6459129452705383,, -0,104,,,0.8125,0.533170223236084,, -0,109,,,0.5,0.8073351383209229,, -0,114,,,0.8125,0.5400583744049072,, -0,119,,,0.75,0.6031345129013062,, -0,124,,,0.875,0.4556215703487396,, -0,129,,,0.5625,0.7024263143539429,, -0,134,,,0.5,0.7701737880706787,, -0,139,,,0.5625,0.7453130483627319,, -0,144,,,0.5625,0.708963930606842,, -0,149,,,0.625,0.7224482297897339,, -0,154,,,0.6875,0.6264265775680542,, -0,159,,,0.6875,0.6228569149971008,, -0,164,,,0.5,0.7765039205551147,, -0,169,,,0.625,0.6560166478157043,, -0,174,,,0.625,0.6596269011497498,, -0,174,,,,,0.7133333086967468,0.600176215171814 -1,175,0.7149999737739563,0.5982467532157898,,,, diff --git a/Backend/models/lightning_logs/version_7/hparams.yaml b/Backend/models/lightning_logs/version_7/hparams.yaml deleted file mode 100644 index d0968a7..0000000 --- a/Backend/models/lightning_logs/version_7/hparams.yaml +++ /dev/null @@ -1,9 +0,0 @@ -cross_attn_start_layer: 1 -d_ff: 8 -d_model: 8 -dropout: 0.1 -learning_rate: 0.001 -n_heads: 4 -n_input_features: 10 -n_layers: 3 -weight_decay: 1.0e-05 diff --git a/Backend/models/lightning_logs/version_7/metrics.csv b/Backend/models/lightning_logs/version_7/metrics.csv deleted file mode 100644 index 0aa359f..0000000 --- a/Backend/models/lightning_logs/version_7/metrics.csv +++ /dev/null @@ -1,38 +0,0 @@ -epoch,step,test_acc,test_loss,train_acc,train_loss,val_acc,val_loss -0,4,,,0.25,0.8221886157989502,, -0,9,,,0.125,0.8572278022766113,, -0,14,,,0.375,0.7476239204406738,, -0,19,,,0.3125,0.7550777792930603,, -0,24,,,0.1875,0.7673282623291016,, -0,29,,,0.1875,0.7736443281173706,, -0,34,,,0.3125,0.7392764687538147,, -0,39,,,0.25,0.7550637125968933,, -0,44,,,0.5625,0.6910261511802673,, -0,49,,,0.3125,0.7255900502204895,, -0,54,,,0.3125,0.7272095680236816,, -0,59,,,0.25,0.7462412118911743,, -0,64,,,0.3125,0.7242794036865234,, -0,69,,,0.1875,0.7414411902427673,, -0,74,,,0.375,0.71577388048172,, -0,79,,,0.0625,0.750903844833374,, -0,84,,,0.625,0.684325098991394,, -0,89,,,0.3125,0.7168080806732178,, -0,94,,,0.3125,0.715162992477417,, -0,99,,,0.25,0.7243514657020569,, -0,104,,,0.25,0.7209525108337402,, -0,109,,,0.375,0.7134764194488525,, -0,114,,,0.4375,0.7075991630554199,, -0,119,,,0.3125,0.710838794708252,, -0,124,,,0.3125,0.7070008516311646,, -0,129,,,0.375,0.7090647220611572,, -0,134,,,0.125,0.7172995805740356,, -0,139,,,0.125,0.7060921788215637,, -0,144,,,0.4375,0.6946399807929993,, -0,149,,,0.25,0.7076141238212585,, -0,154,,,0.25,0.6989530324935913,, -0,159,,,0.4375,0.6995353102684021,, -0,164,,,0.125,0.7082997560501099,, -0,169,,,0.5,0.6988510489463806,, -0,174,,,0.4375,0.7068691253662109,, -0,174,,,,,0.7149999737739563,0.6922584772109985 -1,175,0.7116666436195374,0.6922598481178284,,,, diff --git a/Backend/models/mlflow.db b/Backend/models/mlflow.db deleted file mode 100644 index 20ee1bc..0000000 Binary files a/Backend/models/mlflow.db and /dev/null differ diff --git a/Backend/models/mlruns/0/models/m-0b1a65efb7784ce18260f8d59c6961ae/artifacts/MLmodel b/Backend/models/mlruns/0/models/m-0b1a65efb7784ce18260f8d59c6961ae/artifacts/MLmodel deleted file mode 100644 index bb780d4..0000000 --- a/Backend/models/mlruns/0/models/m-0b1a65efb7784ce18260f8d59c6961ae/artifacts/MLmodel +++ /dev/null @@ -1,32 +0,0 @@ -artifact_path: /Users/keshavworathur/Documents/Uni/Hackalytics_Repo/Backend/models/mlruns/0/models/m-0b1a65efb7784ce18260f8d59c6961ae/artifacts -flavors: - python_function: - config: - device: null - data: data - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.pytorch - pickle_module_name: mlflow.pytorch.pickle_module - python_version: 3.13.7 - pytorch: - code: null - model_data: data - pytorch_version: 2.10.0 -is_signature_from_type_hint: false -mlflow_version: 3.10.0 -model_id: m-0b1a65efb7784ce18260f8d59c6961ae -model_size_bytes: 128851 -model_uuid: m-0b1a65efb7784ce18260f8d59c6961ae -prompts: null -run_id: 4ade90dd8ff34509b5581a206ee8822c -signature: - inputs: '[{"type": "array", "items": {"type": "array", "items": {"type": "float"}}, - "name": "features", "required": true}, {"type": "array", "items": {"type": "boolean"}, - "name": "mask", "required": true}, {"type": "long", "name": "market_type", "required": - true}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float32", "shape": [-1]}}]' - params: null -type_hint_from_example: false -utc_time_created: '2026-02-22 03:17:23.499511' diff --git a/Backend/models/mlruns/0/models/m-0b1a65efb7784ce18260f8d59c6961ae/artifacts/conda.yaml b/Backend/models/mlruns/0/models/m-0b1a65efb7784ce18260f8d59c6961ae/artifacts/conda.yaml deleted file mode 100644 index 1a38d03..0000000 --- a/Backend/models/mlruns/0/models/m-0b1a65efb7784ce18260f8d59c6961ae/artifacts/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.13.7 -- pip<=26.0.1 -- pip: - - mlflow==3.10.0 - - cloudpickle==3.1.2 - - matplotlib==3.10.8 - - numpy==2.4.2 - - pandas==2.3.3 - - pytorch-lightning==2.6.1 - - scipy==1.17.0 - - torch==2.10.0 -name: mlflow-env diff --git a/Backend/models/mlruns/0/models/m-0b1a65efb7784ce18260f8d59c6961ae/artifacts/python_env.yaml b/Backend/models/mlruns/0/models/m-0b1a65efb7784ce18260f8d59c6961ae/artifacts/python_env.yaml deleted file mode 100644 index c9c5ca6..0000000 --- a/Backend/models/mlruns/0/models/m-0b1a65efb7784ce18260f8d59c6961ae/artifacts/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.13.7 -build_dependencies: -- pip==26.0.1 -- setuptools==82.0.0 -- wheel -dependencies: -- -r requirements.txt diff --git a/Backend/models/mlruns/0/models/m-0b1a65efb7784ce18260f8d59c6961ae/artifacts/requirements.txt b/Backend/models/mlruns/0/models/m-0b1a65efb7784ce18260f8d59c6961ae/artifacts/requirements.txt deleted file mode 100644 index 57edbc3..0000000 --- a/Backend/models/mlruns/0/models/m-0b1a65efb7784ce18260f8d59c6961ae/artifacts/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==3.10.0 -cloudpickle==3.1.2 -matplotlib==3.10.8 -numpy==2.4.2 -pandas==2.3.3 -pytorch-lightning==2.6.1 -scipy==1.17.0 -torch==2.10.0 \ No newline at end of file diff --git a/Backend/models/model.ckpt b/Backend/models/model.ckpt deleted file mode 100644 index b1f42ab..0000000 Binary files a/Backend/models/model.ckpt and /dev/null differ diff --git a/ML_model/arbitrage_detection_notebook.ipynb b/ML_model/arbitrage_detection_notebook.ipynb new file mode 100644 index 0000000..3dfbd4f --- /dev/null +++ b/ML_model/arbitrage_detection_notebook.ipynb @@ -0,0 +1,2730 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "application/vnd.databricks.v1+cell": { + "cellMetadata": { + "byteLimit": 2048000, + "rowLimit": 10000 + }, + "inputWidgets": {}, + "nuid": "", + "showTitle": false, + "tableResultSettingsMap": {}, + "title": "" + } + }, + "source": [ + "# Arbitrage Window Detection with Deep Learning\n", + "\n", + "In this notebook, we train a **Dual-Stream Transformer Encoder with Cross-Attention** on historical odds data to identify opportunities for arbitrage betting.\n", + "\n", + "## Architecture Overview\n", + "\n", + "The model processes paired sequences of odds from two bookmakers through:\n", + "1. **Feature Engineering** — raw odds, spread, implied probability difference, rate of change, classical arbitrage indicator\n", + "2. **Dual Transformer Encoders** — one per bookmaker stream, with self-attention + cross-attention\n", + "3. **Attention-Weighted Pooling** — aggregates variable-length sequences (longer = more accurate)\n", + "4. **Market Type Embedding** — conditions the scorer on MONEYLINE / POINTS_SPREAD / POINTS_TOTAL\n", + "5. **MLP Scoring Head** — outputs a scalar arbitrage opportunity score in [0, 1]\n", + "\n", + "This tutorial covers the full lifecycle: data generation, model design, training, hyperparameter tuning, MLflow logging, registration, and deployment." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "application/vnd.databricks.v1+cell": { + "cellMetadata": { + "byteLimit": 2048000, + "rowLimit": 10000 + }, + "inputWidgets": {}, + "nuid": "", + "showTitle": true, + "tableResultSettingsMap": {}, + "title": "(Optional) Install the latest version of MLflow" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Note: you may need to restart the kernel to use updated packages.\n" + ] + } + ], + "source": [ + "%pip install -Uqqq mlflow pytorch-lightning optuna skorch uv " + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "application/vnd.databricks.v1+cell": { + "cellMetadata": { + "byteLimit": 2048000, + "rowLimit": 10000 + }, + "inputWidgets": {}, + "nuid": "", + "showTitle": false, + "tableResultSettingsMap": {}, + "title": "" + } + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/keshavworathur/.pyenv/versions/hacklytics/lib/python3.13/site-packages/tqdm/auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html\n", + " from .autonotebook import tqdm as notebook_tqdm\n" + ] + } + ], + "source": [ + "from typing import Tuple, Optional, Dict, List, Any\n", + "\n", + "import math\n", + "import numpy as np\n", + "import pandas as pd\n", + "import matplotlib.pyplot as plt\n", + "import seaborn as sns\n", + "from sklearn.model_selection import train_test_split\n", + "from sklearn.preprocessing import StandardScaler\n", + "from sklearn.metrics import (\n", + " mean_squared_error, mean_absolute_error, r2_score,\n", + " roc_auc_score, average_precision_score, f1_score, precision_score, recall_score\n", + ")\n", + "\n", + "import torch\n", + "import torch.nn as nn\n", + "import torch.nn.functional as F\n", + "import torch.optim as optim\n", + "from torch.utils.data import DataLoader, Dataset\n", + "from torch.nn.utils.rnn import pad_sequence\n", + "\n", + "import pytorch_lightning as pl\n", + "from pytorch_lightning.callbacks import EarlyStopping, ModelCheckpoint\n", + "\n", + "import mlflow\n", + "from mlflow.models import infer_signature\n", + "from mlflow.tracking import MlflowClient\n", + "from mlflow.entities import Metric, Param\n", + "\n", + "import time\n", + "import warnings\n", + "warnings.filterwarnings(\"ignore\")\n" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "application/vnd.databricks.v1+cell": { + "cellMetadata": { + "byteLimit": 2048000, + "rowLimit": 10000 + }, + "inputWidgets": {}, + "nuid": "", + "showTitle": false, + "tableResultSettingsMap": {}, + "title": "" + } + }, + "source": [ + "## 0. Configure the Model Registry with Unity Catalog\n", + "\n", + "Configure MLflow to use Unity Catalog for model registration." + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "application/vnd.databricks.v1+cell": { + "cellMetadata": { + "byteLimit": 2048000, + "rowLimit": 10000 + }, + "inputWidgets": {}, + "nuid": "", + "showTitle": false, + "tableResultSettingsMap": {}, + "title": "" + } + }, + "outputs": [], + "source": [ + "mlflow.set_registry_uri(\"databricks-uc\")" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "application/vnd.databricks.v1+cell": { + "cellMetadata": { + "byteLimit": 2048000, + "rowLimit": 10000 + }, + "inputWidgets": {}, + "nuid": "", + "showTitle": false, + "tableResultSettingsMap": {}, + "title": "" + } + }, + "outputs": [], + "source": [ + "# Uncomment below to load real data from Databricks Volumes\n", + "# X_events = pd.read_parquet(\"/Volumes/workspace/default/hacklytics_project_storage/events.parquet\")\n", + "# X_open_odds = pd.read_parquet(\"/Volumes/workspace/default/hacklytics_project_storage/opening.parquet\")\n", + "# X_end_odds = pd.read_parquet(\"/Volumes/workspace/default/hacklytics_project_storage/closing.parquet\")\n" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "application/vnd.databricks.v1+cell": { + "cellMetadata": { + "byteLimit": 2048000, + "rowLimit": 10000 + }, + "inputWidgets": {}, + "nuid": "", + "showTitle": false, + "tableResultSettingsMap": {}, + "title": "" + } + }, + "source": [ + "## 1. Generate Synthetic Odds Data\n", + "\n", + "We generate realistic paired odds sequences for two bookmakers across three market types.\n", + "Each sample is a variable-length time series representing odds movement for a single event.\n", + "Labels indicate whether a genuine arbitrage window existed during that sequence." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "application/vnd.databricks.v1+cell": { + "cellMetadata": { + "byteLimit": 2048000, + "rowLimit": 10000 + }, + "inputWidgets": {}, + "nuid": "", + "showTitle": true, + "tableResultSettingsMap": {}, + "title": "Cell 8" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Generated 4000 samples\n", + "Label distribution: 28.5% positive\n", + "Sequence length range: 10 - 120\n" + ] + } + ], + "source": [ + "def generate_synthetic_odds_data(\n", + " n_samples: int = 3000,\n", + " min_seq_len: int = 10,\n", + " max_seq_len: int = 120,\n", + " seed: int = 42,\n", + " arb_fraction: float = 0.3,\n", + ") -> List[Dict[str, Any]]:\n", + " \"\"\"Generate synthetic paired odds sequences for two bookmakers.\n", + "\n", + " Each sample contains:\n", + " - odds_a: sequence of American odds from bookmaker A\n", + " - odds_b: sequence of American odds from bookmaker B (complementary side)\n", + " - market_type: one of {MONEYLINE, POINTS_SPREAD, POINTS_TOTAL}\n", + " - label: 1 if an arbitrage window existed, 0 otherwise\n", + " - seq_len: length of the sequence\n", + "\n", + " The generator simulates realistic odds dynamics where bookmakers move\n", + " asynchronously and occasionally create short-lived arbitrage windows.\n", + " \"\"\"\n", + " rng = np.random.RandomState(seed)\n", + " market_types = [\"MONEYLINE\", \"POINTS_SPREAD\", \"POINTS_TOTAL\"]\n", + " samples = []\n", + "\n", + " for i in range(n_samples):\n", + " seq_len = rng.randint(min_seq_len, max_seq_len + 1)\n", + " market = rng.choice(market_types)\n", + " has_arb = rng.random() < arb_fraction\n", + "\n", + " # Base implied probabilities for the two sides of a bet\n", + " # (e.g., Team A win vs Team B win for moneyline)\n", + " true_prob_a = rng.uniform(0.30, 0.70)\n", + " true_prob_b = 1.0 - true_prob_a\n", + "\n", + " # Bookmaker vigorish (overround) — typically 3-8%\n", + " vig_a = rng.uniform(0.03, 0.08)\n", + " vig_b = rng.uniform(0.03, 0.08)\n", + "\n", + " # Generate odds sequences as implied probabilities with random walk\n", + " implied_a = np.zeros(seq_len) # bookmaker A implied prob for side A\n", + " implied_b = np.zeros(seq_len) # bookmaker B implied prob for side B\n", + "\n", + " implied_a[0] = true_prob_a + vig_a + rng.normal(0, 0.02)\n", + " implied_b[0] = true_prob_b + vig_b + rng.normal(0, 0.02)\n", + "\n", + " # Correlated random walks with bookmaker-specific lag\n", + " drift_a = rng.normal(0, 0.005, seq_len)\n", + " drift_b = rng.normal(0, 0.005, seq_len)\n", + "\n", + " # Bookmaker B may lag behind market moves\n", + " lag = rng.randint(1, 4)\n", + " common_shock = rng.normal(0, 0.008, seq_len)\n", + "\n", + " for t in range(1, seq_len):\n", + " implied_a[t] = implied_a[t-1] + drift_a[t] + common_shock[t]\n", + " lagged_shock = common_shock[max(0, t - lag)]\n", + " implied_b[t] = implied_b[t-1] + drift_b[t] + lagged_shock\n", + "\n", + " # Clamp to valid probability range\n", + " implied_a = np.clip(implied_a, 0.15, 0.95)\n", + " implied_b = np.clip(implied_b, 0.15, 0.95)\n", + "\n", + " # Inject arbitrage window for positive samples\n", + " if has_arb:\n", + " arb_start = rng.randint(seq_len // 3, 2 * seq_len // 3)\n", + " arb_duration = rng.randint(2, min(8, seq_len - arb_start))\n", + " # Make sum of implied probs < 1 (arbitrage condition)\n", + " for t in range(arb_start, min(arb_start + arb_duration, seq_len)):\n", + " gap = rng.uniform(0.01, 0.04)\n", + " implied_a[t] = true_prob_a - gap / 2\n", + " implied_b[t] = true_prob_b - gap / 2\n", + "\n", + " # Convert implied probabilities to decimal odds\n", + " odds_a = 1.0 / implied_a\n", + " odds_b = 1.0 / implied_b\n", + "\n", + " samples.append({\n", + " \"odds_a\": odds_a.astype(np.float32),\n", + " \"odds_b\": odds_b.astype(np.float32),\n", + " \"market_type\": market,\n", + " \"label\": float(has_arb),\n", + " \"seq_len\": seq_len,\n", + " })\n", + "\n", + " return samples\n", + "\n", + "\n", + "raw_data = generate_synthetic_odds_data(n_samples=4000, seed=42)\n", + "print(f\"Generated {len(raw_data)} samples\")\n", + "print(f\"Label distribution: {sum(s['label'] for s in raw_data) / len(raw_data):.1%} positive\")\n", + "print(f\"Sequence length range: {min(s['seq_len'] for s in raw_data)} - {max(s['seq_len'] for s in raw_data)}\")" + ] + }, + { + "cell_type": "markdown", + "source": "## 1b. Load Real Parquet Data\n\nLoad real NFL odds time-series from the local parquet files in `data/raw_2/`.\nThe NFL outcomes dataset contains ~12.5M rows across 90 games and 3 bookmakers\n(DraftKings, FanDuel, ESPN BET) with minute-level granularity.\n\nFor each event × market type × bookmaker pair, we:\n1. Extract complementary outcome sides (home WIN vs away WIN, or OVER vs UNDER)\n2. Align the two bookmaker time series by nearest timestamp\n3. Slice into windows of 10–120 timesteps (matching synthetic sequence lengths)\n4. Label each window based on whether a classical arbitrage opportunity exists", + "metadata": {} + }, + { + "cell_type": "code", + "source": "import itertools\nfrom pathlib import Path\n\n\n# Market type mapping: parquet names → model names\nPARQUET_MARKET_MAP = {\n \"MONEYLINE\": \"MONEYLINE\",\n \"POINT_SPREAD\": \"POINTS_SPREAD\",\n \"POINT_TOTAL\": \"POINTS_TOTAL\",\n}\n\n\ndef load_real_parquet_data(\n base_path: str = \"../data/raw_2\",\n min_seq_len: int = 10,\n max_seq_len: int = 120,\n downsample_factor: int = 5,\n seed: int = 42,\n) -> List[Dict[str, Any]]:\n \"\"\"Load real odds data from parquet files and convert to training samples.\n\n Processes NFL outcomes data (the richest dataset) by:\n 1. Pairing complementary outcomes across bookmakers\n 2. Aligning time series by nearest timestamp\n 3. Downsampling (every Nth point) to reduce redundancy\n 4. Slicing into windows of min_seq_len–max_seq_len\n\n Args:\n base_path: Path to the raw_2 data directory\n min_seq_len: Minimum sequence length per sample\n max_seq_len: Maximum sequence length per sample\n downsample_factor: Take every Nth point to reduce redundancy\n seed: Random seed for reproducibility\n\n Returns:\n List of sample dicts with keys: odds_a, odds_b, market_type, label, seq_len\n \"\"\"\n rng = np.random.RandomState(seed)\n samples = []\n\n # Load NFL outcomes (12.5M rows, richest dataset)\n nfl_path = Path(base_path) / \"outcomes\" / \"sport=NFL\" / \"season=2024-25\" / \"outcomes.parquet\"\n if not nfl_path.exists():\n print(f\"Warning: NFL outcomes not found at {nfl_path}\")\n return samples\n\n print(f\"Loading NFL outcomes from {nfl_path}...\")\n df = pd.read_parquet(\n nfl_path,\n columns=[\n \"event_key\", \"market_type\", \"source\", \"outcome_type\",\n \"participant_key\", \"home_participant_key\", \"away_participant_key\",\n \"payout\", \"last_found_at\",\n ],\n )\n df[\"timestamp\"] = pd.to_datetime(df[\"last_found_at\"], format=\"ISO8601\")\n print(f\" Loaded {len(df):,} rows across {df['event_key'].nunique()} events\")\n\n # Also load NBA opening+closing odds if available\n for sport in [\"NBA\", \"NFL\"]:\n open_path = Path(base_path) / \"opening_odds\" / f\"sport={sport}\" / \"season=2024-25\" / \"opening.parquet\"\n close_path = Path(base_path) / \"closing_odds\" / f\"sport={sport}\" / \"season=2024-25\" / \"closing.parquet\"\n if open_path.exists() and close_path.exists():\n df_open = pd.read_parquet(open_path)\n df_close = pd.read_parquet(close_path)\n # Only useful if multiple bookmakers exist\n if df_open[\"source\"].nunique() >= 2 or df_close[\"source\"].nunique() >= 2:\n combined = pd.concat([df_open, df_close], ignore_index=True)\n combined[\"timestamp\"] = pd.to_datetime(combined[\"last_found_at\"], format=\"ISO8601\")\n df = pd.concat([df, combined[df.columns]], ignore_index=True)\n print(f\" Added {sport} opening/closing odds ({len(combined)} rows)\")\n\n # Process each event × market_type group\n event_market_groups = df.groupby([\"event_key\", \"market_type\"])\n\n for (event_key, market_type), group in event_market_groups:\n sources = group[\"source\"].unique()\n if len(sources) < 2:\n continue\n\n mapped_market = PARQUET_MARKET_MAP.get(market_type)\n if mapped_market is None:\n continue\n\n home_key = group[\"home_participant_key\"].iloc[0]\n away_key = group[\"away_participant_key\"].iloc[0]\n\n # Determine complementary sides\n if market_type in (\"MONEYLINE\", \"POINT_SPREAD\"):\n side_a_mask = (group[\"participant_key\"] == home_key) & (group[\"outcome_type\"] == \"WIN\")\n side_b_mask = (group[\"participant_key\"] == away_key) & (group[\"outcome_type\"] == \"WIN\")\n else: # POINT_TOTAL\n side_a_mask = group[\"outcome_type\"] == \"OVER\"\n side_b_mask = group[\"outcome_type\"] == \"UNDER\"\n\n # Try all bookmaker pairs (both orderings for more samples)\n for src_a, src_b in itertools.permutations(sources, 2):\n # Side A odds from bookmaker A, side B odds from bookmaker B\n series_a = (\n group[side_a_mask & (group[\"source\"] == src_a)]\n .sort_values(\"timestamp\")[[\"timestamp\", \"payout\"]]\n .rename(columns={\"payout\": \"odds_a\"})\n )\n series_b = (\n group[side_b_mask & (group[\"source\"] == src_b)]\n .sort_values(\"timestamp\")[[\"timestamp\", \"payout\"]]\n .rename(columns={\"payout\": \"odds_b\"})\n )\n\n if len(series_a) < min_seq_len or len(series_b) < min_seq_len:\n continue\n\n # Align by nearest timestamp (within 5-minute tolerance)\n merged = pd.merge_asof(\n series_a.sort_values(\"timestamp\"),\n series_b.sort_values(\"timestamp\"),\n on=\"timestamp\",\n direction=\"nearest\",\n tolerance=pd.Timedelta(\"5min\"),\n ).dropna()\n\n if len(merged) < min_seq_len:\n continue\n\n # Downsample to reduce consecutive duplicate readings\n merged = merged.iloc[::downsample_factor].reset_index(drop=True)\n\n if len(merged) < min_seq_len:\n continue\n\n odds_a_full = merged[\"odds_a\"].values.astype(np.float32)\n odds_b_full = merged[\"odds_b\"].values.astype(np.float32)\n\n # Slice into windows of min_seq_len–max_seq_len\n total_len = len(odds_a_full)\n pos = 0\n while pos < total_len:\n remaining = total_len - pos\n if remaining < min_seq_len:\n break\n\n # Random window length within bounds\n win_len = rng.randint(min_seq_len, min(max_seq_len, remaining) + 1)\n chunk_a = odds_a_full[pos : pos + win_len]\n chunk_b = odds_b_full[pos : pos + win_len]\n\n # Label: does an arbitrage window exist in this chunk?\n arb_indicator = 1.0 / chunk_a + 1.0 / chunk_b\n has_arb = float(np.any(arb_indicator < 1.0))\n\n samples.append({\n \"odds_a\": chunk_a,\n \"odds_b\": chunk_b,\n \"market_type\": mapped_market,\n \"label\": has_arb,\n \"seq_len\": len(chunk_a),\n })\n\n pos += win_len\n\n return samples\n\n\nreal_data = load_real_parquet_data(base_path=\"../data/raw_2\", seed=42)\nprint(f\"\\nReal data: {len(real_data)} samples\")\nif real_data:\n real_pos = sum(1 for s in real_data if s[\"label\"] == 1.0)\n print(f\" Positive (arbitrage): {real_pos} ({real_pos / len(real_data):.1%})\")\n print(f\" Negative: {len(real_data) - real_pos} ({1 - real_pos / len(real_data):.1%})\")\n print(f\" Seq length range: {min(s['seq_len'] for s in real_data)} - {max(s['seq_len'] for s in real_data)}\")", + "metadata": {}, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "code", + "source": "import os\nfrom dotenv import load_dotenv\n\n# Market type mapping: Delta Lake names → model names\nDELTA_MARKET_MAP = {\n \"moneyline\": \"MONEYLINE\",\n \"spread\": \"POINTS_SPREAD\",\n \"points_total\": \"POINTS_TOTAL\",\n}\n\n# Complementary outcome sides for pairing\nCOMPLEMENTARY_SIDES = {\n \"home\": \"away\",\n \"away\": \"home\",\n \"over\": \"under\",\n \"under\": \"over\",\n}\n\n\ndef american_to_decimal(price: float) -> float:\n \"\"\"Convert American odds to decimal odds.\n\n Positive American odds (e.g. +150): (price / 100) + 1 = 2.50\n Negative American odds (e.g. -200): (100 / abs(price)) + 1 = 1.50\n \"\"\"\n if price >= 0:\n return (price / 100.0) + 1.0\n else:\n return (100.0 / abs(price)) + 1.0\n\n\ndef load_delta_lake_data(\n min_seq_len: int = 10,\n max_seq_len: int = 120,\n seed: int = 42,\n) -> List[Dict[str, Any]]:\n \"\"\"Load historical odds from Databricks Delta Lake and convert to training samples.\n\n Connects to Databricks using OAuth M2M credentials (from .env),\n queries the game_odds and upcoming_games tables, pairs complementary\n outcome sides across bookmakers, aligns time series by nearest timestamp,\n and windows into variable-length sequences.\n\n Falls back gracefully if Databricks is unreachable.\n\n Returns:\n List of sample dicts with keys: odds_a, odds_b, market_type, label, seq_len\n \"\"\"\n rng = np.random.RandomState(seed)\n samples = []\n\n # Load credentials from .env\n load_dotenv(dotenv_path=\"../Backend/.env\")\n host = os.getenv(\"DATABRICKS_HOST\", \"\")\n client_id = os.getenv(\"DATABRICKS_CLIENT_ID\", \"\")\n client_secret = os.getenv(\"DATABRICKS_CLIENT_SECRET\", \"\")\n warehouse_id = os.getenv(\"DATABRICKS_WAREHOUSE_ID\", \"\")\n\n if not all([host, client_id, client_secret, warehouse_id]):\n print(\"Warning: Databricks credentials not found in .env — skipping Delta Lake data\")\n return samples\n\n try:\n from databricks.sdk import WorkspaceClient\n from databricks.sdk.config import Config\n\n ws = WorkspaceClient(\n config=Config(\n host=host,\n client_id=client_id,\n client_secret=client_secret,\n )\n )\n\n # Helper to execute SQL and return rows as dicts\n def execute_sql(sql: str) -> List[Dict[str, Any]]:\n response = ws.statement_execution.execute_statement(\n statement=sql,\n warehouse_id=warehouse_id,\n )\n manifest = response.manifest\n data = response.result\n if not manifest or not data or not data.data_array:\n return []\n columns = [col.name for col in manifest.schema.columns]\n return [dict(zip(columns, row)) for row in data.data_array]\n\n print(\"Querying Delta Lake for historical odds...\")\n\n # Query game_odds for historical price data\n odds_rows = execute_sql(\"\"\"\n SELECT game_id, bookmaker, market_type, outcome_side, price, last_found_at\n FROM hackalytics.default.game_odds\n WHERE price IS NOT NULL\n ORDER BY game_id, last_found_at\n \"\"\")\n\n if not odds_rows:\n print(\"Warning: No rows returned from game_odds — skipping Delta Lake data\")\n return samples\n\n print(f\" Fetched {len(odds_rows):,} rows from game_odds\")\n\n # Query upcoming_games for home/away metadata (helps map outcome_side)\n games_rows = execute_sql(\"\"\"\n SELECT game_id, home_team, away_team\n FROM hackalytics.default.upcoming_games\n \"\"\")\n games_meta = {row[\"game_id\"]: row for row in games_rows}\n print(f\" Fetched {len(games_meta)} games from upcoming_games\")\n\n # Build a DataFrame for processing\n df = pd.DataFrame(odds_rows)\n df[\"price\"] = pd.to_numeric(df[\"price\"], errors=\"coerce\")\n df[\"decimal_odds\"] = df[\"price\"].apply(american_to_decimal)\n df[\"timestamp\"] = pd.to_datetime(df[\"last_found_at\"], format=\"ISO8601\")\n df[\"market_type_mapped\"] = df[\"market_type\"].str.lower().map(DELTA_MARKET_MAP)\n\n # Drop rows with unmapped market types or invalid odds\n df = df.dropna(subset=[\"market_type_mapped\", \"decimal_odds\"])\n df = df[df[\"decimal_odds\"] > 1.0] # Decimal odds must be > 1\n\n print(f\" Valid rows after filtering: {len(df):,}\")\n\n # Process each game × market_type group\n for (game_id, market_type_mapped), group in df.groupby([\"game_id\", \"market_type_mapped\"]):\n bookmakers = group[\"bookmaker\"].unique()\n if len(bookmakers) < 2:\n continue\n\n outcome_sides = group[\"outcome_side\"].str.lower().unique()\n\n # Find complementary side pairs\n side_pairs = []\n for side in outcome_sides:\n complement = COMPLEMENTARY_SIDES.get(side)\n if complement and complement in outcome_sides:\n pair = tuple(sorted([side, complement]))\n if pair not in side_pairs:\n side_pairs.append(pair)\n\n if not side_pairs:\n continue\n\n for side_a, side_b in side_pairs:\n # Try all bookmaker pairs\n for src_a, src_b in itertools.permutations(bookmakers, 2):\n series_a = (\n group[(group[\"outcome_side\"].str.lower() == side_a) & (group[\"bookmaker\"] == src_a)]\n .sort_values(\"timestamp\")[[\"timestamp\", \"decimal_odds\"]]\n .rename(columns={\"decimal_odds\": \"odds_a\"})\n )\n series_b = (\n group[(group[\"outcome_side\"].str.lower() == side_b) & (group[\"bookmaker\"] == src_b)]\n .sort_values(\"timestamp\")[[\"timestamp\", \"decimal_odds\"]]\n .rename(columns={\"decimal_odds\": \"odds_b\"})\n )\n\n if len(series_a) < min_seq_len or len(series_b) < min_seq_len:\n continue\n\n # Align by nearest timestamp (within 5-minute tolerance)\n merged = pd.merge_asof(\n series_a.sort_values(\"timestamp\"),\n series_b.sort_values(\"timestamp\"),\n on=\"timestamp\",\n direction=\"nearest\",\n tolerance=pd.Timedelta(\"5min\"),\n ).dropna()\n\n if len(merged) < min_seq_len:\n continue\n\n odds_a_full = merged[\"odds_a\"].values.astype(np.float32)\n odds_b_full = merged[\"odds_b\"].values.astype(np.float32)\n\n # Slice into windows of min_seq_len–max_seq_len\n total_len = len(odds_a_full)\n pos = 0\n while pos < total_len:\n remaining = total_len - pos\n if remaining < min_seq_len:\n break\n\n win_len = rng.randint(min_seq_len, min(max_seq_len, remaining) + 1)\n chunk_a = odds_a_full[pos : pos + win_len]\n chunk_b = odds_b_full[pos : pos + win_len]\n\n # Label: does an arbitrage window exist?\n arb_indicator = 1.0 / chunk_a + 1.0 / chunk_b\n has_arb = float(np.any(arb_indicator < 1.0))\n\n samples.append({\n \"odds_a\": chunk_a,\n \"odds_b\": chunk_b,\n \"market_type\": market_type_mapped,\n \"label\": has_arb,\n \"seq_len\": len(chunk_a),\n })\n\n pos += win_len\n\n print(f\"\\nDelta Lake data: {len(samples)} samples\")\n if samples:\n delta_pos = sum(1 for s in samples if s[\"label\"] == 1.0)\n print(f\" Positive (arbitrage): {delta_pos} ({delta_pos / len(samples):.1%})\")\n print(f\" Negative: {len(samples) - delta_pos} ({1 - delta_pos / len(samples):.1%})\")\n print(f\" Seq length range: {min(s['seq_len'] for s in samples)} - {max(s['seq_len'] for s in samples)}\")\n\n except Exception as e:\n print(f\"Warning: Failed to load Delta Lake data — {type(e).__name__}: {e}\")\n print(\"Continuing without Delta Lake data.\")\n\n return samples\n\n\ndelta_data = load_delta_lake_data(seed=42)", + "metadata": {}, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "code", + "source": "# Combine synthetic, real parquet, and Delta Lake data\nn_synthetic = len(raw_data)\nn_real = len(real_data)\nn_delta = len(delta_data)\n\nraw_data = raw_data + real_data + delta_data\n\nprint(f\"Combined dataset: {len(raw_data)} samples\")\nprint(f\" Synthetic: {n_synthetic}\")\nprint(f\" Real (parq): {n_real}\")\nprint(f\" Delta Lake: {n_delta}\")\nprint(f\" Label distribution: {sum(s['label'] for s in raw_data) / len(raw_data):.1%} positive\")", + "metadata": {}, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "metadata": { + "application/vnd.databricks.v1+cell": { + "cellMetadata": { + "byteLimit": 2048000, + "rowLimit": 10000 + }, + "inputWidgets": {}, + "nuid": "", + "showTitle": false, + "tableResultSettingsMap": {}, + "title": "" + } + }, + "source": [ + "## 2. Feature Engineering\n", + "\n", + "At each timestep we compute:\n", + "- Raw decimal odds from both bookmakers\n", + "- Odds spread (A − B)\n", + "- Implied probability difference\n", + "- Classical arbitrage indicator: (< 1 means arbitrage)\n", + "- Rate of change for each bookmaker\n", + "- Time-normalized position in sequence" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "application/vnd.databricks.v1+cell": { + "cellMetadata": { + "byteLimit": 2048000, + "rowLimit": 10000 + }, + "inputWidgets": {}, + "nuid": "", + "showTitle": false, + "tableResultSettingsMap": {}, + "title": "" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Feature dimensionality per timestep: 10\n" + ] + } + ], + "source": [ + "MARKET_TYPE_MAP = {\"MONEYLINE\": 0, \"POINTS_SPREAD\": 1, \"POINTS_TOTAL\": 2}\n", + "\n", + "\n", + "def engineer_features(sample: Dict[str, Any]) -> Dict[str, Any]:\n", + " \"\"\"Convert raw odds pair into an engineered feature tensor.\n", + "\n", + " Returns a dict with:\n", + " features: np.ndarray of shape (seq_len, n_features)\n", + " market_type: int index\n", + " label: float\n", + " seq_len: int\n", + " \"\"\"\n", + " odds_a = sample[\"odds_a\"]\n", + " odds_b = sample[\"odds_b\"]\n", + " T = len(odds_a)\n", + "\n", + " # Implied probabilities\n", + " impl_a = 1.0 / odds_a\n", + " impl_b = 1.0 / odds_b\n", + "\n", + " # Classical arbitrage indicator (sum of implied probs)\n", + " arb_indicator = impl_a + impl_b # < 1 means arbitrage\n", + "\n", + " # Spread\n", + " spread = odds_a - odds_b\n", + "\n", + " # Implied probability difference\n", + " impl_diff = impl_a - impl_b\n", + "\n", + " # Rate of change (pad first element with 0)\n", + " delta_a = np.concatenate([[0], np.diff(odds_a)])\n", + " delta_b = np.concatenate([[0], np.diff(odds_b)])\n", + "\n", + " # Relative rate of change\n", + " rel_delta_a = delta_a / (odds_a + 1e-8)\n", + " rel_delta_b = delta_b / (odds_b + 1e-8)\n", + "\n", + " # Time position (normalized 0 to 1)\n", + " time_pos = np.linspace(0, 1, T).astype(np.float32)\n", + "\n", + " # Stack features: (T, 10)\n", + " features = np.stack([\n", + " odds_a, odds_b, # raw odds\n", + " spread, impl_diff, # spreads\n", + " arb_indicator, # arbitrage signal\n", + " delta_a, delta_b, # rate of change\n", + " rel_delta_a, rel_delta_b, # relative rate of change\n", + " time_pos, # temporal position\n", + " ], axis=1).astype(np.float32)\n", + "\n", + " return {\n", + " \"features\": features,\n", + " \"market_type\": MARKET_TYPE_MAP[sample[\"market_type\"]],\n", + " \"label\": sample[\"label\"],\n", + " \"seq_len\": T,\n", + " }\n", + "\n", + "\n", + "engineered_data = [engineer_features(s) for s in raw_data]\n", + "print(f\"Feature dimensionality per timestep: {engineered_data[0]['features'].shape[1]}\")\n" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "application/vnd.databricks.v1+cell": { + "cellMetadata": { + "byteLimit": 2048000, + "rowLimit": 10000 + }, + "inputWidgets": {}, + "nuid": "", + "showTitle": false, + "tableResultSettingsMap": {}, + "title": "" + } + }, + "source": [ + "## 3. Exploratory Data Analysis\n", + "\n", + "Visualize the odds dynamics and feature distributions." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "application/vnd.databricks.v1+cell": { + "cellMetadata": { + "byteLimit": 2048000, + "rowLimit": 10000 + }, + "inputWidgets": {}, + "nuid": "", + "showTitle": false, + "tableResultSettingsMap": {}, + "title": "" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "EDA plots generated.\n" + ] + } + ], + "source": [ + "def plot_sample_odds(raw_data, idx=0):\n", + " \"\"\"Plot odds movement for a single sample.\"\"\"\n", + " s = raw_data[idx]\n", + " fig, axes = plt.subplots(1, 2, figsize=(14, 4))\n", + "\n", + " axes[0].plot(s[\"odds_a\"], label=\"Bookmaker A\", alpha=0.8)\n", + " axes[0].plot(s[\"odds_b\"], label=\"Bookmaker B\", alpha=0.8)\n", + " axes[0].set_title(f'Decimal Odds — {s[\"market_type\"]} (label={s[\"label\"]:.0f})')\n", + " axes[0].set_xlabel(\"Timestep\")\n", + " axes[0].set_ylabel(\"Decimal Odds\")\n", + " axes[0].legend()\n", + "\n", + " impl_sum = 1.0 / s[\"odds_a\"] + 1.0 / s[\"odds_b\"]\n", + " axes[1].plot(impl_sum, color=\"red\", alpha=0.8)\n", + " axes[1].axhline(y=1.0, color=\"green\", linestyle=\"--\", label=\"Arbitrage threshold\")\n", + " axes[1].set_title(\"Sum of Implied Probabilities\")\n", + " axes[1].set_xlabel(\"Timestep\")\n", + " axes[1].set_ylabel(\"Σ(1/odds)\")\n", + " axes[1].legend()\n", + "\n", + " plt.tight_layout()\n", + " plt.close(fig)\n", + " return fig\n", + "\n", + "\n", + "def plot_feature_distributions_odds(engineered_data, n_cols=3):\n", + " \"\"\"Plot distributions of engineered features across all timesteps.\"\"\"\n", + " feature_names = [\n", + " \"odds_a\", \"odds_b\", \"spread\", \"impl_diff\",\n", + " \"arb_indicator\", \"delta_a\", \"delta_b\",\n", + " \"rel_delta_a\", \"rel_delta_b\", \"time_pos\"\n", + " ]\n", + " # Collect all timestep features\n", + " all_features = np.concatenate([s[\"features\"] for s in engineered_data], axis=0)\n", + " n_features = all_features.shape[1]\n", + " n_rows = (n_features + n_cols - 1) // n_cols\n", + "\n", + " fig, axes = plt.subplots(n_rows, n_cols, figsize=(15, 4 * n_rows))\n", + " axes = axes.flatten()\n", + "\n", + " for i in range(n_features):\n", + " sns.histplot(all_features[:, i], ax=axes[i], kde=True, color=\"skyblue\", bins=50)\n", + " axes[i].set_title(f\"Distribution of {feature_names[i]}\")\n", + "\n", + " for i in range(n_features, len(axes)):\n", + " axes[i].set_visible(False)\n", + "\n", + " plt.tight_layout()\n", + " fig.suptitle(\"Engineered Feature Distributions\", y=1.02, fontsize=16)\n", + " plt.close(fig)\n", + " return fig\n", + "\n", + "\n", + "def plot_seq_length_distribution(engineered_data):\n", + " \"\"\"Plot distribution of sequence lengths by label.\"\"\"\n", + " fig, ax = plt.subplots(figsize=(8, 4))\n", + " lens_pos = [s[\"seq_len\"] for s in engineered_data if s[\"label\"] == 1.0]\n", + " lens_neg = [s[\"seq_len\"] for s in engineered_data if s[\"label\"] == 0.0]\n", + " ax.hist(lens_neg, bins=30, alpha=0.6, label=\"No arbitrage\", color=\"steelblue\")\n", + " ax.hist(lens_pos, bins=30, alpha=0.6, label=\"Arbitrage\", color=\"coral\")\n", + " ax.set_xlabel(\"Sequence Length\")\n", + " ax.set_ylabel(\"Count\")\n", + " ax.set_title(\"Sequence Length Distribution by Label\")\n", + " ax.legend()\n", + " plt.tight_layout()\n", + " plt.close(fig)\n", + " return fig\n", + "\n", + "\n", + "# Generate EDA plots\n", + "sample_plot_pos = plot_sample_odds(raw_data, idx=next(i for i, s in enumerate(raw_data) if s[\"label\"] == 1.0))\n", + "sample_plot_neg = plot_sample_odds(raw_data, idx=next(i for i, s in enumerate(raw_data) if s[\"label\"] == 0.0))\n", + "feat_dist_plot = plot_feature_distributions_odds(engineered_data)\n", + "seq_len_plot = plot_seq_length_distribution(engineered_data)\n", + "print(\"EDA plots generated.\")\n" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "application/vnd.databricks.v1+cell": { + "cellMetadata": { + "byteLimit": 2048000, + "rowLimit": 10000 + }, + "inputWidgets": {}, + "nuid": "", + "showTitle": false, + "tableResultSettingsMap": {}, + "title": "" + } + }, + "source": [ + "## 4. PyTorch Dataset and Variable-Length Collation\n", + "\n", + "We implement a custom Dataset and a that pads sequences to the\n", + "longest in the batch and returns attention masks. This is critical for\n", + "the transformer to ignore padding tokens." + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "application/vnd.databricks.v1+cell": { + "cellMetadata": { + "byteLimit": 2048000, + "rowLimit": 10000 + }, + "inputWidgets": {}, + "nuid": "", + "showTitle": false, + "tableResultSettingsMap": {}, + "title": "" + } + }, + "outputs": [], + "source": [ + "class ArbitrageOddsDataset(Dataset):\n", + " \"\"\"PyTorch Dataset for variable-length odds sequences.\"\"\"\n", + "\n", + " def __init__(self, samples: List[Dict[str, Any]]):\n", + " self.samples = samples\n", + "\n", + " def __len__(self):\n", + " return len(self.samples)\n", + "\n", + " def __getitem__(self, idx):\n", + " s = self.samples[idx]\n", + " return {\n", + " \"features\": torch.tensor(s[\"features\"], dtype=torch.float32),\n", + " \"market_type\": torch.tensor(s[\"market_type\"], dtype=torch.long),\n", + " \"label\": torch.tensor(s[\"label\"], dtype=torch.float32),\n", + " \"seq_len\": s[\"seq_len\"],\n", + " }\n", + "\n", + "\n", + "def collate_fn(batch: List[Dict]) -> Dict[str, torch.Tensor]:\n", + " \"\"\"Pad variable-length sequences and create attention masks.\"\"\"\n", + " features = [item[\"features\"] for item in batch]\n", + " market_types = torch.stack([item[\"market_type\"] for item in batch])\n", + " labels = torch.stack([item[\"label\"] for item in batch])\n", + " seq_lens = torch.tensor([item[\"seq_len\"] for item in batch], dtype=torch.long)\n", + "\n", + " # Pad sequences to max length in batch\n", + " features_padded = pad_sequence(features, batch_first=True, padding_value=0.0)\n", + " B, T, _ = features_padded.shape\n", + "\n", + " # Create attention mask (1 = valid, 0 = padding)\n", + " mask = torch.arange(T).unsqueeze(0).expand(B, T) < seq_lens.unsqueeze(1)\n", + "\n", + " return {\n", + " \"features\": features_padded, # (B, T, F)\n", + " \"mask\": mask, # (B, T)\n", + " \"market_type\": market_types, # (B,)\n", + " \"label\": labels, # (B,)\n", + " \"seq_len\": seq_lens, # (B,)\n", + " }" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "application/vnd.databricks.v1+cell": { + "cellMetadata": { + "byteLimit": 2048000, + "rowLimit": 10000 + }, + "inputWidgets": {}, + "nuid": "", + "showTitle": false, + "tableResultSettingsMap": {}, + "title": "" + } + }, + "source": [ + "## 5. Dual-Stream Transformer Encoder with Cross-Attention\n", + "\n", + "The model architecture:\n", + "\n", + "\n", + "\n", + "Key design choices:\n", + "- **ALiBi positional bias** for length generalization\n", + "- **Cross-attention** in later layers for inter-bookmaker dynamics\n", + "- **Attention-weighted pooling** so longer sequences contribute more evidence" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "application/vnd.databricks.v1+cell": { + "cellMetadata": { + "byteLimit": 2048000, + "rowLimit": 10000 + }, + "inputWidgets": {}, + "nuid": "", + "showTitle": false, + "tableResultSettingsMap": {}, + "title": "" + } + }, + "outputs": [], + "source": [ + "class ALiBiAttention(nn.Module):\n", + " \"\"\"Multi-head attention with ALiBi (Attention with Linear Biases) positional encoding.\n", + "\n", + " ALiBi adds a linear bias to attention scores based on query-key distance,\n", + " enabling strong length generalization without learned positional embeddings.\n", + " \"\"\"\n", + "\n", + " def __init__(self, d_model: int, n_heads: int, dropout: float = 0.1):\n", + " super().__init__()\n", + " assert d_model % n_heads == 0\n", + " self.d_model = d_model\n", + " self.n_heads = n_heads\n", + " self.head_dim = d_model // n_heads\n", + " self.scale = self.head_dim ** -0.5\n", + "\n", + " self.q_proj = nn.Linear(d_model, d_model)\n", + " self.k_proj = nn.Linear(d_model, d_model)\n", + " self.v_proj = nn.Linear(d_model, d_model)\n", + " self.out_proj = nn.Linear(d_model, d_model)\n", + " self.dropout = nn.Dropout(dropout)\n", + "\n", + " # Compute ALiBi slopes (one per head)\n", + " slopes = self._compute_slopes(n_heads)\n", + " self.register_buffer(\"slopes\", slopes) # (n_heads,)\n", + "\n", + " @staticmethod\n", + " def _compute_slopes(n_heads: int) -> torch.Tensor:\n", + " \"\"\"Compute ALiBi slopes following the geometric sequence from the paper.\"\"\"\n", + " def get_slopes_power_of_2(n):\n", + " start = 2 ** (-(2 ** -(math.log2(n) - 3)))\n", + " ratio = start\n", + " return [start * (ratio ** i) for i in range(n)]\n", + "\n", + " if math.log2(n_heads).is_integer():\n", + " return torch.tensor(get_slopes_power_of_2(n_heads), dtype=torch.float32)\n", + " else:\n", + " closest_power = 2 ** math.floor(math.log2(n_heads))\n", + " slopes = get_slopes_power_of_2(closest_power)\n", + " extra = get_slopes_power_of_2(2 * closest_power)[0::2][:n_heads - closest_power]\n", + " return torch.tensor(slopes + extra, dtype=torch.float32)\n", + "\n", + " def _alibi_bias(self, T: int) -> torch.Tensor:\n", + " \"\"\"Create ALiBi bias matrix of shape (n_heads, T, T).\"\"\"\n", + " positions = torch.arange(T, device=self.slopes.device)\n", + " distance = positions.unsqueeze(0) - positions.unsqueeze(1) # (T, T)\n", + " bias = self.slopes.unsqueeze(-1).unsqueeze(-1) * distance.unsqueeze(0).abs().neg()\n", + " return bias # (n_heads, T, T)\n", + "\n", + " def forward(\n", + " self,\n", + " query: torch.Tensor,\n", + " key: torch.Tensor,\n", + " value: torch.Tensor,\n", + " mask: Optional[torch.Tensor] = None,\n", + " ) -> torch.Tensor:\n", + " \"\"\"\n", + " Args:\n", + " query: (B, T_q, d_model)\n", + " key: (B, T_k, d_model)\n", + " value: (B, T_k, d_model)\n", + " mask: (B, T_k) boolean mask, True=valid\n", + " Returns:\n", + " (B, T_q, d_model)\n", + " \"\"\"\n", + " B, T_q, _ = query.shape\n", + " T_k = key.shape[1]\n", + "\n", + " Q = self.q_proj(query).view(B, T_q, self.n_heads, self.head_dim).transpose(1, 2)\n", + " K = self.k_proj(key).view(B, T_k, self.n_heads, self.head_dim).transpose(1, 2)\n", + " V = self.v_proj(value).view(B, T_k, self.n_heads, self.head_dim).transpose(1, 2)\n", + "\n", + " # Scaled dot-product attention + ALiBi bias\n", + " attn = (Q @ K.transpose(-2, -1)) * self.scale\n", + "\n", + " # Only add ALiBi bias for self-attention (T_q == T_k)\n", + " if T_q == T_k:\n", + " attn = attn + self._alibi_bias(T_q).unsqueeze(0)\n", + "\n", + " # Apply padding mask\n", + " if mask is not None:\n", + " # mask: (B, T_k) -> (B, 1, 1, T_k)\n", + " mask_expanded = mask.unsqueeze(1).unsqueeze(2)\n", + " attn = attn.masked_fill(~mask_expanded, float(\"-inf\"))\n", + "\n", + " attn = F.softmax(attn, dim=-1)\n", + " attn = self.dropout(attn)\n", + "\n", + " out = (attn @ V).transpose(1, 2).contiguous().view(B, T_q, self.d_model)\n", + " return self.out_proj(out)\n", + "\n", + "\n", + "class TransformerEncoderLayer(nn.Module):\n", + " \"\"\"Single transformer encoder layer with optional cross-attention.\"\"\"\n", + "\n", + " def __init__(self, d_model: int, n_heads: int, d_ff: int, dropout: float = 0.1, use_cross_attn: bool = False):\n", + " super().__init__()\n", + " self.self_attn = ALiBiAttention(d_model, n_heads, dropout)\n", + " self.norm1 = nn.LayerNorm(d_model)\n", + "\n", + " self.use_cross_attn = use_cross_attn\n", + " if use_cross_attn:\n", + " self.cross_attn = ALiBiAttention(d_model, n_heads, dropout)\n", + " self.norm_cross = nn.LayerNorm(d_model)\n", + "\n", + " self.ffn = nn.Sequential(\n", + " nn.Linear(d_model, d_ff),\n", + " nn.GELU(),\n", + " nn.Dropout(dropout),\n", + " nn.Linear(d_ff, d_model),\n", + " nn.Dropout(dropout),\n", + " )\n", + " self.norm2 = nn.LayerNorm(d_model)\n", + "\n", + " def forward(\n", + " self,\n", + " x: torch.Tensor,\n", + " mask: Optional[torch.Tensor] = None,\n", + " cross_kv: Optional[torch.Tensor] = None,\n", + " cross_mask: Optional[torch.Tensor] = None,\n", + " ) -> torch.Tensor:\n", + " # Self-attention\n", + " residual = x\n", + " x = self.norm1(x)\n", + " x = residual + self.self_attn(x, x, x, mask)\n", + "\n", + " # Cross-attention (attend to the other bookmaker stream)\n", + " if self.use_cross_attn and cross_kv is not None:\n", + " residual = x\n", + " x = self.norm_cross(x)\n", + " x = residual + self.cross_attn(x, cross_kv, cross_kv, cross_mask)\n", + "\n", + " # Feed-forward\n", + " residual = x\n", + " x = self.norm2(x)\n", + " x = residual + self.ffn(x)\n", + "\n", + " return x\n", + "\n", + "\n", + "class AttentionPooling(nn.Module):\n", + " \"\"\"Learnable attention-weighted pooling over the sequence dimension.\n", + "\n", + " Longer sequences provide more evidence vectors for the pooling to attend to,\n", + " naturally producing more confident (and accurate) scores.\n", + " \"\"\"\n", + "\n", + " def __init__(self, d_model: int):\n", + " super().__init__()\n", + " self.query = nn.Parameter(torch.randn(1, 1, d_model))\n", + " self.scale = d_model ** -0.5\n", + "\n", + " def forward(self, x: torch.Tensor, mask: Optional[torch.Tensor] = None) -> torch.Tensor:\n", + " \"\"\"\n", + " Args:\n", + " x: (B, T, d_model)\n", + " mask: (B, T) boolean\n", + " Returns:\n", + " (B, d_model)\n", + " \"\"\"\n", + " # Compute attention scores\n", + " scores = (self.query * x).sum(dim=-1) * self.scale # (B, T)\n", + "\n", + " if mask is not None:\n", + " scores = scores.masked_fill(~mask, float(\"-inf\"))\n", + "\n", + " weights = F.softmax(scores, dim=-1).unsqueeze(-1) # (B, T, 1)\n", + " return (weights * x).sum(dim=1) # (B, d_model)\n", + "\n", + "\n", + "class TemporalArbitrageScorer(nn.Module):\n", + " \"\"\"Dual-Stream Transformer Encoder with Cross-Attention for arbitrage detection.\n", + "\n", + " The input feature tensor contains both bookmaker streams stacked together.\n", + " The model splits them internally, processes each through its own transformer\n", + " stream with cross-attention in later layers, pools with learned attention\n", + " weights, and produces a scalar arbitrage score.\n", + " \"\"\"\n", + "\n", + " def __init__(\n", + " self,\n", + " n_input_features: int = 10,\n", + " d_model: int = 64,\n", + " n_heads: int = 4,\n", + " n_layers: int = 3,\n", + " d_ff: int = 256,\n", + " dropout: float = 0.1,\n", + " n_market_types: int = 3,\n", + " cross_attn_start_layer: int = 1,\n", + " ):\n", + " super().__init__()\n", + " self.d_model = d_model\n", + " self.n_input_features = n_input_features\n", + " self.n_layers = n_layers\n", + " self.n_heads = n_heads\n", + " self.d_ff = d_ff\n", + " self.dropout_rate = dropout\n", + "\n", + " # Split features: first 5 features relate more to bookmaker A, rest to B\n", + " # But we project the full feature vector for each stream (shared context)\n", + " self.proj_a = nn.Linear(n_input_features, d_model)\n", + " self.proj_b = nn.Linear(n_input_features, d_model)\n", + "\n", + " # Market type embedding\n", + " self.market_emb = nn.Embedding(n_market_types, d_model)\n", + "\n", + " # Transformer layers for stream A\n", + " self.layers_a = nn.ModuleList([\n", + " TransformerEncoderLayer(\n", + " d_model, n_heads, d_ff, dropout,\n", + " use_cross_attn=(i >= cross_attn_start_layer)\n", + " )\n", + " for i in range(n_layers)\n", + " ])\n", + "\n", + " # Transformer layers for stream B\n", + " self.layers_b = nn.ModuleList([\n", + " TransformerEncoderLayer(\n", + " d_model, n_heads, d_ff, dropout,\n", + " use_cross_attn=(i >= cross_attn_start_layer)\n", + " )\n", + " for i in range(n_layers)\n", + " ])\n", + "\n", + " # Attention pooling for each stream\n", + " self.pool_a = AttentionPooling(d_model)\n", + " self.pool_b = AttentionPooling(d_model)\n", + "\n", + " # MLP scoring head\n", + " self.head = nn.Sequential(\n", + " nn.Linear(d_model * 2 + d_model, d_ff), # concat streams + market emb\n", + " nn.GELU(),\n", + " nn.Dropout(dropout),\n", + " nn.Linear(d_ff, d_ff // 2),\n", + " nn.GELU(),\n", + " nn.Dropout(dropout),\n", + " nn.Linear(d_ff // 2, 1),\n", + " )\n", + "\n", + " def forward(\n", + " self,\n", + " features: torch.Tensor,\n", + " mask: torch.Tensor,\n", + " market_type: torch.Tensor,\n", + " ) -> torch.Tensor:\n", + " \"\"\"\n", + " Args:\n", + " features: (B, T, n_input_features) padded feature tensor\n", + " mask: (B, T) boolean, True = valid timestep\n", + " market_type: (B,) integer market type index\n", + " Returns:\n", + " (B,) arbitrage score in [0, 1]\n", + " \"\"\"\n", + " # Project into two streams\n", + " h_a = self.proj_a(features) # (B, T, d_model)\n", + " h_b = self.proj_b(features) # (B, T, d_model)\n", + "\n", + " # Process through transformer layers with cross-attention\n", + " for layer_a, layer_b in zip(self.layers_a, self.layers_b):\n", + " h_a_new = layer_a(h_a, mask=mask, cross_kv=h_b, cross_mask=mask)\n", + " h_b_new = layer_b(h_b, mask=mask, cross_kv=h_a, cross_mask=mask)\n", + " h_a, h_b = h_a_new, h_b_new\n", + "\n", + " # Pool each stream\n", + " pooled_a = self.pool_a(h_a, mask) # (B, d_model)\n", + " pooled_b = self.pool_b(h_b, mask) # (B, d_model)\n", + "\n", + " # Market type embedding\n", + " m_emb = self.market_emb(market_type) # (B, d_model)\n", + "\n", + " # Concatenate and score\n", + " combined = torch.cat([pooled_a, pooled_b, m_emb], dim=-1)\n", + " score = torch.sigmoid(self.head(combined).squeeze(-1)) # (B,)\n", + "\n", + " return score\n", + "\n", + " def get_params(self) -> Dict[str, Any]:\n", + " \"\"\"Return model parameters for MLflow logging.\"\"\"\n", + " return {\n", + " \"n_input_features\": self.n_input_features,\n", + " \"d_model\": self.d_model,\n", + " \"n_heads\": self.n_heads,\n", + " \"n_layers\": self.n_layers,\n", + " \"d_ff\": self.d_ff,\n", + " \"dropout\": self.dropout_rate,\n", + " }" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "application/vnd.databricks.v1+cell": { + "cellMetadata": { + "byteLimit": 2048000, + "rowLimit": 10000 + }, + "inputWidgets": {}, + "nuid": "", + "showTitle": false, + "tableResultSettingsMap": {}, + "title": "" + } + }, + "outputs": [], + "source": [ + "class ArbitrageLightningModule(pl.LightningModule):\n", + " \"\"\"PyTorch Lightning wrapper for the TemporalArbitrageScorer.\"\"\"\n", + "\n", + " def __init__(\n", + " self,\n", + " n_input_features: int = 10,\n", + " d_model: int = 64,\n", + " n_heads: int = 4,\n", + " n_layers: int = 3,\n", + " d_ff: int = 256,\n", + " dropout: float = 0.1,\n", + " learning_rate: float = 1e-3,\n", + " weight_decay: float = 1e-5,\n", + " cross_attn_start_layer: int = 1,\n", + " ):\n", + " super().__init__()\n", + " self.save_hyperparameters()\n", + "\n", + " self.model = TemporalArbitrageScorer(\n", + " n_input_features=n_input_features,\n", + " d_model=d_model,\n", + " n_heads=n_heads,\n", + " n_layers=n_layers,\n", + " d_ff=d_ff,\n", + " dropout=dropout,\n", + " cross_attn_start_layer=cross_attn_start_layer,\n", + " )\n", + "\n", + " self.loss_fn = nn.BCELoss()\n", + "\n", + " def forward(self, features, mask, market_type):\n", + " return self.model(features, mask, market_type)\n", + "\n", + " def _shared_step(self, batch, stage: str):\n", + " scores = self(batch[\"features\"], batch[\"mask\"], batch[\"market_type\"])\n", + " loss = self.loss_fn(scores, batch[\"label\"])\n", + "\n", + " # Metrics\n", + " preds = (scores > 0.5).float()\n", + " acc = (preds == batch[\"label\"]).float().mean()\n", + "\n", + " self.log(f\"{stage}_loss\", loss, prog_bar=True, batch_size=len(batch[\"label\"]))\n", + " self.log(f\"{stage}_acc\", acc, prog_bar=True, batch_size=len(batch[\"label\"]))\n", + " return loss\n", + "\n", + " def training_step(self, batch, batch_idx):\n", + " return self._shared_step(batch, \"train\")\n", + "\n", + " def validation_step(self, batch, batch_idx):\n", + " return self._shared_step(batch, \"val\")\n", + "\n", + " def test_step(self, batch, batch_idx):\n", + " return self._shared_step(batch, \"test\")\n", + "\n", + " def configure_optimizers(self):\n", + " optimizer = torch.optim.AdamW(\n", + " self.parameters(),\n", + " lr=self.hparams.learning_rate,\n", + " weight_decay=self.hparams.weight_decay,\n", + " )\n", + " scheduler = torch.optim.lr_scheduler.CosineAnnealingWarmRestarts(\n", + " optimizer, T_0=10, T_mult=2\n", + " )\n", + " return {\"optimizer\": optimizer, \"lr_scheduler\": scheduler}\n", + "\n", + " def get_params(self) -> Dict[str, Any]:\n", + " return self.model.get_params()\n" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "application/vnd.databricks.v1+cell": { + "cellMetadata": { + "byteLimit": 2048000, + "rowLimit": 10000 + }, + "inputWidgets": {}, + "nuid": "", + "showTitle": false, + "tableResultSettingsMap": {}, + "title": "" + } + }, + "source": [ + "## 6. Train / Validation / Test Split & DataLoaders\n", + "\n", + "We split the engineered data and create DataLoaders with our custom collate function." + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "application/vnd.databricks.v1+cell": { + "cellMetadata": { + "byteLimit": 2048000, + "rowLimit": 10000 + }, + "inputWidgets": {}, + "nuid": "", + "showTitle": false, + "tableResultSettingsMap": {}, + "title": "" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2901\n", + "Train: 2800, Val: 600, Test: 600\n", + "Train positives: 28.5%\n" + ] + } + ], + "source": [ + "# Split indices\n", + "indices = list(range(len(engineered_data)))\n", + "labels_for_split = [s[\"label\"] for s in engineered_data]\n", + "\n", + "train_idx, temp_idx = train_test_split(indices, test_size=0.3, random_state=42, stratify=labels_for_split)\n", + "\n", + "print(train_idx[0])\n", + "temp_labels = [labels_for_split[i] for i in temp_idx]\n", + "val_idx, test_idx = train_test_split(temp_idx, test_size=0.5, random_state=42, stratify=temp_labels)\n", + "\n", + "train_data = [engineered_data[i] for i in train_idx]\n", + "\n", + "val_data = [engineered_data[i] for i in val_idx]\n", + "test_data = [engineered_data[i] for i in test_idx]\n", + "\n", + "print(f\"Train: {len(train_data)}, Val: {len(val_data)}, Test: {len(test_data)}\")\n", + "print(f\"Train positives: {sum(1 for s in train_data if s['label'] == 1.0) / len(train_data):.1%}\")\n", + "\n", + "# Create DataLoaders\n", + "BATCH_SIZE = 16\n", + "\n", + "train_loader = DataLoader(\n", + " ArbitrageOddsDataset(train_data), batch_size=BATCH_SIZE, shuffle=True, collate_fn=collate_fn\n", + ")\n", + "val_loader = DataLoader(\n", + " ArbitrageOddsDataset(val_data), batch_size=BATCH_SIZE, shuffle=False, collate_fn=collate_fn\n", + ")\n", + "test_loader = DataLoader(\n", + " ArbitrageOddsDataset(test_data), batch_size=BATCH_SIZE, shuffle=False, collate_fn=collate_fn\n", + ")\n" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "application/vnd.databricks.v1+cell": { + "cellMetadata": { + "byteLimit": 2048000, + "rowLimit": 10000 + }, + "inputWidgets": {}, + "nuid": "", + "showTitle": false, + "tableResultSettingsMap": {}, + "title": "" + } + }, + "source": [ + "## 7. Standard Training Workflow\n", + "\n", + "Train the Temporal Arbitrage Scorer with default hyperparameters as a baseline.\n", + "We use curriculum training — starting with shorter sequences and gradually including longer ones." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "application/vnd.databricks.v1+cell": { + "cellMetadata": { + "byteLimit": 2048000, + "rowLimit": 10000 + }, + "inputWidgets": {}, + "nuid": "", + "showTitle": false, + "tableResultSettingsMap": {}, + "title": "" + } + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "GPU available: True (mps), used: True\n", + "TPU available: False, using: 0 TPU cores\n", + "💡 Tip: For seamless cloud logging and experiment tracking, try installing [litlogger](https://pypi.org/project/litlogger/) to enable LitLogger, which logs metrics and artifacts automatically to the Lightning Experiments platform.\n" + ] + }, + { + "ename": "TypeError", + "evalue": "Cannot convert a MPS Tensor to float64 dtype as the MPS framework doesn't support float64. Please use float32 instead.", + "output_type": "error", + "traceback": [ + "\u001b[31m---------------------------------------------------------------------------\u001b[39m", + "\u001b[31mTypeError\u001b[39m Traceback (most recent call last)", + "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[12]\u001b[39m\u001b[32m, line 43\u001b[39m\n\u001b[32m 35\u001b[39m trainer = pl.Trainer(\n\u001b[32m 36\u001b[39m max_epochs=\u001b[32m1\u001b[39m,\n\u001b[32m 37\u001b[39m callbacks=[early_stopping, checkpoint_callback],\n\u001b[32m 38\u001b[39m enable_progress_bar=\u001b[38;5;28;01mTrue\u001b[39;00m,\n\u001b[32m 39\u001b[39m log_every_n_steps=\u001b[32m5\u001b[39m,\n\u001b[32m 40\u001b[39m )\n\u001b[32m 42\u001b[39m \u001b[38;5;66;03m# Train\u001b[39;00m\n\u001b[32m---> \u001b[39m\u001b[32m43\u001b[39m \u001b[43mtrainer\u001b[49m\u001b[43m.\u001b[49m\u001b[43mfit\u001b[49m\u001b[43m(\u001b[49m\u001b[43mmodel\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mtrain_loader\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mval_loader\u001b[49m\u001b[43m)\u001b[49m\n\u001b[32m 45\u001b[39m \u001b[38;5;66;03m# Test\u001b[39;00m\n\u001b[32m 46\u001b[39m test_results = trainer.test(model, test_loader)\n", + "\u001b[36mFile \u001b[39m\u001b[32m~/.pyenv/versions/hacklytics/lib/python3.13/site-packages/pytorch_lightning/trainer/trainer.py:584\u001b[39m, in \u001b[36mTrainer.fit\u001b[39m\u001b[34m(self, model, train_dataloaders, val_dataloaders, datamodule, ckpt_path, weights_only)\u001b[39m\n\u001b[32m 582\u001b[39m \u001b[38;5;28mself\u001b[39m.training = \u001b[38;5;28;01mTrue\u001b[39;00m\n\u001b[32m 583\u001b[39m \u001b[38;5;28mself\u001b[39m.should_stop = \u001b[38;5;28;01mFalse\u001b[39;00m\n\u001b[32m--> \u001b[39m\u001b[32m584\u001b[39m \u001b[43mcall\u001b[49m\u001b[43m.\u001b[49m\u001b[43m_call_and_handle_interrupt\u001b[49m\u001b[43m(\u001b[49m\n\u001b[32m 585\u001b[39m \u001b[43m \u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m,\u001b[49m\n\u001b[32m 586\u001b[39m \u001b[43m \u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43m_fit_impl\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 587\u001b[39m \u001b[43m \u001b[49m\u001b[43mmodel\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 588\u001b[39m \u001b[43m \u001b[49m\u001b[43mtrain_dataloaders\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 589\u001b[39m \u001b[43m \u001b[49m\u001b[43mval_dataloaders\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 590\u001b[39m \u001b[43m \u001b[49m\u001b[43mdatamodule\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 591\u001b[39m \u001b[43m \u001b[49m\u001b[43mckpt_path\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 592\u001b[39m \u001b[43m \u001b[49m\u001b[43mweights_only\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 593\u001b[39m \u001b[43m\u001b[49m\u001b[43m)\u001b[49m\n", + "\u001b[36mFile \u001b[39m\u001b[32m~/.pyenv/versions/hacklytics/lib/python3.13/site-packages/pytorch_lightning/trainer/call.py:49\u001b[39m, in \u001b[36m_call_and_handle_interrupt\u001b[39m\u001b[34m(trainer, trainer_fn, *args, **kwargs)\u001b[39m\n\u001b[32m 47\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m trainer.strategy.launcher \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[32m 48\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m trainer.strategy.launcher.launch(trainer_fn, *args, trainer=trainer, **kwargs)\n\u001b[32m---> \u001b[39m\u001b[32m49\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mtrainer_fn\u001b[49m\u001b[43m(\u001b[49m\u001b[43m*\u001b[49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43m*\u001b[49m\u001b[43m*\u001b[49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n\u001b[32m 51\u001b[39m \u001b[38;5;28;01mexcept\u001b[39;00m _TunerExitException:\n\u001b[32m 52\u001b[39m _call_teardown_hook(trainer)\n", + "\u001b[36mFile \u001b[39m\u001b[32m~/.pyenv/versions/hacklytics/lib/python3.13/site-packages/pytorch_lightning/trainer/trainer.py:630\u001b[39m, in \u001b[36mTrainer._fit_impl\u001b[39m\u001b[34m(self, model, train_dataloaders, val_dataloaders, datamodule, ckpt_path, weights_only)\u001b[39m\n\u001b[32m 623\u001b[39m download_model_from_registry(ckpt_path, \u001b[38;5;28mself\u001b[39m)\n\u001b[32m 624\u001b[39m ckpt_path = \u001b[38;5;28mself\u001b[39m._checkpoint_connector._select_ckpt_path(\n\u001b[32m 625\u001b[39m \u001b[38;5;28mself\u001b[39m.state.fn,\n\u001b[32m 626\u001b[39m ckpt_path,\n\u001b[32m 627\u001b[39m model_provided=\u001b[38;5;28;01mTrue\u001b[39;00m,\n\u001b[32m 628\u001b[39m model_connected=\u001b[38;5;28mself\u001b[39m.lightning_module \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m,\n\u001b[32m 629\u001b[39m )\n\u001b[32m--> \u001b[39m\u001b[32m630\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43m_run\u001b[49m\u001b[43m(\u001b[49m\u001b[43mmodel\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mckpt_path\u001b[49m\u001b[43m=\u001b[49m\u001b[43mckpt_path\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mweights_only\u001b[49m\u001b[43m=\u001b[49m\u001b[43mweights_only\u001b[49m\u001b[43m)\u001b[49m\n\u001b[32m 632\u001b[39m \u001b[38;5;28;01massert\u001b[39;00m \u001b[38;5;28mself\u001b[39m.state.stopped\n\u001b[32m 633\u001b[39m \u001b[38;5;28mself\u001b[39m.training = \u001b[38;5;28;01mFalse\u001b[39;00m\n", + "\u001b[36mFile \u001b[39m\u001b[32m~/.pyenv/versions/hacklytics/lib/python3.13/site-packages/pytorch_lightning/trainer/trainer.py:1053\u001b[39m, in \u001b[36mTrainer._run\u001b[39m\u001b[34m(self, model, ckpt_path, weights_only)\u001b[39m\n\u001b[32m 1050\u001b[39m \u001b[38;5;28mself\u001b[39m._logger_connector.reset_metrics()\n\u001b[32m 1052\u001b[39m \u001b[38;5;66;03m# strategy will configure model and move it to the device\u001b[39;00m\n\u001b[32m-> \u001b[39m\u001b[32m1053\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43mstrategy\u001b[49m\u001b[43m.\u001b[49m\u001b[43msetup\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m)\u001b[49m\n\u001b[32m 1055\u001b[39m \u001b[38;5;66;03m# hook\u001b[39;00m\n\u001b[32m 1056\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m.state.fn == TrainerFn.FITTING:\n", + "\u001b[36mFile \u001b[39m\u001b[32m~/.pyenv/versions/hacklytics/lib/python3.13/site-packages/pytorch_lightning/strategies/strategy.py:155\u001b[39m, in \u001b[36mStrategy.setup\u001b[39m\u001b[34m(self, trainer)\u001b[39m\n\u001b[32m 152\u001b[39m \u001b[38;5;66;03m# let the precision plugin convert the module here so that this strategy hook can decide the order\u001b[39;00m\n\u001b[32m 153\u001b[39m \u001b[38;5;66;03m# of operations\u001b[39;00m\n\u001b[32m 154\u001b[39m \u001b[38;5;28mself\u001b[39m.model = \u001b[38;5;28mself\u001b[39m.precision_plugin.convert_module(\u001b[38;5;28mself\u001b[39m.model)\n\u001b[32m--> \u001b[39m\u001b[32m155\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43mmodel_to_device\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n\u001b[32m 156\u001b[39m \u001b[38;5;28mself\u001b[39m.model = \u001b[38;5;28mself\u001b[39m._setup_model(\u001b[38;5;28mself\u001b[39m.model)\n\u001b[32m 158\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m trainer.state.fn == TrainerFn.FITTING:\n", + "\u001b[36mFile \u001b[39m\u001b[32m~/.pyenv/versions/hacklytics/lib/python3.13/site-packages/pytorch_lightning/strategies/single_device.py:79\u001b[39m, in \u001b[36mSingleDeviceStrategy.model_to_device\u001b[39m\u001b[34m(self)\u001b[39m\n\u001b[32m 76\u001b[39m \u001b[38;5;129m@override\u001b[39m\n\u001b[32m 77\u001b[39m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[34mmodel_to_device\u001b[39m(\u001b[38;5;28mself\u001b[39m) -> \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[32m 78\u001b[39m \u001b[38;5;28;01massert\u001b[39;00m \u001b[38;5;28mself\u001b[39m.model \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m, \u001b[33m\"\u001b[39m\u001b[33mself.model must be set before self.model.to()\u001b[39m\u001b[33m\"\u001b[39m\n\u001b[32m---> \u001b[39m\u001b[32m79\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43mmodel\u001b[49m\u001b[43m.\u001b[49m\u001b[43mto\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43mroot_device\u001b[49m\u001b[43m)\u001b[49m\n", + "\u001b[36mFile \u001b[39m\u001b[32m~/.pyenv/versions/hacklytics/lib/python3.13/site-packages/lightning_fabric/utilities/device_dtype_mixin.py:59\u001b[39m, in \u001b[36m_DeviceDtypeModuleMixin.to\u001b[39m\u001b[34m(self, *args, **kwargs)\u001b[39m\n\u001b[32m 57\u001b[39m device, dtype = torch._C._nn._parse_to(*args, **kwargs)[:\u001b[32m2\u001b[39m]\n\u001b[32m 58\u001b[39m _update_properties(\u001b[38;5;28mself\u001b[39m, device=device, dtype=dtype)\n\u001b[32m---> \u001b[39m\u001b[32m59\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;43msuper\u001b[39;49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\u001b[43m.\u001b[49m\u001b[43mto\u001b[49m\u001b[43m(\u001b[49m\u001b[43m*\u001b[49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43m*\u001b[49m\u001b[43m*\u001b[49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", + "\u001b[36mFile \u001b[39m\u001b[32m~/.pyenv/versions/hacklytics/lib/python3.13/site-packages/torch/nn/modules/module.py:1381\u001b[39m, in \u001b[36mModule.to\u001b[39m\u001b[34m(self, *args, **kwargs)\u001b[39m\n\u001b[32m 1378\u001b[39m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[32m 1379\u001b[39m \u001b[38;5;28;01mraise\u001b[39;00m\n\u001b[32m-> \u001b[39m\u001b[32m1381\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43m_apply\u001b[49m\u001b[43m(\u001b[49m\u001b[43mconvert\u001b[49m\u001b[43m)\u001b[49m\n", + "\u001b[36mFile \u001b[39m\u001b[32m~/.pyenv/versions/hacklytics/lib/python3.13/site-packages/torch/nn/modules/module.py:933\u001b[39m, in \u001b[36mModule._apply\u001b[39m\u001b[34m(self, fn, recurse)\u001b[39m\n\u001b[32m 931\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m recurse:\n\u001b[32m 932\u001b[39m \u001b[38;5;28;01mfor\u001b[39;00m module \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28mself\u001b[39m.children():\n\u001b[32m--> \u001b[39m\u001b[32m933\u001b[39m \u001b[43mmodule\u001b[49m\u001b[43m.\u001b[49m\u001b[43m_apply\u001b[49m\u001b[43m(\u001b[49m\u001b[43mfn\u001b[49m\u001b[43m)\u001b[49m\n\u001b[32m 935\u001b[39m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[34;01mtorch\u001b[39;00m\u001b[34;01m.\u001b[39;00m\u001b[34;01m_subclasses\u001b[39;00m\u001b[34;01m.\u001b[39;00m\u001b[34;01mfake_tensor\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m FakeTensor\n\u001b[32m 937\u001b[39m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[34mcompute_should_use_set_data\u001b[39m(tensor, tensor_applied) -> \u001b[38;5;28mbool\u001b[39m:\n", + "\u001b[36mFile \u001b[39m\u001b[32m~/.pyenv/versions/hacklytics/lib/python3.13/site-packages/torch/nn/modules/module.py:933\u001b[39m, in \u001b[36mModule._apply\u001b[39m\u001b[34m(self, fn, recurse)\u001b[39m\n\u001b[32m 931\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m recurse:\n\u001b[32m 932\u001b[39m \u001b[38;5;28;01mfor\u001b[39;00m module \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28mself\u001b[39m.children():\n\u001b[32m--> \u001b[39m\u001b[32m933\u001b[39m \u001b[43mmodule\u001b[49m\u001b[43m.\u001b[49m\u001b[43m_apply\u001b[49m\u001b[43m(\u001b[49m\u001b[43mfn\u001b[49m\u001b[43m)\u001b[49m\n\u001b[32m 935\u001b[39m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[34;01mtorch\u001b[39;00m\u001b[34;01m.\u001b[39;00m\u001b[34;01m_subclasses\u001b[39;00m\u001b[34;01m.\u001b[39;00m\u001b[34;01mfake_tensor\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m FakeTensor\n\u001b[32m 937\u001b[39m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[34mcompute_should_use_set_data\u001b[39m(tensor, tensor_applied) -> \u001b[38;5;28mbool\u001b[39m:\n", + "\u001b[36mFile \u001b[39m\u001b[32m~/.pyenv/versions/hacklytics/lib/python3.13/site-packages/torch/nn/modules/module.py:964\u001b[39m, in \u001b[36mModule._apply\u001b[39m\u001b[34m(self, fn, recurse)\u001b[39m\n\u001b[32m 960\u001b[39m \u001b[38;5;66;03m# Tensors stored in modules are graph leaves, and we don't want to\u001b[39;00m\n\u001b[32m 961\u001b[39m \u001b[38;5;66;03m# track autograd history of `param_applied`, so we have to use\u001b[39;00m\n\u001b[32m 962\u001b[39m \u001b[38;5;66;03m# `with torch.no_grad():`\u001b[39;00m\n\u001b[32m 963\u001b[39m \u001b[38;5;28;01mwith\u001b[39;00m torch.no_grad():\n\u001b[32m--> \u001b[39m\u001b[32m964\u001b[39m param_applied = \u001b[43mfn\u001b[49m\u001b[43m(\u001b[49m\u001b[43mparam\u001b[49m\u001b[43m)\u001b[49m\n\u001b[32m 965\u001b[39m p_should_use_set_data = compute_should_use_set_data(param, param_applied)\n\u001b[32m 967\u001b[39m \u001b[38;5;66;03m# subclasses may have multiple child tensors so we need to use swap_tensors\u001b[39;00m\n", + "\u001b[36mFile \u001b[39m\u001b[32m~/.pyenv/versions/hacklytics/lib/python3.13/site-packages/torch/nn/modules/module.py:1367\u001b[39m, in \u001b[36mModule.to..convert\u001b[39m\u001b[34m(t)\u001b[39m\n\u001b[32m 1360\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m convert_to_format \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m \u001b[38;5;129;01mand\u001b[39;00m t.dim() \u001b[38;5;129;01min\u001b[39;00m (\u001b[32m4\u001b[39m, \u001b[32m5\u001b[39m):\n\u001b[32m 1361\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m t.to(\n\u001b[32m 1362\u001b[39m device,\n\u001b[32m 1363\u001b[39m dtype \u001b[38;5;28;01mif\u001b[39;00m t.is_floating_point() \u001b[38;5;129;01mor\u001b[39;00m t.is_complex() \u001b[38;5;28;01melse\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m,\n\u001b[32m 1364\u001b[39m non_blocking,\n\u001b[32m 1365\u001b[39m memory_format=convert_to_format,\n\u001b[32m 1366\u001b[39m )\n\u001b[32m-> \u001b[39m\u001b[32m1367\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mt\u001b[49m\u001b[43m.\u001b[49m\u001b[43mto\u001b[49m\u001b[43m(\u001b[49m\n\u001b[32m 1368\u001b[39m \u001b[43m \u001b[49m\u001b[43mdevice\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 1369\u001b[39m \u001b[43m \u001b[49m\u001b[43mdtype\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;28;43;01mif\u001b[39;49;00m\u001b[43m \u001b[49m\u001b[43mt\u001b[49m\u001b[43m.\u001b[49m\u001b[43mis_floating_point\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;129;43;01mor\u001b[39;49;00m\u001b[43m \u001b[49m\u001b[43mt\u001b[49m\u001b[43m.\u001b[49m\u001b[43mis_complex\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;28;43;01melse\u001b[39;49;00m\u001b[43m \u001b[49m\u001b[38;5;28;43;01mNone\u001b[39;49;00m\u001b[43m,\u001b[49m\n\u001b[32m 1370\u001b[39m \u001b[43m \u001b[49m\u001b[43mnon_blocking\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 1371\u001b[39m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\n\u001b[32m 1372\u001b[39m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mNotImplementedError\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m e:\n\u001b[32m 1373\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mstr\u001b[39m(e) == \u001b[33m\"\u001b[39m\u001b[33mCannot copy out of meta tensor; no data!\u001b[39m\u001b[33m\"\u001b[39m:\n", + "\u001b[31mTypeError\u001b[39m: Cannot convert a MPS Tensor to float64 dtype as the MPS framework doesn't support float64. Please use float32 instead." + ] + } + ], + "source": [ + "# Model hyperparameters\n", + "N_INPUT_FEATURES = 10\n", + "D_MODEL = 8\n", + "N_HEADS = 4\n", + "N_LAYERS = 3\n", + "D_FF = 8\n", + "DROPOUT = 0.1\n", + "LEARNING_RATE = 1e-3\n", + "WEIGHT_DECAY = 1e-5\n", + "\n", + "# Create the model\n", + "model = ArbitrageLightningModule(\n", + " n_input_features=N_INPUT_FEATURES,\n", + " d_model=D_MODEL,\n", + " n_heads=N_HEADS,\n", + " n_layers=N_LAYERS,\n", + " d_ff=D_FF,\n", + " dropout=DROPOUT,\n", + " learning_rate=LEARNING_RATE,\n", + " weight_decay=WEIGHT_DECAY,\n", + ")\n", + "\n", + "# Callbacks\n", + "early_stopping = EarlyStopping(monitor=\"val_loss\", patience=1, mode=\"min\")\n", + "checkpoint_callback = ModelCheckpoint(\n", + " monitor=\"val_loss\",\n", + " dirpath=\"./checkpoints\",\n", + " filename=\"arb-scorer-{epoch:02d}-{val_loss:.4f}\",\n", + " save_top_k=1,\n", + " mode=\"min\",\n", + ")\n", + "\n", + "# Trainer\n", + "trainer = pl.Trainer(\n", + " max_epochs=1,\n", + " callbacks=[early_stopping, checkpoint_callback],\n", + " enable_progress_bar=True,\n", + " log_every_n_steps=5,\n", + ")\n", + "\n", + "# Train\n", + "trainer.fit(model, train_loader, val_loader)\n", + "\n", + "# Test\n", + "test_results = trainer.test(model, test_loader)\n", + "\n", + "# Collect predictions for evaluation\n", + "model.eval()\n", + "all_scores = []\n", + "all_labels = []\n", + "\n", + "with torch.no_grad():\n", + " for batch in test_loader:\n", + " scores = model(batch[\"features\"], batch[\"mask\"], batch[\"market_type\"])\n", + " all_scores.extend(scores.cpu().numpy())\n", + " all_labels.extend(batch[\"label\"].cpu().numpy())\n", + "\n", + "all_scores = np.array(all_scores)\n", + "all_labels = np.array(all_labels)\n", + "\n", + "# Calculate classification metrics\n", + "preds_binary = (all_scores > 0.5).astype(float)\n", + "auc_roc = roc_auc_score(all_labels, all_scores)\n", + "auc_pr = average_precision_score(all_labels, all_scores)\n", + "f1 = f1_score(all_labels, preds_binary)\n", + "precision = precision_score(all_labels, preds_binary)\n", + "recall = recall_score(all_labels, preds_binary)\n", + "\n", + "print(f\"AUC-ROC: {auc_roc:.4f}\")\n", + "print(f\"AUC-PR: {auc_pr:.4f}\")\n", + "print(f\"F1: {f1:.4f}\")\n", + "print(f\"Prec: {precision:.4f}\")\n", + "print(f\"Recall: {recall:.4f}\")\n", + "\n", + "# Analyze accuracy by sequence length (key: longer = better)\n", + "test_seq_lens = np.array([s[\"seq_len\"] for s in test_data])\n", + "length_bins = [(10, 30), (30, 60), (60, 90), (90, 121)]\n", + "print(\"\\nAccuracy by sequence length:\")\n", + "for lo, hi in length_bins:\n", + " mask = (test_seq_lens >= lo) & (test_seq_lens < hi)\n", + " if mask.sum() > 0:\n", + " bin_acc = (preds_binary[mask] == all_labels[mask]).mean()\n", + " print(f\" [{lo:3d}, {hi:3d}): {bin_acc:.3f} (n={mask.sum()})\")" + ] + }, + { + "cell_type": "code", + "execution_count": 0, + "metadata": { + "application/vnd.databricks.v1+cell": { + "cellMetadata": { + "byteLimit": 2048000, + "rowLimit": 10000 + }, + "inputWidgets": {}, + "nuid": "", + "showTitle": false, + "tableResultSettingsMap": {}, + "title": "" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "com.databricks.backend.common.rpc.CommandSkippedException\n", + "\tat com.databricks.spark.chauffeur.SequenceExecutionState.$anonfun$cancel$3(SequenceExecutionState.scala:134)\n", + "\tat com.databricks.spark.chauffeur.SequenceExecutionState.$anonfun$cancel$3$adapted(SequenceExecutionState.scala:129)\n", + "\tat scala.collection.immutable.Range.foreach(Range.scala:158)\n", + "\tat com.databricks.spark.chauffeur.SequenceExecutionState.cancel(SequenceExecutionState.scala:129)\n", + "\tat com.databricks.spark.chauffeur.ExecContextState.cancelRunningSequence(ExecContextState.scala:715)\n", + "\tat com.databricks.spark.chauffeur.ExecContextState.$anonfun$cancel$1(ExecContextState.scala:435)\n", + "\tat scala.Option.getOrElse(Option.scala:189)\n", + "\tat com.databricks.spark.chauffeur.ExecContextState.cancel(ExecContextState.scala:435)\n", + "\tat com.databricks.spark.chauffeur.ExecutionContextManagerV1.cancelExecution(ExecutionContextManagerV1.scala:466)\n", + "\tat com.databricks.spark.chauffeur.ChauffeurState.$anonfun$process$1(ChauffeurState.scala:757)\n", + "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperation$1(UsageLogging.scala:510)\n", + "\tat com.databricks.logging.UsageLogging.executeThunkAndCaptureResultTags$1(UsageLogging.scala:616)\n", + "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperationWithResultTags$4(UsageLogging.scala:643)\n", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)\n", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)\n", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)\n", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)\n", + "\tat com.databricks.spark.chauffeur.ChauffeurState.withAttributionContext(ChauffeurState.scala:83)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags(AttributionContextTracing.scala:96)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags$(AttributionContextTracing.scala:77)\n", + "\tat com.databricks.spark.chauffeur.ChauffeurState.withAttributionTags(ChauffeurState.scala:83)\n", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags(UsageLogging.scala:611)\n", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags$(UsageLogging.scala:519)\n", + "\tat com.databricks.spark.chauffeur.ChauffeurState.recordOperationWithResultTags(ChauffeurState.scala:83)\n", + "\tat com.databricks.logging.UsageLogging.recordOperation(UsageLogging.scala:511)\n", + "\tat com.databricks.logging.UsageLogging.recordOperation$(UsageLogging.scala:475)\n", + "\tat com.databricks.spark.chauffeur.ChauffeurState.recordOperation(ChauffeurState.scala:83)\n", + "\tat com.databricks.spark.chauffeur.ChauffeurState.process(ChauffeurState.scala:735)\n", + "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.handleDriverRequest$1(Chauffeur.scala:926)\n", + "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.$anonfun$applyOrElse$4(Chauffeur.scala:952)\n", + "\tat com.databricks.logging.UsageLogging.executeThunkAndCaptureResultTags$1(UsageLogging.scala:616)\n", + "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperationWithResultTags$4(UsageLogging.scala:643)\n", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)\n", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)\n", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)\n", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)\n", + "\tat com.databricks.rpc.ServerBackend.withAttributionContext(ServerBackend.scala:22)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags(AttributionContextTracing.scala:96)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags$(AttributionContextTracing.scala:77)\n", + "\tat com.databricks.rpc.ServerBackend.withAttributionTags(ServerBackend.scala:22)\n", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags(UsageLogging.scala:611)\n", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags$(UsageLogging.scala:519)\n", + "\tat com.databricks.rpc.ServerBackend.recordOperationWithResultTags(ServerBackend.scala:22)\n", + "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.handleDriverRequestWithUsageLogging$1(Chauffeur.scala:951)\n", + "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.applyOrElse(Chauffeur.scala:1006)\n", + "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.applyOrElse(Chauffeur.scala:777)\n", + "\tat com.databricks.rpc.ServerBackend.$anonfun$internalReceive0$2(ServerBackend.scala:174)\n", + "\tat com.databricks.rpc.ServerBackend$$anonfun$commonReceive$1.applyOrElse(ServerBackend.scala:200)\n", + "\tat com.databricks.rpc.ServerBackend$$anonfun$commonReceive$1.applyOrElse(ServerBackend.scala:200)\n", + "\tat com.databricks.rpc.ServerBackend.internalReceive0(ServerBackend.scala:171)\n", + "\tat com.databricks.rpc.ServerBackend.$anonfun$internalReceive$1(ServerBackend.scala:147)\n", + "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperation$1(UsageLogging.scala:510)\n", + "\tat com.databricks.logging.UsageLogging.executeThunkAndCaptureResultTags$1(UsageLogging.scala:616)\n", + "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperationWithResultTags$4(UsageLogging.scala:643)\n", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)\n", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)\n", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)\n", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)\n", + "\tat com.databricks.rpc.ServerBackend.withAttributionContext(ServerBackend.scala:22)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags(AttributionContextTracing.scala:96)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags$(AttributionContextTracing.scala:77)\n", + "\tat com.databricks.rpc.ServerBackend.withAttributionTags(ServerBackend.scala:22)\n", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags(UsageLogging.scala:611)\n", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags$(UsageLogging.scala:519)\n", + "\tat com.databricks.rpc.ServerBackend.recordOperationWithResultTags(ServerBackend.scala:22)\n", + "\tat com.databricks.logging.UsageLogging.recordOperation(UsageLogging.scala:511)\n", + "\tat com.databricks.logging.UsageLogging.recordOperation$(UsageLogging.scala:475)\n", + "\tat com.databricks.rpc.ServerBackend.recordOperation(ServerBackend.scala:22)\n", + "\tat com.databricks.rpc.ServerBackend.internalReceive(ServerBackend.scala:146)\n", + "\tat com.databricks.rpc.JettyServer$RequestManager.handleRPC(JettyServer.scala:1037)\n", + "\tat com.databricks.rpc.JettyServer$RequestManager.handleRequestAndRespond(JettyServer.scala:957)\n", + "\tat com.databricks.rpc.JettyServer$RequestManager.$anonfun$handleHttp$6(JettyServer.scala:552)\n", + "\tat com.databricks.rpc.JettyServer$RequestManager.$anonfun$handleHttp$6$adapted(JettyServer.scala:522)\n", + "\tat com.databricks.logging.activity.ActivityContextFactory$.$anonfun$withActivityInternal$12(ActivityContextFactory.scala:806)\n", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)\n", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)\n", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)\n", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)\n", + "\tat com.databricks.logging.activity.ActivityContextFactory$.withAttributionContext(ActivityContextFactory.scala:52)\n", + "\tat com.databricks.logging.activity.ActivityContextFactory$.$anonfun$withActivityInternal$2(ActivityContextFactory.scala:806)\n", + "\tat com.databricks.context.integrity.IntegrityCheckContext$ThreadLocalStorage$.withValue(IntegrityCheckContext.scala:73)\n", + "\tat com.databricks.logging.activity.ActivityContextFactory$.withActivityInternal(ActivityContextFactory.scala:769)\n", + "\tat com.databricks.logging.activity.ActivityContextFactory$.withActivityInternal(ActivityContextFactory.scala:751)\n", + "\tat com.databricks.logging.activity.ActivityContextFactory$.$anonfun$withServiceRequestActivity$15(ActivityContextFactory.scala:283)\n", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)\n", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)\n", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)\n", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)\n", + "\tat com.databricks.logging.activity.ActivityContextFactory$.withAttributionContext(ActivityContextFactory.scala:52)\n", + "\tat com.databricks.logging.activity.ActivityContextFactory$.withServiceRequestActivity(ActivityContextFactory.scala:283)\n", + "\tat com.databricks.rpc.JettyServer$RequestManager.handleHttp(JettyServer.scala:522)\n", + "\tat com.databricks.rpc.JettyServer$RequestManager.doPost(JettyServer.scala:415)\n", + "\tat javax.servlet.http.HttpServlet.service(HttpServlet.java:665)\n", + "\tat com.databricks.rpc.HttpServletWithPatch.service(HttpServletWithPatch.scala:33)\n", + "\tat javax.servlet.http.HttpServlet.service(HttpServlet.java:750)\n", + "\tat org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:799)\n", + "\tat org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:554)\n", + "\tat org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:190)\n", + "\tat org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:505)\n", + "\tat org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141)\n", + "\tat org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127)\n", + "\tat org.eclipse.jetty.server.Server.handle(Server.java:516)\n", + "\tat org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:487)\n", + "\tat org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:732)\n", + "\tat org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:479)\n", + "\tat org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:277)\n", + "\tat org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311)\n", + "\tat org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:105)\n", + "\tat org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:555)\n", + "\tat org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:410)\n", + "\tat org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:164)\n", + "\tat org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:105)\n", + "\tat org.eclipse.jetty.io.ChannelEndPoint$1.run(ChannelEndPoint.java:104)\n", + "\tat org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:338)\n", + "\tat org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:315)\n", + "\tat org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:173)\n", + "\tat org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:131)\n", + "\tat org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:409)\n", + "\tat com.databricks.rpc.InstrumentedQueuedThreadPool$$anon$1.$anonfun$run$2(InstrumentedQueuedThreadPool.scala:110)\n", + "\tat scala.runtime.java8.JFunction0$mcV$sp.apply(JFunction0$mcV$sp.java:23)\n", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)\n", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)\n", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)\n", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)\n", + "\tat com.databricks.rpc.InstrumentedQueuedThreadPool.withAttributionContext(InstrumentedQueuedThreadPool.scala:45)\n", + "\tat com.databricks.rpc.InstrumentedQueuedThreadPool$$anon$1.$anonfun$run$1(InstrumentedQueuedThreadPool.scala:110)\n", + "\tat scala.runtime.java8.JFunction0$mcV$sp.apply(JFunction0$mcV$sp.java:23)\n", + "\tat com.databricks.instrumentation.QueuedThreadPoolInstrumenter.trackActiveThreads(QueuedThreadPoolInstrumenter.scala:132)\n", + "\tat com.databricks.instrumentation.QueuedThreadPoolInstrumenter.trackActiveThreads$(QueuedThreadPoolInstrumenter.scala:129)\n", + "\tat com.databricks.rpc.InstrumentedQueuedThreadPool.trackActiveThreads(InstrumentedQueuedThreadPool.scala:45)\n", + "\tat com.databricks.rpc.InstrumentedQueuedThreadPool$$anon$1.run(InstrumentedQueuedThreadPool.scala:92)\n", + "\tat org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:883)\n", + "\tat org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:1034)\n", + "\tat java.base/java.lang.Thread.run(Thread.java:840)" + ] + }, + "metadata": { + "application/vnd.databricks.v1+output": { + "addedWidgets": {}, + "arguments": {}, + "datasetInfos": [], + "jupyterProps": null, + "metadata": { + "errorSummary": "Command skipped" + }, + "removedWidgets": [], + "sqlProps": null, + "stackFrames": [ + "com.databricks.backend.common.rpc.CommandSkippedException", + "\tat com.databricks.spark.chauffeur.SequenceExecutionState.$anonfun$cancel$3(SequenceExecutionState.scala:134)", + "\tat com.databricks.spark.chauffeur.SequenceExecutionState.$anonfun$cancel$3$adapted(SequenceExecutionState.scala:129)", + "\tat scala.collection.immutable.Range.foreach(Range.scala:158)", + "\tat com.databricks.spark.chauffeur.SequenceExecutionState.cancel(SequenceExecutionState.scala:129)", + "\tat com.databricks.spark.chauffeur.ExecContextState.cancelRunningSequence(ExecContextState.scala:715)", + "\tat com.databricks.spark.chauffeur.ExecContextState.$anonfun$cancel$1(ExecContextState.scala:435)", + "\tat scala.Option.getOrElse(Option.scala:189)", + "\tat com.databricks.spark.chauffeur.ExecContextState.cancel(ExecContextState.scala:435)", + "\tat com.databricks.spark.chauffeur.ExecutionContextManagerV1.cancelExecution(ExecutionContextManagerV1.scala:466)", + "\tat com.databricks.spark.chauffeur.ChauffeurState.$anonfun$process$1(ChauffeurState.scala:757)", + "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperation$1(UsageLogging.scala:510)", + "\tat com.databricks.logging.UsageLogging.executeThunkAndCaptureResultTags$1(UsageLogging.scala:616)", + "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperationWithResultTags$4(UsageLogging.scala:643)", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)", + "\tat com.databricks.spark.chauffeur.ChauffeurState.withAttributionContext(ChauffeurState.scala:83)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags(AttributionContextTracing.scala:96)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags$(AttributionContextTracing.scala:77)", + "\tat com.databricks.spark.chauffeur.ChauffeurState.withAttributionTags(ChauffeurState.scala:83)", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags(UsageLogging.scala:611)", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags$(UsageLogging.scala:519)", + "\tat com.databricks.spark.chauffeur.ChauffeurState.recordOperationWithResultTags(ChauffeurState.scala:83)", + "\tat com.databricks.logging.UsageLogging.recordOperation(UsageLogging.scala:511)", + "\tat com.databricks.logging.UsageLogging.recordOperation$(UsageLogging.scala:475)", + "\tat com.databricks.spark.chauffeur.ChauffeurState.recordOperation(ChauffeurState.scala:83)", + "\tat com.databricks.spark.chauffeur.ChauffeurState.process(ChauffeurState.scala:735)", + "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.handleDriverRequest$1(Chauffeur.scala:926)", + "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.$anonfun$applyOrElse$4(Chauffeur.scala:952)", + "\tat com.databricks.logging.UsageLogging.executeThunkAndCaptureResultTags$1(UsageLogging.scala:616)", + "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperationWithResultTags$4(UsageLogging.scala:643)", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)", + "\tat com.databricks.rpc.ServerBackend.withAttributionContext(ServerBackend.scala:22)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags(AttributionContextTracing.scala:96)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags$(AttributionContextTracing.scala:77)", + "\tat com.databricks.rpc.ServerBackend.withAttributionTags(ServerBackend.scala:22)", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags(UsageLogging.scala:611)", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags$(UsageLogging.scala:519)", + "\tat com.databricks.rpc.ServerBackend.recordOperationWithResultTags(ServerBackend.scala:22)", + "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.handleDriverRequestWithUsageLogging$1(Chauffeur.scala:951)", + "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.applyOrElse(Chauffeur.scala:1006)", + "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.applyOrElse(Chauffeur.scala:777)", + "\tat com.databricks.rpc.ServerBackend.$anonfun$internalReceive0$2(ServerBackend.scala:174)", + "\tat com.databricks.rpc.ServerBackend$$anonfun$commonReceive$1.applyOrElse(ServerBackend.scala:200)", + "\tat com.databricks.rpc.ServerBackend$$anonfun$commonReceive$1.applyOrElse(ServerBackend.scala:200)", + "\tat com.databricks.rpc.ServerBackend.internalReceive0(ServerBackend.scala:171)", + "\tat com.databricks.rpc.ServerBackend.$anonfun$internalReceive$1(ServerBackend.scala:147)", + "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperation$1(UsageLogging.scala:510)", + "\tat com.databricks.logging.UsageLogging.executeThunkAndCaptureResultTags$1(UsageLogging.scala:616)", + "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperationWithResultTags$4(UsageLogging.scala:643)", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)", + "\tat com.databricks.rpc.ServerBackend.withAttributionContext(ServerBackend.scala:22)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags(AttributionContextTracing.scala:96)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags$(AttributionContextTracing.scala:77)", + "\tat com.databricks.rpc.ServerBackend.withAttributionTags(ServerBackend.scala:22)", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags(UsageLogging.scala:611)", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags$(UsageLogging.scala:519)", + "\tat com.databricks.rpc.ServerBackend.recordOperationWithResultTags(ServerBackend.scala:22)", + "\tat com.databricks.logging.UsageLogging.recordOperation(UsageLogging.scala:511)", + "\tat com.databricks.logging.UsageLogging.recordOperation$(UsageLogging.scala:475)", + "\tat com.databricks.rpc.ServerBackend.recordOperation(ServerBackend.scala:22)", + "\tat com.databricks.rpc.ServerBackend.internalReceive(ServerBackend.scala:146)", + "\tat com.databricks.rpc.JettyServer$RequestManager.handleRPC(JettyServer.scala:1037)", + "\tat com.databricks.rpc.JettyServer$RequestManager.handleRequestAndRespond(JettyServer.scala:957)", + "\tat com.databricks.rpc.JettyServer$RequestManager.$anonfun$handleHttp$6(JettyServer.scala:552)", + "\tat com.databricks.rpc.JettyServer$RequestManager.$anonfun$handleHttp$6$adapted(JettyServer.scala:522)", + "\tat com.databricks.logging.activity.ActivityContextFactory$.$anonfun$withActivityInternal$12(ActivityContextFactory.scala:806)", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)", + "\tat com.databricks.logging.activity.ActivityContextFactory$.withAttributionContext(ActivityContextFactory.scala:52)", + "\tat com.databricks.logging.activity.ActivityContextFactory$.$anonfun$withActivityInternal$2(ActivityContextFactory.scala:806)", + "\tat com.databricks.context.integrity.IntegrityCheckContext$ThreadLocalStorage$.withValue(IntegrityCheckContext.scala:73)", + "\tat com.databricks.logging.activity.ActivityContextFactory$.withActivityInternal(ActivityContextFactory.scala:769)", + "\tat com.databricks.logging.activity.ActivityContextFactory$.withActivityInternal(ActivityContextFactory.scala:751)", + "\tat com.databricks.logging.activity.ActivityContextFactory$.$anonfun$withServiceRequestActivity$15(ActivityContextFactory.scala:283)", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)", + "\tat com.databricks.logging.activity.ActivityContextFactory$.withAttributionContext(ActivityContextFactory.scala:52)", + "\tat com.databricks.logging.activity.ActivityContextFactory$.withServiceRequestActivity(ActivityContextFactory.scala:283)", + "\tat com.databricks.rpc.JettyServer$RequestManager.handleHttp(JettyServer.scala:522)", + "\tat com.databricks.rpc.JettyServer$RequestManager.doPost(JettyServer.scala:415)", + "\tat javax.servlet.http.HttpServlet.service(HttpServlet.java:665)", + "\tat com.databricks.rpc.HttpServletWithPatch.service(HttpServletWithPatch.scala:33)", + "\tat javax.servlet.http.HttpServlet.service(HttpServlet.java:750)", + "\tat org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:799)", + "\tat org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:554)", + "\tat org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:190)", + "\tat org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:505)", + "\tat org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141)", + "\tat org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127)", + "\tat org.eclipse.jetty.server.Server.handle(Server.java:516)", + "\tat org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:487)", + "\tat org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:732)", + "\tat org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:479)", + "\tat org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:277)", + "\tat org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311)", + "\tat org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:105)", + "\tat org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:555)", + "\tat org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:410)", + "\tat org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:164)", + "\tat org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:105)", + "\tat org.eclipse.jetty.io.ChannelEndPoint$1.run(ChannelEndPoint.java:104)", + "\tat org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:338)", + "\tat org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:315)", + "\tat org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:173)", + "\tat org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:131)", + "\tat org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:409)", + "\tat com.databricks.rpc.InstrumentedQueuedThreadPool$$anon$1.$anonfun$run$2(InstrumentedQueuedThreadPool.scala:110)", + "\tat scala.runtime.java8.JFunction0$mcV$sp.apply(JFunction0$mcV$sp.java:23)", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)", + "\tat com.databricks.rpc.InstrumentedQueuedThreadPool.withAttributionContext(InstrumentedQueuedThreadPool.scala:45)", + "\tat com.databricks.rpc.InstrumentedQueuedThreadPool$$anon$1.$anonfun$run$1(InstrumentedQueuedThreadPool.scala:110)", + "\tat scala.runtime.java8.JFunction0$mcV$sp.apply(JFunction0$mcV$sp.java:23)", + "\tat com.databricks.instrumentation.QueuedThreadPoolInstrumenter.trackActiveThreads(QueuedThreadPoolInstrumenter.scala:132)", + "\tat com.databricks.instrumentation.QueuedThreadPoolInstrumenter.trackActiveThreads$(QueuedThreadPoolInstrumenter.scala:129)", + "\tat com.databricks.rpc.InstrumentedQueuedThreadPool.trackActiveThreads(InstrumentedQueuedThreadPool.scala:45)", + "\tat com.databricks.rpc.InstrumentedQueuedThreadPool$$anon$1.run(InstrumentedQueuedThreadPool.scala:92)", + "\tat org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:883)", + "\tat org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:1034)", + "\tat java.base/java.lang.Thread.run(Thread.java:840)" + ], + "type": "baseError" + } + }, + "output_type": "display_data" + } + ], + "source": [ + "def plot_score_distribution(scores, labels):\n", + " \"\"\"Plot score distribution by class.\"\"\"\n", + " fig, ax = plt.subplots(figsize=(8, 4))\n", + " ax.hist(scores[labels == 0], bins=40, alpha=0.6, label=\"No arb\", color=\"steelblue\")\n", + " ax.hist(scores[labels == 1], bins=40, alpha=0.6, label=\"Arbitrage\", color=\"coral\")\n", + " ax.set_xlabel(\"Predicted Score\")\n", + " ax.set_ylabel(\"Count\")\n", + " ax.set_title(\"Score Distribution by Class\")\n", + " ax.legend()\n", + " plt.tight_layout()\n", + " plt.close(fig)\n", + " return fig\n", + "\n", + "\n", + "def plot_accuracy_by_length(scores, labels, seq_lens):\n", + " \"\"\"Plot accuracy vs sequence length to verify longer = better.\"\"\"\n", + " fig, ax = plt.subplots(figsize=(8, 4))\n", + " preds = (scores > 0.5).astype(float)\n", + " correct = (preds == labels).astype(float)\n", + "\n", + " # Bin by sequence length\n", + " bins = np.arange(10, 130, 10)\n", + " bin_indices = np.digitize(seq_lens, bins)\n", + " bin_accs = []\n", + " bin_centers = []\n", + " for b in range(1, len(bins)):\n", + " mask = bin_indices == b\n", + " if mask.sum() > 5:\n", + " bin_accs.append(correct[mask].mean())\n", + " bin_centers.append((bins[b-1] + bins[b]) / 2)\n", + "\n", + " ax.plot(bin_centers, bin_accs, \"o-\", color=\"teal\", markersize=8)\n", + " ax.set_xlabel(\"Sequence Length\")\n", + " ax.set_ylabel(\"Accuracy\")\n", + " ax.set_title(\"Accuracy vs Sequence Length (Longer → Better)\")\n", + " ax.set_ylim(0, 1.05)\n", + " ax.grid(True, alpha=0.3)\n", + " plt.tight_layout()\n", + " plt.close(fig)\n", + " return fig\n", + "\n", + "\n", + "score_dist_plot = plot_score_distribution(all_scores, all_labels)\n", + "acc_by_len_plot = plot_accuracy_by_length(all_scores, all_labels, test_seq_lens)\n", + "print(\"Evaluation plots generated.\")\n" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "application/vnd.databricks.v1+cell": { + "cellMetadata": { + "byteLimit": 2048000, + "rowLimit": 10000 + }, + "inputWidgets": {}, + "nuid": "", + "showTitle": false, + "tableResultSettingsMap": {}, + "title": "" + } + }, + "source": [ + "## 8. Log the Model with MLflow\n", + "\n", + "Log all metrics, parameters, artifacts, and the model to MLflow." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "application/vnd.databricks.v1+cell": { + "cellMetadata": { + "byteLimit": 2048000, + "rowLimit": 10000 + }, + "inputWidgets": {}, + "nuid": "", + "showTitle": true, + "tableResultSettingsMap": {}, + "title": "Cell 24: MLflow Logging with Signature" + } + }, + "outputs": [], + "source": [ + "from mlflow.models import infer_signature\n", + "\n", + "with mlflow.start_run() as run:\n", + " mlflow_client = MlflowClient()\n", + " run_id = run.info.run_id\n", + "\n", + " # Log model architecture params\n", + " model_params = model.get_params()\n", + " mlflow.log_params(model_params)\n", + "\n", + " # Batch log metrics\n", + " current_time = int(time.time() * 1000)\n", + " metrics_list = [\n", + " Metric(\"test_auc_roc\", auc_roc, current_time, 0),\n", + " Metric(\"test_auc_pr\", auc_pr, current_time, 0),\n", + " Metric(\"test_f1\", f1, current_time, 0),\n", + " Metric(\"test_precision\", precision, current_time, 0),\n", + " Metric(\"test_recall\", recall, current_time, 0),\n", + " ]\n", + "\n", + " train_loss = trainer.callback_metrics.get(\"train_loss\")\n", + " val_loss = trainer.callback_metrics.get(\"val_loss\")\n", + " if train_loss is not None:\n", + " metrics_list.append(Metric(\"train_loss\", train_loss.item(), current_time, 0))\n", + " if val_loss is not None:\n", + " metrics_list.append(Metric(\"val_loss\", val_loss.item(), current_time, 0))\n", + "\n", + " params_list = [\n", + " Param(\"batch_size\", str(BATCH_SIZE)),\n", + " Param(\"max_epochs\", str(trainer.max_epochs)),\n", + " Param(\"actual_epochs\", str(trainer.current_epoch)),\n", + " Param(\"early_stopping_patience\", str(10)),\n", + " ]\n", + "\n", + " mlflow_client.log_batch(run_id, metrics=metrics_list, params=params_list)\n", + "\n", + " # Prepare input_example and sample output for signature\n", + " input_example = {\n", + " \"features\": batch[\"features\"][0].numpy(),\n", + " \"mask\": batch[\"mask\"][0].numpy(),\n", + " \"market_type\": batch[\"market_type\"][0].item()\n", + " }\n", + " sample_output = model(\n", + " batch[\"features\"][0].unsqueeze(0),\n", + " batch[\"mask\"][0].unsqueeze(0),\n", + " batch[\"market_type\"][0].unsqueeze(0)\n", + " ).detach().cpu().numpy()\n", + " signature = infer_signature(input_example, sample_output)\n", + "\n", + " model_info = mlflow.pytorch.log_model(\n", + " model,\n", + " name=\"model\",\n", + " registered_model_name=\"default.temporal_arbitrage_scorer\",\n", + " signature=signature,\n", + " )\n", + "\n", + " # Log all figures\n", + " mlflow.log_figure(sample_plot_pos, \"sample_odds_positive.png\")\n", + " mlflow.log_figure(sample_plot_neg, \"sample_odds_negative.png\")\n", + " mlflow.log_figure(feat_dist_plot, \"feature_distributions.png\")\n", + " mlflow.log_figure(seq_len_plot, \"seq_length_distribution.png\")\n", + " mlflow.log_figure(score_dist_plot, \"score_distribution.png\")\n", + " mlflow.log_figure(acc_by_len_plot, \"accuracy_by_seq_length.png\")\n", + "\n", + " print(f\"Best model logged: {model_info.model_uri}\")\n", + " print(f\"Test AUC-ROC: {auc_roc:.4f}\")\n", + " print(f\"Test F1: {f1:.4f}\")" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "application/vnd.databricks.v1+cell": { + "cellMetadata": { + "byteLimit": 2048000, + "rowLimit": 10000 + }, + "inputWidgets": {}, + "nuid": "", + "showTitle": false, + "tableResultSettingsMap": {}, + "title": "" + } + }, + "source": [ + "## 10. Pre-deployment Validation\n", + "\n", + "Validate that the registered model can be loaded and produces predictions." + ] + }, + { + "cell_type": "code", + "execution_count": 0, + "metadata": { + "application/vnd.databricks.v1+cell": { + "cellMetadata": { + "byteLimit": 2048000, + "rowLimit": 10000 + }, + "inputWidgets": {}, + "nuid": "", + "showTitle": false, + "tableResultSettingsMap": {}, + "title": "" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "com.databricks.backend.common.rpc.CommandSkippedException\n", + "\tat com.databricks.spark.chauffeur.SequenceExecutionState.$anonfun$cancel$3(SequenceExecutionState.scala:134)\n", + "\tat com.databricks.spark.chauffeur.SequenceExecutionState.$anonfun$cancel$3$adapted(SequenceExecutionState.scala:129)\n", + "\tat scala.collection.immutable.Range.foreach(Range.scala:158)\n", + "\tat com.databricks.spark.chauffeur.SequenceExecutionState.cancel(SequenceExecutionState.scala:129)\n", + "\tat com.databricks.spark.chauffeur.ExecContextState.cancelRunningSequence(ExecContextState.scala:715)\n", + "\tat com.databricks.spark.chauffeur.ExecContextState.$anonfun$cancel$1(ExecContextState.scala:435)\n", + "\tat scala.Option.getOrElse(Option.scala:189)\n", + "\tat com.databricks.spark.chauffeur.ExecContextState.cancel(ExecContextState.scala:435)\n", + "\tat com.databricks.spark.chauffeur.ExecutionContextManagerV1.cancelExecution(ExecutionContextManagerV1.scala:466)\n", + "\tat com.databricks.spark.chauffeur.ChauffeurState.$anonfun$process$1(ChauffeurState.scala:757)\n", + "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperation$1(UsageLogging.scala:510)\n", + "\tat com.databricks.logging.UsageLogging.executeThunkAndCaptureResultTags$1(UsageLogging.scala:616)\n", + "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperationWithResultTags$4(UsageLogging.scala:643)\n", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)\n", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)\n", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)\n", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)\n", + "\tat com.databricks.spark.chauffeur.ChauffeurState.withAttributionContext(ChauffeurState.scala:83)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags(AttributionContextTracing.scala:96)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags$(AttributionContextTracing.scala:77)\n", + "\tat com.databricks.spark.chauffeur.ChauffeurState.withAttributionTags(ChauffeurState.scala:83)\n", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags(UsageLogging.scala:611)\n", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags$(UsageLogging.scala:519)\n", + "\tat com.databricks.spark.chauffeur.ChauffeurState.recordOperationWithResultTags(ChauffeurState.scala:83)\n", + "\tat com.databricks.logging.UsageLogging.recordOperation(UsageLogging.scala:511)\n", + "\tat com.databricks.logging.UsageLogging.recordOperation$(UsageLogging.scala:475)\n", + "\tat com.databricks.spark.chauffeur.ChauffeurState.recordOperation(ChauffeurState.scala:83)\n", + "\tat com.databricks.spark.chauffeur.ChauffeurState.process(ChauffeurState.scala:735)\n", + "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.handleDriverRequest$1(Chauffeur.scala:926)\n", + "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.$anonfun$applyOrElse$4(Chauffeur.scala:952)\n", + "\tat com.databricks.logging.UsageLogging.executeThunkAndCaptureResultTags$1(UsageLogging.scala:616)\n", + "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperationWithResultTags$4(UsageLogging.scala:643)\n", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)\n", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)\n", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)\n", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)\n", + "\tat com.databricks.rpc.ServerBackend.withAttributionContext(ServerBackend.scala:22)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags(AttributionContextTracing.scala:96)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags$(AttributionContextTracing.scala:77)\n", + "\tat com.databricks.rpc.ServerBackend.withAttributionTags(ServerBackend.scala:22)\n", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags(UsageLogging.scala:611)\n", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags$(UsageLogging.scala:519)\n", + "\tat com.databricks.rpc.ServerBackend.recordOperationWithResultTags(ServerBackend.scala:22)\n", + "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.handleDriverRequestWithUsageLogging$1(Chauffeur.scala:951)\n", + "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.applyOrElse(Chauffeur.scala:1006)\n", + "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.applyOrElse(Chauffeur.scala:777)\n", + "\tat com.databricks.rpc.ServerBackend.$anonfun$internalReceive0$2(ServerBackend.scala:174)\n", + "\tat com.databricks.rpc.ServerBackend$$anonfun$commonReceive$1.applyOrElse(ServerBackend.scala:200)\n", + "\tat com.databricks.rpc.ServerBackend$$anonfun$commonReceive$1.applyOrElse(ServerBackend.scala:200)\n", + "\tat com.databricks.rpc.ServerBackend.internalReceive0(ServerBackend.scala:171)\n", + "\tat com.databricks.rpc.ServerBackend.$anonfun$internalReceive$1(ServerBackend.scala:147)\n", + "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperation$1(UsageLogging.scala:510)\n", + "\tat com.databricks.logging.UsageLogging.executeThunkAndCaptureResultTags$1(UsageLogging.scala:616)\n", + "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperationWithResultTags$4(UsageLogging.scala:643)\n", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)\n", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)\n", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)\n", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)\n", + "\tat com.databricks.rpc.ServerBackend.withAttributionContext(ServerBackend.scala:22)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags(AttributionContextTracing.scala:96)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags$(AttributionContextTracing.scala:77)\n", + "\tat com.databricks.rpc.ServerBackend.withAttributionTags(ServerBackend.scala:22)\n", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags(UsageLogging.scala:611)\n", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags$(UsageLogging.scala:519)\n", + "\tat com.databricks.rpc.ServerBackend.recordOperationWithResultTags(ServerBackend.scala:22)\n", + "\tat com.databricks.logging.UsageLogging.recordOperation(UsageLogging.scala:511)\n", + "\tat com.databricks.logging.UsageLogging.recordOperation$(UsageLogging.scala:475)\n", + "\tat com.databricks.rpc.ServerBackend.recordOperation(ServerBackend.scala:22)\n", + "\tat com.databricks.rpc.ServerBackend.internalReceive(ServerBackend.scala:146)\n", + "\tat com.databricks.rpc.JettyServer$RequestManager.handleRPC(JettyServer.scala:1037)\n", + "\tat com.databricks.rpc.JettyServer$RequestManager.handleRequestAndRespond(JettyServer.scala:957)\n", + "\tat com.databricks.rpc.JettyServer$RequestManager.$anonfun$handleHttp$6(JettyServer.scala:552)\n", + "\tat com.databricks.rpc.JettyServer$RequestManager.$anonfun$handleHttp$6$adapted(JettyServer.scala:522)\n", + "\tat com.databricks.logging.activity.ActivityContextFactory$.$anonfun$withActivityInternal$12(ActivityContextFactory.scala:806)\n", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)\n", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)\n", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)\n", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)\n", + "\tat com.databricks.logging.activity.ActivityContextFactory$.withAttributionContext(ActivityContextFactory.scala:52)\n", + "\tat com.databricks.logging.activity.ActivityContextFactory$.$anonfun$withActivityInternal$2(ActivityContextFactory.scala:806)\n", + "\tat com.databricks.context.integrity.IntegrityCheckContext$ThreadLocalStorage$.withValue(IntegrityCheckContext.scala:73)\n", + "\tat com.databricks.logging.activity.ActivityContextFactory$.withActivityInternal(ActivityContextFactory.scala:769)\n", + "\tat com.databricks.logging.activity.ActivityContextFactory$.withActivityInternal(ActivityContextFactory.scala:751)\n", + "\tat com.databricks.logging.activity.ActivityContextFactory$.$anonfun$withServiceRequestActivity$15(ActivityContextFactory.scala:283)\n", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)\n", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)\n", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)\n", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)\n", + "\tat com.databricks.logging.activity.ActivityContextFactory$.withAttributionContext(ActivityContextFactory.scala:52)\n", + "\tat com.databricks.logging.activity.ActivityContextFactory$.withServiceRequestActivity(ActivityContextFactory.scala:283)\n", + "\tat com.databricks.rpc.JettyServer$RequestManager.handleHttp(JettyServer.scala:522)\n", + "\tat com.databricks.rpc.JettyServer$RequestManager.doPost(JettyServer.scala:415)\n", + "\tat javax.servlet.http.HttpServlet.service(HttpServlet.java:665)\n", + "\tat com.databricks.rpc.HttpServletWithPatch.service(HttpServletWithPatch.scala:33)\n", + "\tat javax.servlet.http.HttpServlet.service(HttpServlet.java:750)\n", + "\tat org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:799)\n", + "\tat org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:554)\n", + "\tat org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:190)\n", + "\tat org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:505)\n", + "\tat org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141)\n", + "\tat org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127)\n", + "\tat org.eclipse.jetty.server.Server.handle(Server.java:516)\n", + "\tat org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:487)\n", + "\tat org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:732)\n", + "\tat org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:479)\n", + "\tat org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:277)\n", + "\tat org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311)\n", + "\tat org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:105)\n", + "\tat org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:555)\n", + "\tat org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:410)\n", + "\tat org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:164)\n", + "\tat org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:105)\n", + "\tat org.eclipse.jetty.io.ChannelEndPoint$1.run(ChannelEndPoint.java:104)\n", + "\tat org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:338)\n", + "\tat org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:315)\n", + "\tat org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:173)\n", + "\tat org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:131)\n", + "\tat org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:409)\n", + "\tat com.databricks.rpc.InstrumentedQueuedThreadPool$$anon$1.$anonfun$run$2(InstrumentedQueuedThreadPool.scala:110)\n", + "\tat scala.runtime.java8.JFunction0$mcV$sp.apply(JFunction0$mcV$sp.java:23)\n", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)\n", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)\n", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)\n", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)\n", + "\tat com.databricks.rpc.InstrumentedQueuedThreadPool.withAttributionContext(InstrumentedQueuedThreadPool.scala:45)\n", + "\tat com.databricks.rpc.InstrumentedQueuedThreadPool$$anon$1.$anonfun$run$1(InstrumentedQueuedThreadPool.scala:110)\n", + "\tat scala.runtime.java8.JFunction0$mcV$sp.apply(JFunction0$mcV$sp.java:23)\n", + "\tat com.databricks.instrumentation.QueuedThreadPoolInstrumenter.trackActiveThreads(QueuedThreadPoolInstrumenter.scala:132)\n", + "\tat com.databricks.instrumentation.QueuedThreadPoolInstrumenter.trackActiveThreads$(QueuedThreadPoolInstrumenter.scala:129)\n", + "\tat com.databricks.rpc.InstrumentedQueuedThreadPool.trackActiveThreads(InstrumentedQueuedThreadPool.scala:45)\n", + "\tat com.databricks.rpc.InstrumentedQueuedThreadPool$$anon$1.run(InstrumentedQueuedThreadPool.scala:92)\n", + "\tat org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:883)\n", + "\tat org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:1034)\n", + "\tat java.base/java.lang.Thread.run(Thread.java:840)" + ] + }, + "metadata": { + "application/vnd.databricks.v1+output": { + "addedWidgets": {}, + "arguments": {}, + "datasetInfos": [], + "jupyterProps": null, + "metadata": { + "errorSummary": "Command skipped" + }, + "removedWidgets": [], + "sqlProps": null, + "stackFrames": [ + "com.databricks.backend.common.rpc.CommandSkippedException", + "\tat com.databricks.spark.chauffeur.SequenceExecutionState.$anonfun$cancel$3(SequenceExecutionState.scala:134)", + "\tat com.databricks.spark.chauffeur.SequenceExecutionState.$anonfun$cancel$3$adapted(SequenceExecutionState.scala:129)", + "\tat scala.collection.immutable.Range.foreach(Range.scala:158)", + "\tat com.databricks.spark.chauffeur.SequenceExecutionState.cancel(SequenceExecutionState.scala:129)", + "\tat com.databricks.spark.chauffeur.ExecContextState.cancelRunningSequence(ExecContextState.scala:715)", + "\tat com.databricks.spark.chauffeur.ExecContextState.$anonfun$cancel$1(ExecContextState.scala:435)", + "\tat scala.Option.getOrElse(Option.scala:189)", + "\tat com.databricks.spark.chauffeur.ExecContextState.cancel(ExecContextState.scala:435)", + "\tat com.databricks.spark.chauffeur.ExecutionContextManagerV1.cancelExecution(ExecutionContextManagerV1.scala:466)", + "\tat com.databricks.spark.chauffeur.ChauffeurState.$anonfun$process$1(ChauffeurState.scala:757)", + "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperation$1(UsageLogging.scala:510)", + "\tat com.databricks.logging.UsageLogging.executeThunkAndCaptureResultTags$1(UsageLogging.scala:616)", + "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperationWithResultTags$4(UsageLogging.scala:643)", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)", + "\tat com.databricks.spark.chauffeur.ChauffeurState.withAttributionContext(ChauffeurState.scala:83)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags(AttributionContextTracing.scala:96)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags$(AttributionContextTracing.scala:77)", + "\tat com.databricks.spark.chauffeur.ChauffeurState.withAttributionTags(ChauffeurState.scala:83)", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags(UsageLogging.scala:611)", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags$(UsageLogging.scala:519)", + "\tat com.databricks.spark.chauffeur.ChauffeurState.recordOperationWithResultTags(ChauffeurState.scala:83)", + "\tat com.databricks.logging.UsageLogging.recordOperation(UsageLogging.scala:511)", + "\tat com.databricks.logging.UsageLogging.recordOperation$(UsageLogging.scala:475)", + "\tat com.databricks.spark.chauffeur.ChauffeurState.recordOperation(ChauffeurState.scala:83)", + "\tat com.databricks.spark.chauffeur.ChauffeurState.process(ChauffeurState.scala:735)", + "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.handleDriverRequest$1(Chauffeur.scala:926)", + "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.$anonfun$applyOrElse$4(Chauffeur.scala:952)", + "\tat com.databricks.logging.UsageLogging.executeThunkAndCaptureResultTags$1(UsageLogging.scala:616)", + "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperationWithResultTags$4(UsageLogging.scala:643)", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)", + "\tat com.databricks.rpc.ServerBackend.withAttributionContext(ServerBackend.scala:22)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags(AttributionContextTracing.scala:96)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags$(AttributionContextTracing.scala:77)", + "\tat com.databricks.rpc.ServerBackend.withAttributionTags(ServerBackend.scala:22)", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags(UsageLogging.scala:611)", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags$(UsageLogging.scala:519)", + "\tat com.databricks.rpc.ServerBackend.recordOperationWithResultTags(ServerBackend.scala:22)", + "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.handleDriverRequestWithUsageLogging$1(Chauffeur.scala:951)", + "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.applyOrElse(Chauffeur.scala:1006)", + "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.applyOrElse(Chauffeur.scala:777)", + "\tat com.databricks.rpc.ServerBackend.$anonfun$internalReceive0$2(ServerBackend.scala:174)", + "\tat com.databricks.rpc.ServerBackend$$anonfun$commonReceive$1.applyOrElse(ServerBackend.scala:200)", + "\tat com.databricks.rpc.ServerBackend$$anonfun$commonReceive$1.applyOrElse(ServerBackend.scala:200)", + "\tat com.databricks.rpc.ServerBackend.internalReceive0(ServerBackend.scala:171)", + "\tat com.databricks.rpc.ServerBackend.$anonfun$internalReceive$1(ServerBackend.scala:147)", + "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperation$1(UsageLogging.scala:510)", + "\tat com.databricks.logging.UsageLogging.executeThunkAndCaptureResultTags$1(UsageLogging.scala:616)", + "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperationWithResultTags$4(UsageLogging.scala:643)", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)", + "\tat com.databricks.rpc.ServerBackend.withAttributionContext(ServerBackend.scala:22)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags(AttributionContextTracing.scala:96)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags$(AttributionContextTracing.scala:77)", + "\tat com.databricks.rpc.ServerBackend.withAttributionTags(ServerBackend.scala:22)", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags(UsageLogging.scala:611)", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags$(UsageLogging.scala:519)", + "\tat com.databricks.rpc.ServerBackend.recordOperationWithResultTags(ServerBackend.scala:22)", + "\tat com.databricks.logging.UsageLogging.recordOperation(UsageLogging.scala:511)", + "\tat com.databricks.logging.UsageLogging.recordOperation$(UsageLogging.scala:475)", + "\tat com.databricks.rpc.ServerBackend.recordOperation(ServerBackend.scala:22)", + "\tat com.databricks.rpc.ServerBackend.internalReceive(ServerBackend.scala:146)", + "\tat com.databricks.rpc.JettyServer$RequestManager.handleRPC(JettyServer.scala:1037)", + "\tat com.databricks.rpc.JettyServer$RequestManager.handleRequestAndRespond(JettyServer.scala:957)", + "\tat com.databricks.rpc.JettyServer$RequestManager.$anonfun$handleHttp$6(JettyServer.scala:552)", + "\tat com.databricks.rpc.JettyServer$RequestManager.$anonfun$handleHttp$6$adapted(JettyServer.scala:522)", + "\tat com.databricks.logging.activity.ActivityContextFactory$.$anonfun$withActivityInternal$12(ActivityContextFactory.scala:806)", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)", + "\tat com.databricks.logging.activity.ActivityContextFactory$.withAttributionContext(ActivityContextFactory.scala:52)", + "\tat com.databricks.logging.activity.ActivityContextFactory$.$anonfun$withActivityInternal$2(ActivityContextFactory.scala:806)", + "\tat com.databricks.context.integrity.IntegrityCheckContext$ThreadLocalStorage$.withValue(IntegrityCheckContext.scala:73)", + "\tat com.databricks.logging.activity.ActivityContextFactory$.withActivityInternal(ActivityContextFactory.scala:769)", + "\tat com.databricks.logging.activity.ActivityContextFactory$.withActivityInternal(ActivityContextFactory.scala:751)", + "\tat com.databricks.logging.activity.ActivityContextFactory$.$anonfun$withServiceRequestActivity$15(ActivityContextFactory.scala:283)", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)", + "\tat com.databricks.logging.activity.ActivityContextFactory$.withAttributionContext(ActivityContextFactory.scala:52)", + "\tat com.databricks.logging.activity.ActivityContextFactory$.withServiceRequestActivity(ActivityContextFactory.scala:283)", + "\tat com.databricks.rpc.JettyServer$RequestManager.handleHttp(JettyServer.scala:522)", + "\tat com.databricks.rpc.JettyServer$RequestManager.doPost(JettyServer.scala:415)", + "\tat javax.servlet.http.HttpServlet.service(HttpServlet.java:665)", + "\tat com.databricks.rpc.HttpServletWithPatch.service(HttpServletWithPatch.scala:33)", + "\tat javax.servlet.http.HttpServlet.service(HttpServlet.java:750)", + "\tat org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:799)", + "\tat org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:554)", + "\tat org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:190)", + "\tat org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:505)", + "\tat org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141)", + "\tat org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127)", + "\tat org.eclipse.jetty.server.Server.handle(Server.java:516)", + "\tat org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:487)", + "\tat org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:732)", + "\tat org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:479)", + "\tat org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:277)", + "\tat org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311)", + "\tat org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:105)", + "\tat org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:555)", + "\tat org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:410)", + "\tat org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:164)", + "\tat org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:105)", + "\tat org.eclipse.jetty.io.ChannelEndPoint$1.run(ChannelEndPoint.java:104)", + "\tat org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:338)", + "\tat org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:315)", + "\tat org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:173)", + "\tat org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:131)", + "\tat org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:409)", + "\tat com.databricks.rpc.InstrumentedQueuedThreadPool$$anon$1.$anonfun$run$2(InstrumentedQueuedThreadPool.scala:110)", + "\tat scala.runtime.java8.JFunction0$mcV$sp.apply(JFunction0$mcV$sp.java:23)", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)", + "\tat com.databricks.rpc.InstrumentedQueuedThreadPool.withAttributionContext(InstrumentedQueuedThreadPool.scala:45)", + "\tat com.databricks.rpc.InstrumentedQueuedThreadPool$$anon$1.$anonfun$run$1(InstrumentedQueuedThreadPool.scala:110)", + "\tat scala.runtime.java8.JFunction0$mcV$sp.apply(JFunction0$mcV$sp.java:23)", + "\tat com.databricks.instrumentation.QueuedThreadPoolInstrumenter.trackActiveThreads(QueuedThreadPoolInstrumenter.scala:132)", + "\tat com.databricks.instrumentation.QueuedThreadPoolInstrumenter.trackActiveThreads$(QueuedThreadPoolInstrumenter.scala:129)", + "\tat com.databricks.rpc.InstrumentedQueuedThreadPool.trackActiveThreads(InstrumentedQueuedThreadPool.scala:45)", + "\tat com.databricks.rpc.InstrumentedQueuedThreadPool$$anon$1.run(InstrumentedQueuedThreadPool.scala:92)", + "\tat org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:883)", + "\tat org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:1034)", + "\tat java.base/java.lang.Thread.run(Thread.java:840)" + ], + "type": "baseError" + } + }, + "output_type": "display_data" + } + ], + "source": [ + "model_uri = \"models:/m-24afa884e98d444fbd545903c849420b\"\n", + "\n", + "# Load and test with a sample batch\n", + "loaded_model = mlflow.pytorch.load_model(model_uri)\n", + "loaded_model.eval()\n", + "\n", + "sample_batch = next(iter(test_loader))\n", + "with torch.no_grad():\n", + " sample_scores = loaded_model(\n", + " sample_batch[\"features\"], sample_batch[\"mask\"], sample_batch[\"market_type\"]\n", + " )\n", + "\n", + "print(f\"Sample predictions shape: {sample_scores.shape}\")\n", + "print(f\"Sample scores: {sample_scores[:5].numpy()}\")\n", + "print(f\"Sample labels: {sample_batch['label'][:5].numpy()}\")\n" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "application/vnd.databricks.v1+cell": { + "cellMetadata": { + "byteLimit": 2048000, + "rowLimit": 10000 + }, + "inputWidgets": {}, + "nuid": "33853421-d724-40f2-b9e5-49fad26ac2a7", + "showTitle": false, + "tableResultSettingsMap": {}, + "title": "" + } + }, + "source": [ + "## 9. Hyperparameter Tuning with Optuna\n", + "\n", + "Search over model size, learning rate, dropout, and architecture choices." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "application/vnd.databricks.v1+cell": { + "cellMetadata": { + "byteLimit": 2048000, + "rowLimit": 10000 + }, + "collapsed": true, + "inputWidgets": {}, + "nuid": "eaf3716c-c1b7-4517-9c98-a51a52ee9bf8", + "showTitle": false, + "tableResultSettingsMap": {}, + "title": "" + } + }, + "outputs": [], + "source": [ + "class PruningCallback(pl.Callback):\n", + " \"\"\"Prune unpromising Optuna trials during training.\"\"\"\n", + "\n", + " def __init__(self, trial, monitor):\n", + " super().__init__()\n", + " self._trial = trial\n", + " self.monitor = monitor\n", + "\n", + " def on_validation_end(self, trainer, pl_module):\n", + " current = trainer.callback_metrics.get(self.monitor)\n", + " if current is not None:\n", + " self._trial.report(current.item(), trainer.current_epoch)\n", + " if self._trial.should_prune():\n", + " raise optuna.TrialPruned(f\"Pruned at epoch {trainer.current_epoch}\")\n", + "\n", + "\n", + "def objective(trial):\n", + " \"\"\"Optuna objective: minimize validation loss.\"\"\"\n", + " # Search space\n", + " d_model = trial.suggest_categorical(\"d_model\", [32, 64, 128])\n", + " n_heads = trial.suggest_categorical(\"n_heads\", [2, 4, 8])\n", + " n_layers = trial.suggest_int(\"n_layers\", 2, 5)\n", + " d_ff = trial.suggest_categorical(\"d_ff\", [128, 256, 512])\n", + " dropout = trial.suggest_float(\"dropout\", 0.0, 0.4)\n", + " lr = trial.suggest_float(\"learning_rate\", 1e-4, 5e-3, log=True)\n", + " wd = trial.suggest_float(\"weight_decay\", 1e-6, 1e-3, log=True)\n", + " cross_start = trial.suggest_int(\"cross_attn_start_layer\", 0, max(0, n_layers - 1))\n", + "\n", + " # Ensure d_model divisible by n_heads\n", + " if d_model % n_heads != 0:\n", + " raise optuna.TrialPruned(\"d_model not divisible by n_heads\")\n", + "\n", + " with mlflow.start_run(nested=True) as child_run:\n", + " mlflow_client = MlflowClient()\n", + " run_id = child_run.info.run_id\n", + "\n", + " param_dict = {\n", + " \"d_model\": d_model, \"n_heads\": n_heads, \"n_layers\": n_layers,\n", + " \"d_ff\": d_ff, \"dropout\": dropout, \"learning_rate\": lr,\n", + " \"weight_decay\": wd, \"cross_attn_start_layer\": cross_start,\n", + " }\n", + " params_list = [Param(k, str(v)) for k, v in param_dict.items()]\n", + "\n", + " trial_model = ArbitrageLightningModule(\n", + " n_input_features=N_INPUT_FEATURES,\n", + " d_model=d_model,\n", + " n_heads=n_heads,\n", + " n_layers=n_layers,\n", + " d_ff=d_ff,\n", + " dropout=dropout,\n", + " learning_rate=lr,\n", + " weight_decay=wd,\n", + " cross_attn_start_layer=cross_start,\n", + " )\n", + "\n", + " trial_trainer = pl.Trainer(\n", + " max_epochs=40,\n", + " callbacks=[\n", + " EarlyStopping(monitor=\"val_loss\", patience=5, mode=\"min\"),\n", + " PruningCallback(trial, monitor=\"val_loss\"),\n", + " ],\n", + " enable_progress_bar=False,\n", + " log_every_n_steps=10,\n", + " )\n", + "\n", + " trial_trainer.fit(trial_model, train_loader, val_loader)\n", + "\n", + " best_val_loss = trial_trainer.callback_metrics.get(\"val_loss\").item()\n", + "\n", + " current_time = int(time.time() * 1000)\n", + " mlflow_client.log_batch(\n", + " run_id,\n", + " metrics=[Metric(\"val_loss\", best_val_loss, current_time, 0)],\n", + " params=params_list,\n", + " )\n", + "\n", + " trial.set_user_attr(\"model\", trial_model)\n", + " return best_val_loss" + ] + }, + { + "cell_type": "code", + "execution_count": 0, + "metadata": { + "application/vnd.databricks.v1+cell": { + "cellMetadata": { + "byteLimit": 2048000, + "rowLimit": 10000 + }, + "collapsed": true, + "inputWidgets": {}, + "nuid": "", + "showTitle": false, + "tableResultSettingsMap": {}, + "title": "" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "com.databricks.backend.common.rpc.CommandSkippedException\n", + "\tat com.databricks.spark.chauffeur.SequenceExecutionState.$anonfun$cancel$3(SequenceExecutionState.scala:134)\n", + "\tat com.databricks.spark.chauffeur.SequenceExecutionState.$anonfun$cancel$3$adapted(SequenceExecutionState.scala:129)\n", + "\tat scala.collection.immutable.Range.foreach(Range.scala:158)\n", + "\tat com.databricks.spark.chauffeur.SequenceExecutionState.cancel(SequenceExecutionState.scala:129)\n", + "\tat com.databricks.spark.chauffeur.ExecContextState.cancelRunningSequence(ExecContextState.scala:715)\n", + "\tat com.databricks.spark.chauffeur.ExecContextState.$anonfun$cancel$1(ExecContextState.scala:435)\n", + "\tat scala.Option.getOrElse(Option.scala:189)\n", + "\tat com.databricks.spark.chauffeur.ExecContextState.cancel(ExecContextState.scala:435)\n", + "\tat com.databricks.spark.chauffeur.ExecutionContextManagerV1.cancelExecution(ExecutionContextManagerV1.scala:466)\n", + "\tat com.databricks.spark.chauffeur.ChauffeurState.$anonfun$process$1(ChauffeurState.scala:757)\n", + "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperation$1(UsageLogging.scala:510)\n", + "\tat com.databricks.logging.UsageLogging.executeThunkAndCaptureResultTags$1(UsageLogging.scala:616)\n", + "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperationWithResultTags$4(UsageLogging.scala:643)\n", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)\n", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)\n", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)\n", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)\n", + "\tat com.databricks.spark.chauffeur.ChauffeurState.withAttributionContext(ChauffeurState.scala:83)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags(AttributionContextTracing.scala:96)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags$(AttributionContextTracing.scala:77)\n", + "\tat com.databricks.spark.chauffeur.ChauffeurState.withAttributionTags(ChauffeurState.scala:83)\n", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags(UsageLogging.scala:611)\n", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags$(UsageLogging.scala:519)\n", + "\tat com.databricks.spark.chauffeur.ChauffeurState.recordOperationWithResultTags(ChauffeurState.scala:83)\n", + "\tat com.databricks.logging.UsageLogging.recordOperation(UsageLogging.scala:511)\n", + "\tat com.databricks.logging.UsageLogging.recordOperation$(UsageLogging.scala:475)\n", + "\tat com.databricks.spark.chauffeur.ChauffeurState.recordOperation(ChauffeurState.scala:83)\n", + "\tat com.databricks.spark.chauffeur.ChauffeurState.process(ChauffeurState.scala:735)\n", + "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.handleDriverRequest$1(Chauffeur.scala:926)\n", + "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.$anonfun$applyOrElse$4(Chauffeur.scala:952)\n", + "\tat com.databricks.logging.UsageLogging.executeThunkAndCaptureResultTags$1(UsageLogging.scala:616)\n", + "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperationWithResultTags$4(UsageLogging.scala:643)\n", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)\n", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)\n", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)\n", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)\n", + "\tat com.databricks.rpc.ServerBackend.withAttributionContext(ServerBackend.scala:22)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags(AttributionContextTracing.scala:96)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags$(AttributionContextTracing.scala:77)\n", + "\tat com.databricks.rpc.ServerBackend.withAttributionTags(ServerBackend.scala:22)\n", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags(UsageLogging.scala:611)\n", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags$(UsageLogging.scala:519)\n", + "\tat com.databricks.rpc.ServerBackend.recordOperationWithResultTags(ServerBackend.scala:22)\n", + "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.handleDriverRequestWithUsageLogging$1(Chauffeur.scala:951)\n", + "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.applyOrElse(Chauffeur.scala:1006)\n", + "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.applyOrElse(Chauffeur.scala:777)\n", + "\tat com.databricks.rpc.ServerBackend.$anonfun$internalReceive0$2(ServerBackend.scala:174)\n", + "\tat com.databricks.rpc.ServerBackend$$anonfun$commonReceive$1.applyOrElse(ServerBackend.scala:200)\n", + "\tat com.databricks.rpc.ServerBackend$$anonfun$commonReceive$1.applyOrElse(ServerBackend.scala:200)\n", + "\tat com.databricks.rpc.ServerBackend.internalReceive0(ServerBackend.scala:171)\n", + "\tat com.databricks.rpc.ServerBackend.$anonfun$internalReceive$1(ServerBackend.scala:147)\n", + "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperation$1(UsageLogging.scala:510)\n", + "\tat com.databricks.logging.UsageLogging.executeThunkAndCaptureResultTags$1(UsageLogging.scala:616)\n", + "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperationWithResultTags$4(UsageLogging.scala:643)\n", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)\n", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)\n", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)\n", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)\n", + "\tat com.databricks.rpc.ServerBackend.withAttributionContext(ServerBackend.scala:22)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags(AttributionContextTracing.scala:96)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags$(AttributionContextTracing.scala:77)\n", + "\tat com.databricks.rpc.ServerBackend.withAttributionTags(ServerBackend.scala:22)\n", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags(UsageLogging.scala:611)\n", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags$(UsageLogging.scala:519)\n", + "\tat com.databricks.rpc.ServerBackend.recordOperationWithResultTags(ServerBackend.scala:22)\n", + "\tat com.databricks.logging.UsageLogging.recordOperation(UsageLogging.scala:511)\n", + "\tat com.databricks.logging.UsageLogging.recordOperation$(UsageLogging.scala:475)\n", + "\tat com.databricks.rpc.ServerBackend.recordOperation(ServerBackend.scala:22)\n", + "\tat com.databricks.rpc.ServerBackend.internalReceive(ServerBackend.scala:146)\n", + "\tat com.databricks.rpc.JettyServer$RequestManager.handleRPC(JettyServer.scala:1037)\n", + "\tat com.databricks.rpc.JettyServer$RequestManager.handleRequestAndRespond(JettyServer.scala:957)\n", + "\tat com.databricks.rpc.JettyServer$RequestManager.$anonfun$handleHttp$6(JettyServer.scala:552)\n", + "\tat com.databricks.rpc.JettyServer$RequestManager.$anonfun$handleHttp$6$adapted(JettyServer.scala:522)\n", + "\tat com.databricks.logging.activity.ActivityContextFactory$.$anonfun$withActivityInternal$12(ActivityContextFactory.scala:806)\n", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)\n", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)\n", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)\n", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)\n", + "\tat com.databricks.logging.activity.ActivityContextFactory$.withAttributionContext(ActivityContextFactory.scala:52)\n", + "\tat com.databricks.logging.activity.ActivityContextFactory$.$anonfun$withActivityInternal$2(ActivityContextFactory.scala:806)\n", + "\tat com.databricks.context.integrity.IntegrityCheckContext$ThreadLocalStorage$.withValue(IntegrityCheckContext.scala:73)\n", + "\tat com.databricks.logging.activity.ActivityContextFactory$.withActivityInternal(ActivityContextFactory.scala:769)\n", + "\tat com.databricks.logging.activity.ActivityContextFactory$.withActivityInternal(ActivityContextFactory.scala:751)\n", + "\tat com.databricks.logging.activity.ActivityContextFactory$.$anonfun$withServiceRequestActivity$15(ActivityContextFactory.scala:283)\n", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)\n", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)\n", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)\n", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)\n", + "\tat com.databricks.logging.activity.ActivityContextFactory$.withAttributionContext(ActivityContextFactory.scala:52)\n", + "\tat com.databricks.logging.activity.ActivityContextFactory$.withServiceRequestActivity(ActivityContextFactory.scala:283)\n", + "\tat com.databricks.rpc.JettyServer$RequestManager.handleHttp(JettyServer.scala:522)\n", + "\tat com.databricks.rpc.JettyServer$RequestManager.doPost(JettyServer.scala:415)\n", + "\tat javax.servlet.http.HttpServlet.service(HttpServlet.java:665)\n", + "\tat com.databricks.rpc.HttpServletWithPatch.service(HttpServletWithPatch.scala:33)\n", + "\tat javax.servlet.http.HttpServlet.service(HttpServlet.java:750)\n", + "\tat org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:799)\n", + "\tat org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:554)\n", + "\tat org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:190)\n", + "\tat org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:505)\n", + "\tat org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141)\n", + "\tat org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127)\n", + "\tat org.eclipse.jetty.server.Server.handle(Server.java:516)\n", + "\tat org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:487)\n", + "\tat org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:732)\n", + "\tat org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:479)\n", + "\tat org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:277)\n", + "\tat org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311)\n", + "\tat org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:105)\n", + "\tat org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:555)\n", + "\tat org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:410)\n", + "\tat org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:164)\n", + "\tat org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:105)\n", + "\tat org.eclipse.jetty.io.ChannelEndPoint$1.run(ChannelEndPoint.java:104)\n", + "\tat org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:338)\n", + "\tat org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:315)\n", + "\tat org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:173)\n", + "\tat org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:131)\n", + "\tat org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:409)\n", + "\tat com.databricks.rpc.InstrumentedQueuedThreadPool$$anon$1.$anonfun$run$2(InstrumentedQueuedThreadPool.scala:110)\n", + "\tat scala.runtime.java8.JFunction0$mcV$sp.apply(JFunction0$mcV$sp.java:23)\n", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)\n", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)\n", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)\n", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)\n", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)\n", + "\tat com.databricks.rpc.InstrumentedQueuedThreadPool.withAttributionContext(InstrumentedQueuedThreadPool.scala:45)\n", + "\tat com.databricks.rpc.InstrumentedQueuedThreadPool$$anon$1.$anonfun$run$1(InstrumentedQueuedThreadPool.scala:110)\n", + "\tat scala.runtime.java8.JFunction0$mcV$sp.apply(JFunction0$mcV$sp.java:23)\n", + "\tat com.databricks.instrumentation.QueuedThreadPoolInstrumenter.trackActiveThreads(QueuedThreadPoolInstrumenter.scala:132)\n", + "\tat com.databricks.instrumentation.QueuedThreadPoolInstrumenter.trackActiveThreads$(QueuedThreadPoolInstrumenter.scala:129)\n", + "\tat com.databricks.rpc.InstrumentedQueuedThreadPool.trackActiveThreads(InstrumentedQueuedThreadPool.scala:45)\n", + "\tat com.databricks.rpc.InstrumentedQueuedThreadPool$$anon$1.run(InstrumentedQueuedThreadPool.scala:92)\n", + "\tat org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:883)\n", + "\tat org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:1034)\n", + "\tat java.base/java.lang.Thread.run(Thread.java:840)" + ] + }, + "metadata": { + "application/vnd.databricks.v1+output": { + "addedWidgets": {}, + "arguments": {}, + "datasetInfos": [], + "jupyterProps": null, + "metadata": { + "errorSummary": "Command skipped" + }, + "removedWidgets": [], + "sqlProps": null, + "stackFrames": [ + "com.databricks.backend.common.rpc.CommandSkippedException", + "\tat com.databricks.spark.chauffeur.SequenceExecutionState.$anonfun$cancel$3(SequenceExecutionState.scala:134)", + "\tat com.databricks.spark.chauffeur.SequenceExecutionState.$anonfun$cancel$3$adapted(SequenceExecutionState.scala:129)", + "\tat scala.collection.immutable.Range.foreach(Range.scala:158)", + "\tat com.databricks.spark.chauffeur.SequenceExecutionState.cancel(SequenceExecutionState.scala:129)", + "\tat com.databricks.spark.chauffeur.ExecContextState.cancelRunningSequence(ExecContextState.scala:715)", + "\tat com.databricks.spark.chauffeur.ExecContextState.$anonfun$cancel$1(ExecContextState.scala:435)", + "\tat scala.Option.getOrElse(Option.scala:189)", + "\tat com.databricks.spark.chauffeur.ExecContextState.cancel(ExecContextState.scala:435)", + "\tat com.databricks.spark.chauffeur.ExecutionContextManagerV1.cancelExecution(ExecutionContextManagerV1.scala:466)", + "\tat com.databricks.spark.chauffeur.ChauffeurState.$anonfun$process$1(ChauffeurState.scala:757)", + "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperation$1(UsageLogging.scala:510)", + "\tat com.databricks.logging.UsageLogging.executeThunkAndCaptureResultTags$1(UsageLogging.scala:616)", + "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperationWithResultTags$4(UsageLogging.scala:643)", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)", + "\tat com.databricks.spark.chauffeur.ChauffeurState.withAttributionContext(ChauffeurState.scala:83)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags(AttributionContextTracing.scala:96)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags$(AttributionContextTracing.scala:77)", + "\tat com.databricks.spark.chauffeur.ChauffeurState.withAttributionTags(ChauffeurState.scala:83)", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags(UsageLogging.scala:611)", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags$(UsageLogging.scala:519)", + "\tat com.databricks.spark.chauffeur.ChauffeurState.recordOperationWithResultTags(ChauffeurState.scala:83)", + "\tat com.databricks.logging.UsageLogging.recordOperation(UsageLogging.scala:511)", + "\tat com.databricks.logging.UsageLogging.recordOperation$(UsageLogging.scala:475)", + "\tat com.databricks.spark.chauffeur.ChauffeurState.recordOperation(ChauffeurState.scala:83)", + "\tat com.databricks.spark.chauffeur.ChauffeurState.process(ChauffeurState.scala:735)", + "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.handleDriverRequest$1(Chauffeur.scala:926)", + "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.$anonfun$applyOrElse$4(Chauffeur.scala:952)", + "\tat com.databricks.logging.UsageLogging.executeThunkAndCaptureResultTags$1(UsageLogging.scala:616)", + "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperationWithResultTags$4(UsageLogging.scala:643)", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)", + "\tat com.databricks.rpc.ServerBackend.withAttributionContext(ServerBackend.scala:22)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags(AttributionContextTracing.scala:96)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags$(AttributionContextTracing.scala:77)", + "\tat com.databricks.rpc.ServerBackend.withAttributionTags(ServerBackend.scala:22)", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags(UsageLogging.scala:611)", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags$(UsageLogging.scala:519)", + "\tat com.databricks.rpc.ServerBackend.recordOperationWithResultTags(ServerBackend.scala:22)", + "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.handleDriverRequestWithUsageLogging$1(Chauffeur.scala:951)", + "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.applyOrElse(Chauffeur.scala:1006)", + "\tat com.databricks.spark.chauffeur.Chauffeur$$anon$1$$anonfun$receive$1.applyOrElse(Chauffeur.scala:777)", + "\tat com.databricks.rpc.ServerBackend.$anonfun$internalReceive0$2(ServerBackend.scala:174)", + "\tat com.databricks.rpc.ServerBackend$$anonfun$commonReceive$1.applyOrElse(ServerBackend.scala:200)", + "\tat com.databricks.rpc.ServerBackend$$anonfun$commonReceive$1.applyOrElse(ServerBackend.scala:200)", + "\tat com.databricks.rpc.ServerBackend.internalReceive0(ServerBackend.scala:171)", + "\tat com.databricks.rpc.ServerBackend.$anonfun$internalReceive$1(ServerBackend.scala:147)", + "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperation$1(UsageLogging.scala:510)", + "\tat com.databricks.logging.UsageLogging.executeThunkAndCaptureResultTags$1(UsageLogging.scala:616)", + "\tat com.databricks.logging.UsageLogging.$anonfun$recordOperationWithResultTags$4(UsageLogging.scala:643)", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)", + "\tat com.databricks.rpc.ServerBackend.withAttributionContext(ServerBackend.scala:22)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags(AttributionContextTracing.scala:96)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionTags$(AttributionContextTracing.scala:77)", + "\tat com.databricks.rpc.ServerBackend.withAttributionTags(ServerBackend.scala:22)", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags(UsageLogging.scala:611)", + "\tat com.databricks.logging.UsageLogging.recordOperationWithResultTags$(UsageLogging.scala:519)", + "\tat com.databricks.rpc.ServerBackend.recordOperationWithResultTags(ServerBackend.scala:22)", + "\tat com.databricks.logging.UsageLogging.recordOperation(UsageLogging.scala:511)", + "\tat com.databricks.logging.UsageLogging.recordOperation$(UsageLogging.scala:475)", + "\tat com.databricks.rpc.ServerBackend.recordOperation(ServerBackend.scala:22)", + "\tat com.databricks.rpc.ServerBackend.internalReceive(ServerBackend.scala:146)", + "\tat com.databricks.rpc.JettyServer$RequestManager.handleRPC(JettyServer.scala:1037)", + "\tat com.databricks.rpc.JettyServer$RequestManager.handleRequestAndRespond(JettyServer.scala:957)", + "\tat com.databricks.rpc.JettyServer$RequestManager.$anonfun$handleHttp$6(JettyServer.scala:552)", + "\tat com.databricks.rpc.JettyServer$RequestManager.$anonfun$handleHttp$6$adapted(JettyServer.scala:522)", + "\tat com.databricks.logging.activity.ActivityContextFactory$.$anonfun$withActivityInternal$12(ActivityContextFactory.scala:806)", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)", + "\tat com.databricks.logging.activity.ActivityContextFactory$.withAttributionContext(ActivityContextFactory.scala:52)", + "\tat com.databricks.logging.activity.ActivityContextFactory$.$anonfun$withActivityInternal$2(ActivityContextFactory.scala:806)", + "\tat com.databricks.context.integrity.IntegrityCheckContext$ThreadLocalStorage$.withValue(IntegrityCheckContext.scala:73)", + "\tat com.databricks.logging.activity.ActivityContextFactory$.withActivityInternal(ActivityContextFactory.scala:769)", + "\tat com.databricks.logging.activity.ActivityContextFactory$.withActivityInternal(ActivityContextFactory.scala:751)", + "\tat com.databricks.logging.activity.ActivityContextFactory$.$anonfun$withServiceRequestActivity$15(ActivityContextFactory.scala:283)", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)", + "\tat com.databricks.logging.activity.ActivityContextFactory$.withAttributionContext(ActivityContextFactory.scala:52)", + "\tat com.databricks.logging.activity.ActivityContextFactory$.withServiceRequestActivity(ActivityContextFactory.scala:283)", + "\tat com.databricks.rpc.JettyServer$RequestManager.handleHttp(JettyServer.scala:522)", + "\tat com.databricks.rpc.JettyServer$RequestManager.doPost(JettyServer.scala:415)", + "\tat javax.servlet.http.HttpServlet.service(HttpServlet.java:665)", + "\tat com.databricks.rpc.HttpServletWithPatch.service(HttpServletWithPatch.scala:33)", + "\tat javax.servlet.http.HttpServlet.service(HttpServlet.java:750)", + "\tat org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:799)", + "\tat org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:554)", + "\tat org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:190)", + "\tat org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:505)", + "\tat org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141)", + "\tat org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127)", + "\tat org.eclipse.jetty.server.Server.handle(Server.java:516)", + "\tat org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:487)", + "\tat org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:732)", + "\tat org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:479)", + "\tat org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:277)", + "\tat org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311)", + "\tat org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:105)", + "\tat org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:555)", + "\tat org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:410)", + "\tat org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:164)", + "\tat org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:105)", + "\tat org.eclipse.jetty.io.ChannelEndPoint$1.run(ChannelEndPoint.java:104)", + "\tat org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:338)", + "\tat org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:315)", + "\tat org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:173)", + "\tat org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:131)", + "\tat org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:409)", + "\tat com.databricks.rpc.InstrumentedQueuedThreadPool$$anon$1.$anonfun$run$2(InstrumentedQueuedThreadPool.scala:110)", + "\tat scala.runtime.java8.JFunction0$mcV$sp.apply(JFunction0$mcV$sp.java:23)", + "\tat com.databricks.logging.AttributionContextTracing.$anonfun$withAttributionContext$1(AttributionContextTracing.scala:49)", + "\tat com.databricks.logging.AttributionContext$.$anonfun$withValue$1(AttributionContext.scala:293)", + "\tat scala.util.DynamicVariable.withValue(DynamicVariable.scala:62)", + "\tat com.databricks.logging.AttributionContext$.withValue(AttributionContext.scala:289)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext(AttributionContextTracing.scala:47)", + "\tat com.databricks.logging.AttributionContextTracing.withAttributionContext$(AttributionContextTracing.scala:44)", + "\tat com.databricks.rpc.InstrumentedQueuedThreadPool.withAttributionContext(InstrumentedQueuedThreadPool.scala:45)", + "\tat com.databricks.rpc.InstrumentedQueuedThreadPool$$anon$1.$anonfun$run$1(InstrumentedQueuedThreadPool.scala:110)", + "\tat scala.runtime.java8.JFunction0$mcV$sp.apply(JFunction0$mcV$sp.java:23)", + "\tat com.databricks.instrumentation.QueuedThreadPoolInstrumenter.trackActiveThreads(QueuedThreadPoolInstrumenter.scala:132)", + "\tat com.databricks.instrumentation.QueuedThreadPoolInstrumenter.trackActiveThreads$(QueuedThreadPoolInstrumenter.scala:129)", + "\tat com.databricks.rpc.InstrumentedQueuedThreadPool.trackActiveThreads(InstrumentedQueuedThreadPool.scala:45)", + "\tat com.databricks.rpc.InstrumentedQueuedThreadPool$$anon$1.run(InstrumentedQueuedThreadPool.scala:92)", + "\tat org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:883)", + "\tat org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:1034)", + "\tat java.base/java.lang.Thread.run(Thread.java:840)" + ], + "type": "baseError" + } + }, + "output_type": "display_data" + } + ], + "source": [ + "from mlflow import MlflowClient\n", + "study = optuna.create_study(direction=\"minimize\")\n", + "study.optimize(objective, n_trials=15)\n", + "\n", + "best_trial = study.best_trial\n", + "best_model = best_trial.user_attrs[\"model\"]\n", + "\n", + "\n", + "model_info = mlflow.pytorch.log_model(\n", + " best_model,\n", + " artifact_path=\"model\",\n", + " registered_model_name=\"demo.temporal_arbitrage_scorer_optimized\",\n", + " )\n", + " \n", + "best_model_version = model_info.registered_model_version\n", + "client = MlflowClient()\n", + "client.set_registered_model_alias(\n", + " \"default.temporal_arbitrage_scorer_optimized\", \"best\", int(best_model_version) if best_model_version is not None else 1\n", + ")\n" + ] + }, + { + "cell_type": "markdown", + "source": "## 11. Export Checkpoint for Local Inference\n\nSave the trained model as a `.ckpt` file that can be loaded by the FastAPI backend\nwithout any Databricks or MLflow dependencies.", + "metadata": {} + }, + { + "cell_type": "code", + "source": "# Save the best checkpoint from the baseline trainer for local serving.\n# After running this cell, copy the file to Backend/models/model.ckpt\n#\n# cp model.ckpt ../Backend/models/model.ckpt\n\ntrainer.save_checkpoint(\"model.ckpt\")\nprint(f\"Checkpoint saved to model.ckpt\")\nprint(\"Copy it to Backend/models/model.ckpt for local FastAPI inference.\")", + "metadata": {}, + "execution_count": null, + "outputs": [] + } + ], + "metadata": { + "application/vnd.databricks.v1+notebook": { + "computePreferences": null, + "dashboards": [], + "environmentMetadata": null, + "inputWidgetPreferences": null, + "language": "python", + "notebookMetadata": { + "pythonIndentUnit": 4 + }, + "notebookName": "arbitrage_detection_notebook", + "widgets": {} + }, + "kernelspec": { + "display_name": "hacklytics", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.7" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} \ No newline at end of file diff --git a/Backend/scripts/__init__.py b/ML_model/scripts/__init__.py similarity index 100% rename from Backend/scripts/__init__.py rename to ML_model/scripts/__init__.py diff --git a/ML_model/scripts/arb_analytics.md b/ML_model/scripts/arb_analytics.md new file mode 100644 index 0000000..44e22ee --- /dev/null +++ b/ML_model/scripts/arb_analytics.md @@ -0,0 +1,21 @@ +# Dataset for Classifying Future Mispricing Events + +Training Features +- datetime +- game_start (same as datetime if predicting for a future game) +- league +- team_a +- team_b +- points_spread (0 if future game) +- points_total (0 if future game) +- game_duration (fraction of the game completed) +- bookmaker (categorical variable) +- price_current (target variable) + +Model: predict the current price for a specific game and bookmaker. + +Run predictions for a list of bookmakers to determine if a mispricing opportunity will appear in the future. + +DraftKings +FanDuel +Fanatics \ No newline at end of file diff --git a/Backend/scripts/collect_data.py b/ML_model/scripts/collect_data.py similarity index 100% rename from Backend/scripts/collect_data.py rename to ML_model/scripts/collect_data.py diff --git a/Backend/scripts/create_delta_tables.py b/ML_model/scripts/create_delta_tables.py similarity index 100% rename from Backend/scripts/create_delta_tables.py rename to ML_model/scripts/create_delta_tables.py diff --git a/ML_model/synthetic_odds_history.csv b/ML_model/synthetic_odds_history.csv new file mode 100644 index 0000000..f240b48 --- /dev/null +++ b/ML_model/synthetic_odds_history.csv @@ -0,0 +1,12001 @@ +datetime,game_start,league,team_a,team_b,current_points_spread,current_points_total,game_duration,bookmaker,market_type,thresh,side,price_current +2026-03-15 23:01:48,2026-03-15 23:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.16,BetMGM,MONEYLINE,0.0,NA,152.46 +2026-04-14 12:39:00,2026-04-16 22:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,107.86 +2026-03-21 04:36:56,2026-03-21 05:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.383,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-15 10:33:00,2026-03-17 12:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,153.07 +2026-03-22 19:31:02,2026-03-22 19:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,48.2,0.278,Fanduel,POINTS_TOTAL,46.6,0,100.0 +2026-04-14 19:17:00,2026-04-17 10:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,8.1,0,113.65 +2026-02-23 06:01:00,2026-02-25 22:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,126.71 +2026-03-14 22:59:00,2026-03-17 13:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-06 05:51:00,2026-03-06 06:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,142.87 +2026-04-02 05:45:00,2026-04-02 23:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,5.8,1,109.66 +2026-02-24 15:30:00,2026-02-25 23:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,227.2,1,132.75 +2026-02-26 17:33:00,2026-02-28 18:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,24.1,1,116.46 +2026-02-26 08:33:00,2026-02-26 22:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,102.04 +2026-03-31 06:57:02,2026-03-31 07:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.678,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-06 21:25:19,2026-04-06 19:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,9.9,0.924,Fanduel,POINTS_TOTAL,5.2,1,111.46 +2026-03-19 01:01:00,2026-03-19 11:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,100.0 +2026-04-08 20:21:27,2026-04-08 19:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,2.7,0.0,0.647,Fanduel,POINTS_SPREAD,1.9,1,111.84 +2026-03-27 17:32:00,2026-03-30 04:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,43.1,0,110.14 +2026-04-06 22:26:00,2026-04-09 06:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,109.61 +2026-03-05 11:10:00,2026-03-06 02:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,0,100.0 +2026-04-14 07:43:00,2026-04-16 05:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,120.84 +2026-04-10 14:20:46,2026-04-10 16:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,49.1,0.071,Fanduel,POINTS_TOTAL,41.1,1,100.0 +2026-03-16 14:44:00,2026-03-17 17:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,40.4,1,118.28 +2026-03-05 08:11:00,2026-03-06 23:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,0,123.85 +2026-04-18 15:22:00,2026-04-20 22:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,105.38 +2026-04-09 01:30:25,2026-04-09 01:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,9.1,0.819,BetMGM,POINTS_TOTAL,12.1,1,115.05 +2026-04-04 14:16:00,2026-04-05 23:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,0,107.14 +2026-03-24 14:19:00,2026-03-27 06:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,5.7,1,113.48 +2026-03-26 23:49:00,2026-03-28 06:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.7,1,126.0 +2026-04-13 16:53:00,2026-04-16 08:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.7,1,125.6 +2026-03-11 09:26:00,2026-03-11 15:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,234.4,0,116.7 +2026-02-20 12:41:00,2026-02-22 16:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,108.1 +2026-04-04 20:20:00,2026-04-06 23:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.9,0,103.89 +2026-04-04 18:27:00,2026-04-07 10:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,0,100.0 +2026-03-12 23:12:00,2026-03-14 13:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,129.31 +2026-03-30 07:55:00,2026-04-02 03:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,1,123.84 +2026-03-31 05:16:31,2026-03-31 05:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,36.1,0.264,Fanduel,POINTS_TOTAL,40.3,0,100.0 +2026-02-20 22:39:00,2026-02-21 16:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,166.63 +2026-03-11 07:42:00,2026-03-14 01:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,45.0,1,120.14 +2026-04-09 10:23:00,2026-04-10 00:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,118.26 +2026-03-14 00:56:00,2026-03-16 15:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,5.8,0,100.73 +2026-03-01 08:24:00,2026-03-03 02:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,118.69 +2026-04-18 14:26:00,2026-04-18 20:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,229.7,1,108.34 +2026-03-25 23:34:00,2026-03-27 15:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,223.3,0,110.76 +2026-02-24 21:23:22,2026-02-24 21:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.541,Fanduel,MONEYLINE,0.0,NA,122.71 +2026-03-27 09:21:32,2026-03-27 07:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.953,BetMGM,MONEYLINE,0.0,NA,113.67 +2026-04-01 06:39:00,2026-04-02 16:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,103.43 +2026-04-04 17:48:45,2026-04-04 19:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,44.7,0.032,BetMGM,POINTS_TOTAL,47.5,1,118.5 +2026-03-30 15:52:00,2026-04-01 20:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,44.3,1,121.76 +2026-03-18 08:02:00,2026-03-20 12:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,47.2,0,101.02 +2026-04-20 15:46:15,2026-04-20 17:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,-3.4,0.0,0.057,BetMGM,POINTS_SPREAD,1.0,0,102.53 +2026-04-11 06:16:37,2026-04-11 06:00:00,NFL,Buffalo Bills,Miami Dolphins,2.5,0.0,0.459,BetMGM,POINTS_SPREAD,1.2,1,100.0 +2026-03-18 05:05:50,2026-03-18 06:00:00,NFL,Miami Dolphins,Philadelphia Eagles,-3.0,0.0,0.388,BetMGM,POINTS_SPREAD,1.8,0,100.0 +2026-03-07 22:15:00,2026-03-08 17:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,46.0,1,112.07 +2026-04-03 08:28:00,2026-04-04 07:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.5,1,130.1 +2026-03-01 13:08:00,2026-03-03 01:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,0,119.35 +2026-03-27 08:02:57,2026-03-27 08:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.072,Fanduel,MONEYLINE,0.0,NA,123.69 +2026-03-05 02:24:00,2026-03-05 16:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,1,100.0 +2026-03-15 23:28:55,2026-03-16 01:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,47.3,0.144,Fanduel,POINTS_TOTAL,50.0,0,100.0 +2026-04-07 14:27:33,2026-04-07 14:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.192,BetMGM,MONEYLINE,0.0,NA,145.4 +2026-03-27 19:51:00,2026-03-30 18:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,132.32 +2026-03-30 21:43:00,2026-04-02 08:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.0,1,100.0 +2026-04-12 11:18:00,2026-04-13 03:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,34.5,1,111.93 +2026-04-02 01:00:43,2026-04-01 23:00:00,NFL,San Francisco 49ers,Detroit Lions,2.8,0.0,0.804,Fanduel,POINTS_SPREAD,2.4,0,127.83 +2026-04-12 15:12:40,2026-04-12 17:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.126,Fanduel,MONEYLINE,0.0,NA,140.7 +2026-03-11 15:20:00,2026-03-11 19:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,216.2,0,135.19 +2026-04-06 17:47:36,2026-04-06 18:00:00,NBA,Milwaukee Bucks,Golden State Warriors,4.2,0.0,0.42,Fanduel,POINTS_SPREAD,0.4,1,100.0 +2026-04-05 05:04:24,2026-04-05 05:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,46.9,0.43,BetMGM,POINTS_TOTAL,45.3,0,102.7 +2026-03-29 05:10:07,2026-03-29 05:00:00,NBA,Boston Celtics,Phoenix Suns,0.4,0.0,0.384,Fanduel,POINTS_SPREAD,1.6,0,100.0 +2026-04-15 11:12:00,2026-04-16 03:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,0,115.06 +2026-03-06 19:35:25,2026-03-06 20:00:00,NFL,Buffalo Bills,San Francisco 49ers,5.2,0.0,0.619,BetMGM,POINTS_SPREAD,1.0,0,130.18 +2026-04-12 12:38:00,2026-04-15 02:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,223.0,0,115.01 +2026-03-17 01:06:07,2026-03-16 23:00:00,NBA,Golden State Warriors,Miami Heat,-0.4,0.0,0.834,Fanduel,POINTS_SPREAD,1.4,1,118.93 +2026-03-21 07:25:00,2026-03-21 19:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,125.04 +2026-03-21 00:47:00,2026-03-21 08:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,148.1 +2026-02-26 14:37:00,2026-02-27 10:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,4.9,0,100.0 +2026-04-16 15:31:00,2026-04-18 17:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-27 02:07:20,2026-02-27 02:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.763,BetMGM,MONEYLINE,0.0,NA,136.28 +2026-03-29 20:05:25,2026-03-29 20:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.369,Fanduel,MONEYLINE,0.0,NA,172.46 +2026-04-16 20:46:00,2026-04-19 09:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.7,1,100.0 +2026-02-26 01:41:00,2026-02-27 15:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,0,127.45 +2026-02-27 07:05:00,2026-02-27 11:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,26.1,1,109.79 +2026-03-08 11:08:00,2026-03-10 21:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,0,100.0 +2026-04-04 15:19:00,2026-04-05 11:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,135.3 +2026-04-01 13:34:12,2026-04-01 14:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,5.0,0.39,Fanduel,POINTS_TOTAL,6.6,0,100.0 +2026-03-07 16:19:00,2026-03-08 01:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,0,100.0 +2026-03-24 10:08:00,2026-03-26 15:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,221.0,0,106.67 +2026-03-17 16:56:12,2026-03-17 17:00:00,NBA,Golden State Warriors,Dallas Mavericks,-0.2,0.0,0.59,Fanduel,POINTS_SPREAD,1.2,0,129.33 +2026-03-02 04:06:00,2026-03-04 16:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,0,104.67 +2026-03-16 05:36:28,2026-03-16 06:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,45.0,0.136,Fanduel,POINTS_TOTAL,49.2,1,110.15 +2026-03-04 22:09:00,2026-03-05 22:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,106.66 +2026-04-06 02:07:00,2026-04-08 18:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,50.8,0,123.71 +2026-04-18 18:24:00,2026-04-19 12:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,124.12 +2026-03-06 14:43:49,2026-03-06 13:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,228.1,0.899,BetMGM,POINTS_TOTAL,221.5,1,100.0 +2026-04-14 16:47:00,2026-04-16 05:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,1,114.65 +2026-03-26 19:04:00,2026-03-27 23:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,218.5,0,100.0 +2026-03-19 02:20:02,2026-03-19 04:00:00,NBA,Golden State Warriors,Los Angeles Lakers,-3.0,0.0,0.178,Fanduel,POINTS_SPREAD,0.2,1,137.03 +2026-04-07 06:48:24,2026-04-07 07:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.9,0.0,0.13,Fanduel,POINTS_SPREAD,0.6,1,102.59 +2026-02-26 19:38:00,2026-02-28 18:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,130.63 +2026-03-01 11:15:00,2026-03-04 04:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,225.4,1,100.0 +2026-04-18 22:56:03,2026-04-18 23:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,228.7,0.417,Fanduel,POINTS_TOTAL,223.1,1,121.35 +2026-02-19 16:45:00,2026-02-22 02:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,1,101.3 +2026-03-21 04:50:00,2026-03-22 17:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,121.5 +2026-03-07 09:10:00,2026-03-10 04:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,50.8,0,113.05 +2026-03-27 11:31:00,2026-03-30 05:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,1,100.0 +2026-03-03 05:59:00,2026-03-05 23:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,5.1,0,100.0 +2026-03-07 06:58:00,2026-03-07 12:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,0,127.61 +2026-03-08 08:45:55,2026-03-08 09:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.344,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-28 14:05:58,2026-02-28 15:00:00,NBA,Miami Heat,Golden State Warriors,-3.0,0.0,0.161,BetMGM,POINTS_SPREAD,0.8,0,100.0 +2026-02-28 19:39:00,2026-03-02 12:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,106.49 +2026-04-06 02:06:00,2026-04-07 08:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,6.8,0,109.68 +2026-04-04 17:20:00,2026-04-05 01:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,1,106.82 +2026-02-23 04:00:27,2026-02-23 04:00:00,NBA,Milwaukee Bucks,Phoenix Suns,-0.2,0.0,0.197,BetMGM,POINTS_SPREAD,2.5,1,119.87 +2026-02-19 18:43:00,2026-02-22 10:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,220.2,0,115.11 +2026-04-12 05:17:00,2026-04-12 12:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,139.79 +2026-04-10 16:09:00,2026-04-12 12:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,6.3,1,119.61 +2026-03-11 17:04:50,2026-03-11 17:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,-0.5,0.0,0.688,Fanduel,POINTS_SPREAD,0.4,1,106.24 +2026-04-12 15:59:00,2026-04-13 02:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,35.9,1,116.85 +2026-04-02 14:18:00,2026-04-05 06:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,101.7 +2026-03-12 08:55:00,2026-03-14 18:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,107.66 +2026-03-31 08:57:00,2026-04-03 04:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,0,100.0 +2026-03-05 08:54:00,2026-03-05 09:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.5,BetMGM,MONEYLINE,0.0,NA,101.8 +2026-03-07 18:42:36,2026-03-07 19:00:00,NHL,Florida Panthers,Carolina Hurricanes,-1.2,0.0,0.12,BetMGM,POINTS_SPREAD,0.2,0,100.0 +2026-03-24 08:56:00,2026-03-27 02:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.8,0,118.11 +2026-04-19 16:26:00,2026-04-19 21:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,43.8,0,100.0 +2026-03-10 08:25:00,2026-03-12 07:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,235.7,1,109.13 +2026-04-14 06:27:37,2026-04-14 06:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,3.5,0.259,BetMGM,POINTS_TOTAL,3.5,1,104.19 +2026-03-20 19:38:00,2026-03-22 16:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,221.1,0,125.07 +2026-02-25 15:15:00,2026-02-27 01:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,35.3,1,120.78 +2026-03-18 16:30:00,2026-03-19 20:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,0,100.0 +2026-04-09 16:05:15,2026-04-09 14:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,62.9,0.957,BetMGM,POINTS_TOTAL,59.5,1,100.0 +2026-04-10 05:12:00,2026-04-12 12:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,23.8,0,113.85 +2026-04-14 10:22:00,2026-04-16 17:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,1,118.58 +2026-02-20 21:35:00,2026-02-22 14:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,0,105.63 +2026-03-05 02:37:00,2026-03-06 12:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,1,100.0 +2026-03-27 21:36:00,2026-03-29 03:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,107.82 +2026-03-31 12:51:43,2026-03-31 13:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,30.8,0.654,BetMGM,POINTS_TOTAL,34.9,1,100.0 +2026-03-02 11:49:01,2026-03-02 13:00:00,NHL,Boston Bruins,Carolina Hurricanes,1.3,0.0,0.139,Fanduel,POINTS_SPREAD,0.6,0,112.43 +2026-03-28 21:54:00,2026-03-30 23:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,103.7 +2026-03-31 22:19:00,2026-04-03 11:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,146.47 +2026-03-28 16:18:00,2026-03-31 12:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,130.77 +2026-03-10 12:57:00,2026-03-11 03:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,178.44 +2026-04-12 14:16:00,2026-04-13 13:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,116.8 +2026-03-17 09:38:13,2026-03-17 11:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.279,BetMGM,MONEYLINE,0.0,NA,116.96 +2026-03-31 02:54:25,2026-03-31 01:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,56.7,0.769,BetMGM,POINTS_TOTAL,65.3,1,130.17 +2026-03-18 02:49:00,2026-03-20 01:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,0,100.0 +2026-02-28 14:51:08,2026-02-28 14:00:00,NFL,Baltimore Ravens,Detroit Lions,-1.3,0.0,0.473,Fanduel,POINTS_SPREAD,3.1,0,100.64 +2026-03-23 01:12:00,2026-03-23 20:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,153.44 +2026-03-21 14:15:00,2026-03-22 11:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,1,100.0 +2026-04-20 11:09:14,2026-04-20 10:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.818,BetMGM,MONEYLINE,0.0,NA,112.26 +2026-03-02 03:33:08,2026-03-02 02:00:00,NBA,Dallas Mavericks,Phoenix Suns,1.7,0.0,0.623,BetMGM,POINTS_SPREAD,3.7,0,100.0 +2026-04-20 12:05:00,2026-04-21 09:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,19.9,1,100.0 +2026-03-29 14:32:49,2026-03-29 13:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,243.1,0.599,Fanduel,POINTS_TOTAL,249.7,0,109.4 +2026-02-20 13:18:00,2026-02-23 00:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,39.9,0,118.46 +2026-02-21 02:40:00,2026-02-23 12:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,44.0,0,101.27 +2026-04-06 13:33:00,2026-04-08 16:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,0,100.0 +2026-03-27 12:33:07,2026-03-27 11:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,217.8,0.534,BetMGM,POINTS_TOTAL,219.3,0,100.0 +2026-02-24 19:55:00,2026-02-27 17:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.8,1,110.34 +2026-04-11 07:27:02,2026-04-11 09:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,218.9,0.128,BetMGM,POINTS_TOTAL,225.9,0,114.49 +2026-02-23 04:24:00,2026-02-24 16:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.0,0,110.06 +2026-04-11 14:15:28,2026-04-11 12:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.786,BetMGM,MONEYLINE,0.0,NA,149.29 +2026-04-17 18:36:00,2026-04-19 19:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,1,108.75 +2026-04-13 08:08:00,2026-04-16 08:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.7,1,105.3 +2026-03-16 11:35:21,2026-03-16 11:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.952,Fanduel,MONEYLINE,0.0,NA,146.65 +2026-03-08 23:54:00,2026-03-11 05:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,160.21 +2026-02-20 20:55:00,2026-02-22 21:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,103.52 +2026-03-05 18:45:00,2026-03-07 15:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-27 05:53:00,2026-03-01 02:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,0,128.56 +2026-02-18 09:28:00,2026-02-20 15:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,0,100.0 +2026-03-10 08:10:44,2026-03-10 09:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.093,BetMGM,MONEYLINE,0.0,NA,136.42 +2026-03-22 15:41:00,2026-03-24 19:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,221.4,0,110.5 +2026-02-25 00:50:46,2026-02-25 01:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,3.5,0.221,BetMGM,POINTS_TOTAL,4.1,0,109.29 +2026-02-28 17:19:01,2026-02-28 18:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.189,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-15 04:41:00,2026-04-16 06:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,130.33 +2026-03-14 13:17:00,2026-03-15 10:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,108.48 +2026-02-22 16:35:00,2026-02-25 16:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,0,123.95 +2026-04-15 00:22:56,2026-04-15 00:00:00,NHL,Florida Panthers,Edmonton Oilers,3.1,0.0,0.583,BetMGM,POINTS_SPREAD,1.4,1,106.93 +2026-04-07 20:52:00,2026-04-09 12:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,5.9,1,114.31 +2026-03-24 07:04:12,2026-03-24 06:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,13.2,0.79,Fanduel,POINTS_TOTAL,17.0,0,112.45 +2026-04-05 05:15:00,2026-04-05 13:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.1,0,148.21 +2026-03-01 15:54:00,2026-03-03 01:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,117.95 +2026-04-20 05:57:04,2026-04-20 06:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.056,Fanduel,MONEYLINE,0.0,NA,108.88 +2026-02-22 03:43:00,2026-02-22 05:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,157.13 +2026-03-22 00:15:00,2026-03-24 15:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,58.5,0,105.05 +2026-03-16 03:47:22,2026-03-16 03:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.691,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-20 23:34:00,2026-02-22 16:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.7,1,110.98 +2026-02-27 07:37:00,2026-02-28 19:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,116.47 +2026-03-19 01:47:00,2026-03-20 18:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,117.46 +2026-03-17 02:20:00,2026-03-17 23:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,0,100.18 +2026-03-27 04:51:00,2026-03-29 12:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,148.68 +2026-04-06 19:54:37,2026-04-06 19:00:00,NBA,Golden State Warriors,Miami Heat,0.0,236.3,0.659,BetMGM,POINTS_TOTAL,226.9,0,150.48 +2026-03-26 22:09:01,2026-03-26 22:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,57.1,0.239,Fanduel,POINTS_TOTAL,57.7,0,108.73 +2026-03-28 22:25:00,2026-03-30 09:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,10.6,0,110.54 +2026-02-28 09:39:00,2026-03-01 13:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,0,100.0 +2026-04-05 04:00:32,2026-04-05 03:00:00,NBA,Milwaukee Bucks,Miami Heat,2.5,0.0,0.703,BetMGM,POINTS_SPREAD,1.0,1,100.0 +2026-03-03 07:39:00,2026-03-04 07:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,224.7,0,100.0 +2026-03-24 16:59:00,2026-03-24 21:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,0,109.48 +2026-04-15 05:08:00,2026-04-17 23:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,1,115.67 +2026-02-22 15:14:00,2026-02-24 19:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,0,122.74 +2026-02-26 12:20:00,2026-02-28 06:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,216.0,1,100.0 +2026-04-17 16:47:27,2026-04-17 17:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.347,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-13 02:19:00,2026-03-14 04:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,0,110.52 +2026-03-06 14:13:00,2026-03-07 14:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,1,100.0 +2026-04-09 22:59:00,2026-04-12 21:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,0,100.0 +2026-02-27 14:20:00,2026-03-02 08:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,10.2,0,103.45 +2026-03-13 19:59:50,2026-03-13 21:00:00,NBA,Los Angeles Lakers,Golden State Warriors,3.0,0.0,0.088,BetMGM,POINTS_SPREAD,3.4,1,100.0 +2026-04-20 00:33:44,2026-04-19 23:00:00,NFL,Philadelphia Eagles,Buffalo Bills,2.9,0.0,0.543,Fanduel,POINTS_SPREAD,0.6,0,127.0 +2026-03-06 14:38:00,2026-03-07 07:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,5.1,0,100.0 +2026-04-09 21:58:00,2026-04-10 08:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,121.46 +2026-04-05 07:13:00,2026-04-07 07:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,0,105.63 +2026-04-17 12:51:00,2026-04-19 17:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,0,103.38 +2026-04-06 23:59:00,2026-04-07 09:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,136.27 +2026-02-25 17:56:00,2026-02-26 15:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,102.43 +2026-03-19 10:41:04,2026-03-19 11:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.7,0.0,0.656,BetMGM,POINTS_SPREAD,2.3,0,100.0 +2026-04-08 01:34:36,2026-04-08 01:00:00,NBA,Miami Heat,Dallas Mavericks,-0.1,0.0,0.62,Fanduel,POINTS_SPREAD,0.1,0,126.57 +2026-03-24 18:57:00,2026-03-27 17:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,10.2,1,118.88 +2026-04-14 06:32:48,2026-04-14 08:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.5,0.0,0.21,Fanduel,POINTS_SPREAD,1.0,0,136.19 +2026-03-23 04:05:09,2026-03-23 04:00:00,NHL,Florida Panthers,Boston Bruins,0.9,0.0,0.712,BetMGM,POINTS_SPREAD,2.8,0,100.0 +2026-02-24 00:41:00,2026-02-26 22:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,9.1,0,100.0 +2026-03-31 14:34:00,2026-04-01 03:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,9.6,1,124.16 +2026-03-08 01:36:00,2026-03-10 03:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,131.27 +2026-03-13 23:11:00,2026-03-14 23:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,12.7,1,100.88 +2026-03-05 07:35:03,2026-03-05 07:00:00,NHL,New York Rangers,Edmonton Oilers,-0.7,0.0,0.367,Fanduel,POINTS_SPREAD,1.6,1,105.65 +2026-03-05 00:01:36,2026-03-05 00:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,5.5,0.27,Fanduel,POINTS_TOTAL,3.5,0,132.13 +2026-04-17 10:01:00,2026-04-20 00:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,5.7,0,100.0 +2026-04-02 14:46:00,2026-04-02 15:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.2,1,132.65 +2026-03-03 23:51:33,2026-03-03 22:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,12.4,0.742,Fanduel,POINTS_TOTAL,11.3,1,119.35 +2026-03-13 17:40:00,2026-03-16 00:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,5.7,1,100.0 +2026-03-08 20:43:00,2026-03-10 19:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,35.2,1,100.0 +2026-03-04 21:59:00,2026-03-07 10:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,116.04 +2026-03-04 21:49:00,2026-03-06 23:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,0,101.92 +2026-03-16 02:49:40,2026-03-16 02:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.2,0.0,0.926,Fanduel,POINTS_SPREAD,1.4,0,113.66 +2026-03-10 15:17:00,2026-03-13 06:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,107.35 +2026-04-04 00:58:00,2026-04-05 13:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,59.1,0,102.66 +2026-03-07 18:19:00,2026-03-09 19:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-31 19:52:00,2026-04-02 15:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,11.3,0,113.17 +2026-03-21 03:04:00,2026-03-22 03:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,6.4,1,119.95 +2026-03-06 23:11:00,2026-03-08 04:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.7,0,100.0 +2026-03-25 01:40:19,2026-03-25 00:00:00,NBA,Miami Heat,Dallas Mavericks,0.2,0.0,0.774,BetMGM,POINTS_SPREAD,2.2,1,100.0 +2026-03-06 10:19:39,2026-03-06 10:00:00,NFL,Baltimore Ravens,Detroit Lions,0.9,0.0,0.787,BetMGM,POINTS_SPREAD,0.4,0,102.93 +2026-03-13 20:14:00,2026-03-16 18:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,107.71 +2026-03-18 22:40:00,2026-03-21 06:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,1,100.0 +2026-03-07 10:51:00,2026-03-08 04:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,48.2,0,123.63 +2026-03-12 01:19:55,2026-03-12 01:00:00,NBA,Miami Heat,Denver Nuggets,-3.7,0.0,0.294,BetMGM,POINTS_SPREAD,4.3,1,101.16 +2026-04-07 12:01:20,2026-04-07 13:00:00,NFL,Detroit Lions,Buffalo Bills,1.7,0.0,0.113,Fanduel,POINTS_SPREAD,0.7,1,100.0 +2026-03-17 09:56:00,2026-03-17 11:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,231.2,1,100.0 +2026-04-15 07:13:00,2026-04-16 20:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,136.1 +2026-04-20 04:17:00,2026-04-21 06:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,5.4,0,115.47 +2026-04-19 01:50:00,2026-04-20 23:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,1,110.55 +2026-03-30 09:00:54,2026-03-30 07:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,3.6,0.955,Fanduel,POINTS_TOTAL,4.5,0,122.59 +2026-04-18 07:32:18,2026-04-18 09:00:00,NBA,Golden State Warriors,Boston Celtics,-2.9,0.0,0.135,Fanduel,POINTS_SPREAD,0.2,0,102.26 +2026-04-19 15:44:00,2026-04-20 00:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-19 12:32:00,2026-04-20 07:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,27.0,0,126.62 +2026-04-14 20:36:00,2026-04-15 22:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.8,0,117.96 +2026-02-28 07:49:00,2026-02-28 17:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-23 20:01:38,2026-03-23 18:00:00,NHL,New York Rangers,Colorado Avalanche,-0.9,0.0,0.698,Fanduel,POINTS_SPREAD,2.3,1,102.95 +2026-04-05 18:49:43,2026-04-05 19:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,50.6,0.704,Fanduel,POINTS_TOTAL,57.5,1,114.86 +2026-03-05 00:01:00,2026-03-07 21:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,56.0,0,113.67 +2026-03-28 19:43:00,2026-03-31 02:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,4.0,0,124.82 +2026-03-13 19:23:00,2026-03-14 08:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-19 18:54:00,2026-04-20 08:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,229.8,0,109.14 +2026-02-24 00:15:54,2026-02-24 00:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.555,BetMGM,MONEYLINE,0.0,NA,101.96 +2026-03-26 01:59:44,2026-03-26 03:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,-3.6,0.0,0.343,BetMGM,POINTS_SPREAD,1.1,0,100.0 +2026-04-11 01:21:00,2026-04-14 01:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,1,100.0 +2026-03-18 11:09:54,2026-03-18 12:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.355,Fanduel,MONEYLINE,0.0,NA,125.76 +2026-02-25 04:11:26,2026-02-25 03:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.608,BetMGM,MONEYLINE,0.0,NA,137.36 +2026-04-01 21:38:00,2026-04-02 17:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.4,1,119.06 +2026-03-01 16:51:39,2026-03-01 16:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,49.9,0.837,Fanduel,POINTS_TOTAL,51.3,0,119.19 +2026-03-05 21:28:52,2026-03-05 21:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,48.9,0.666,BetMGM,POINTS_TOTAL,50.0,1,107.08 +2026-03-10 13:42:00,2026-03-13 00:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,110.45 +2026-04-17 06:24:00,2026-04-20 06:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,160.04 +2026-03-18 18:03:00,2026-03-19 14:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.3,1,141.92 +2026-04-12 09:24:00,2026-04-13 17:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,116.71 +2026-04-01 22:28:48,2026-04-01 22:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.21,Fanduel,MONEYLINE,0.0,NA,103.28 +2026-03-24 20:59:00,2026-03-27 01:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,39.4,0,120.55 +2026-03-06 08:29:00,2026-03-06 16:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,143.28 +2026-03-27 14:31:00,2026-03-27 18:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,12.0,1,113.05 +2026-04-04 05:06:00,2026-04-05 03:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,116.41 +2026-03-04 20:16:33,2026-03-04 20:00:00,NBA,Denver Nuggets,Miami Heat,3.3,0.0,0.692,BetMGM,POINTS_SPREAD,1.0,1,100.0 +2026-03-08 06:58:00,2026-03-11 00:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,4.0,0,121.0 +2026-02-28 18:35:00,2026-03-01 19:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,46.1,0,117.62 +2026-03-10 00:59:00,2026-03-10 09:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,14.5,1,125.08 +2026-03-11 05:30:00,2026-03-12 08:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,148.13 +2026-04-16 03:34:33,2026-04-16 03:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,-3.3,0.0,0.292,Fanduel,POINTS_SPREAD,1.5,0,100.0 +2026-02-20 18:11:00,2026-02-23 12:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,48.4,0,117.43 +2026-03-14 11:37:00,2026-03-16 10:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,5.0,1,102.87 +2026-03-22 11:36:00,2026-03-24 05:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-19 18:39:00,2026-02-22 15:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,0,104.71 +2026-02-24 10:53:44,2026-02-24 10:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.743,Fanduel,MONEYLINE,0.0,NA,129.18 +2026-03-05 03:12:28,2026-03-05 05:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,37.7,0.136,BetMGM,POINTS_TOTAL,43.3,0,108.11 +2026-03-25 05:30:51,2026-03-25 05:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,-3.1,0.0,0.427,BetMGM,POINTS_SPREAD,3.4,0,100.0 +2026-03-31 08:53:13,2026-03-31 09:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.629,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-20 00:48:00,2026-03-20 05:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,0,100.0 +2026-04-14 09:28:02,2026-04-14 11:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,55.9,0.178,BetMGM,POINTS_TOTAL,50.8,0,101.13 +2026-04-11 18:36:00,2026-04-12 08:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.4,1,112.75 +2026-03-04 07:54:00,2026-03-04 08:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,1,115.8 +2026-03-21 19:49:00,2026-03-21 21:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,138.23 +2026-04-19 14:29:00,2026-04-21 10:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,1,100.0 +2026-02-21 09:03:06,2026-02-21 11:00:00,NHL,Boston Bruins,Edmonton Oilers,4.8,0.0,0.045,BetMGM,POINTS_SPREAD,0.6,1,100.0 +2026-04-02 15:36:00,2026-04-04 00:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,80.4,1,109.01 +2026-04-01 08:16:00,2026-04-01 19:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.6,1,134.81 +2026-02-21 18:25:00,2026-02-23 12:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-14 18:53:34,2026-04-14 18:00:00,NHL,New York Rangers,Florida Panthers,-2.5,0.0,0.481,BetMGM,POINTS_SPREAD,1.8,0,100.0 +2026-04-21 05:19:38,2026-04-21 07:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.198,Fanduel,MONEYLINE,0.0,NA,116.99 +2026-03-25 04:36:01,2026-03-25 04:00:00,NFL,Philadelphia Eagles,Miami Dolphins,3.5,0.0,0.439,Fanduel,POINTS_SPREAD,0.7,1,100.0 +2026-04-17 02:08:00,2026-04-19 19:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,0,110.73 +2026-04-15 05:11:00,2026-04-17 03:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.2,0,112.93 +2026-02-20 23:39:00,2026-02-21 09:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,104.56 +2026-04-16 00:22:46,2026-04-15 22:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,16.9,0.921,Fanduel,POINTS_TOTAL,12.0,1,122.67 +2026-03-25 06:43:00,2026-03-25 15:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,150.66 +2026-03-02 07:03:00,2026-03-04 18:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.3,0,129.81 +2026-04-10 11:57:50,2026-04-10 12:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,226.9,0.688,Fanduel,POINTS_TOTAL,231.3,1,125.06 +2026-04-05 03:30:00,2026-04-07 02:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,0,100.0 +2026-03-09 00:50:15,2026-03-08 23:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,216.2,0.957,BetMGM,POINTS_TOTAL,212.4,1,100.0 +2026-04-10 21:40:27,2026-04-10 22:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,3.5,0.097,Fanduel,POINTS_TOTAL,5.8,0,117.76 +2026-03-02 00:10:00,2026-03-02 19:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-26 20:34:00,2026-03-01 00:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,107.2 +2026-03-31 21:47:00,2026-04-02 02:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.4,1,115.72 +2026-02-19 18:43:00,2026-02-20 21:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-25 00:16:46,2026-02-25 00:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.771,Fanduel,MONEYLINE,0.0,NA,112.52 +2026-04-11 13:03:00,2026-04-14 03:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-01 07:32:00,2026-03-01 21:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-11 07:02:00,2026-04-13 12:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,168.75 +2026-02-27 08:19:00,2026-03-01 23:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-08 04:07:00,2026-04-08 16:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,107.77 +2026-03-13 13:21:07,2026-03-13 13:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.434,Fanduel,MONEYLINE,0.0,NA,139.88 +2026-04-06 05:33:00,2026-04-06 19:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,33.7,0,104.64 +2026-03-24 01:44:00,2026-03-24 02:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-20 00:17:49,2026-04-19 22:00:00,NHL,Vegas Golden Knights,Florida Panthers,-2.8,0.0,0.849,Fanduel,POINTS_SPREAD,0.6,0,100.0 +2026-03-20 23:21:28,2026-03-21 01:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,3.5,0.136,Fanduel,POINTS_TOTAL,3.5,0,123.94 +2026-04-05 05:01:00,2026-04-06 21:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,34.7,0,116.9 +2026-04-16 12:31:04,2026-04-16 12:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,48.9,0.206,BetMGM,POINTS_TOTAL,50.9,1,111.46 +2026-03-14 15:53:40,2026-03-14 16:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.376,Fanduel,MONEYLINE,0.0,NA,130.54 +2026-03-12 21:18:43,2026-03-12 19:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.954,Fanduel,MONEYLINE,0.0,NA,154.23 +2026-02-19 18:44:00,2026-02-22 15:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,238.4,1,102.78 +2026-03-22 22:24:34,2026-03-22 23:00:00,NFL,Buffalo Bills,Miami Dolphins,0.9,0.0,0.081,Fanduel,POINTS_SPREAD,1.2,0,121.44 +2026-03-20 20:32:00,2026-03-23 07:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.4,1,100.0 +2026-03-10 05:35:49,2026-03-10 05:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,-1.8,0.0,0.949,BetMGM,POINTS_SPREAD,3.5,0,100.0 +2026-03-16 12:26:00,2026-03-18 06:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-15 15:39:00,2026-04-17 07:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,47.3,1,107.95 +2026-04-05 02:32:00,2026-04-05 05:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,192.77 +2026-02-24 23:43:36,2026-02-25 00:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,221.3,0.42,Fanduel,POINTS_TOTAL,224.9,1,101.18 +2026-04-20 11:50:00,2026-04-21 01:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,149.63 +2026-03-06 08:34:19,2026-03-06 09:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,33.0,0.174,Fanduel,POINTS_TOTAL,34.4,1,100.0 +2026-03-18 12:24:50,2026-03-18 11:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,60.0,0.788,Fanduel,POINTS_TOTAL,61.9,0,100.0 +2026-02-20 08:49:00,2026-02-23 07:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,0,136.81 +2026-03-14 04:26:00,2026-03-16 04:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,248.7,1,136.65 +2026-04-01 19:07:00,2026-04-04 12:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,0,112.27 +2026-02-27 01:14:00,2026-03-01 21:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,46.4,1,129.25 +2026-02-23 16:59:00,2026-02-26 10:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,117.2 +2026-03-04 03:02:00,2026-03-04 17:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,119.37 +2026-04-08 20:17:00,2026-04-11 03:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.8,1,104.9 +2026-02-22 03:55:00,2026-02-25 00:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,133.14 +2026-04-01 05:50:16,2026-04-01 06:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,223.6,0.646,Fanduel,POINTS_TOTAL,222.1,0,131.48 +2026-03-29 06:00:16,2026-03-29 06:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.8,0.0,0.696,BetMGM,POINTS_SPREAD,1.5,1,105.34 +2026-03-16 14:05:00,2026-03-16 18:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.4,1,113.36 +2026-02-23 21:07:00,2026-02-25 07:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,131.94 +2026-03-26 03:25:00,2026-03-28 13:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,224.0,0,114.2 +2026-04-14 00:55:45,2026-04-13 23:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.932,Fanduel,MONEYLINE,0.0,NA,121.35 +2026-03-11 05:22:00,2026-03-11 18:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,6.0,1,104.11 +2026-03-24 21:34:00,2026-03-27 20:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,101.93 +2026-04-15 05:07:00,2026-04-17 21:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,232.1,1,129.63 +2026-03-27 16:11:27,2026-03-27 16:00:00,NBA,Phoenix Suns,Miami Heat,-0.8,0.0,0.297,Fanduel,POINTS_SPREAD,3.5,1,133.91 +2026-03-06 00:58:15,2026-03-06 02:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.057,BetMGM,MONEYLINE,0.0,NA,111.24 +2026-03-22 23:36:00,2026-03-23 12:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-28 03:04:55,2026-02-28 04:00:00,NHL,New York Rangers,Vegas Golden Knights,2.6,0.0,0.144,Fanduel,POINTS_SPREAD,1.5,1,100.0 +2026-04-06 08:30:00,2026-04-07 00:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,30.3,0,100.0 +2026-03-25 08:12:46,2026-03-25 07:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,1.2,0.0,0.921,BetMGM,POINTS_SPREAD,1.0,1,100.0 +2026-02-23 07:12:43,2026-02-23 09:00:00,NHL,Florida Panthers,Carolina Hurricanes,5.6,0.0,0.104,BetMGM,POINTS_SPREAD,0.7,1,100.0 +2026-03-29 13:21:00,2026-03-30 08:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,190.01 +2026-04-10 08:19:00,2026-04-12 04:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,144.05 +2026-02-26 15:05:00,2026-02-27 16:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,39.8,0,111.02 +2026-03-02 11:36:25,2026-03-02 12:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.519,Fanduel,MONEYLINE,0.0,NA,137.52 +2026-03-28 01:30:00,2026-03-29 07:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.2,1,128.46 +2026-03-08 04:08:00,2026-03-10 14:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,139.25 +2026-03-11 22:55:00,2026-03-14 03:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,1,120.8 +2026-03-14 16:39:46,2026-03-14 17:00:00,NHL,Florida Panthers,Edmonton Oilers,2.7,0.0,0.071,BetMGM,POINTS_SPREAD,3.2,1,106.83 +2026-04-02 13:16:00,2026-04-03 10:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,217.8,0,100.0 +2026-04-18 01:22:00,2026-04-18 02:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,1,101.16 +2026-02-28 15:56:00,2026-03-01 13:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,61.6,0,100.0 +2026-04-10 14:28:00,2026-04-12 21:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,1,100.0 +2026-03-21 01:05:00,2026-03-23 20:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,1,133.67 +2026-04-17 05:18:00,2026-04-20 01:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,136.21 +2026-03-01 15:55:00,2026-03-03 09:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,1,123.97 +2026-03-11 08:11:00,2026-03-14 05:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,1,111.06 +2026-04-19 00:32:51,2026-04-18 23:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,237.1,0.527,BetMGM,POINTS_TOTAL,239.2,1,100.0 +2026-02-21 17:33:01,2026-02-21 16:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,238.0,0.789,Fanduel,POINTS_TOTAL,235.1,1,117.72 +2026-04-18 15:42:00,2026-04-21 10:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,249.0,1,128.25 +2026-02-23 06:18:00,2026-02-25 16:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,0,118.7 +2026-04-04 20:10:30,2026-04-04 19:00:00,NFL,Miami Dolphins,Baltimore Ravens,1.8,0.0,0.875,BetMGM,POINTS_SPREAD,3.8,0,100.0 +2026-04-02 14:32:52,2026-04-02 16:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,-1.7,0.0,0.216,BetMGM,POINTS_SPREAD,1.5,0,108.03 +2026-03-12 11:25:00,2026-03-14 12:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,232.7,0,123.3 +2026-03-14 12:51:00,2026-03-17 10:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-21 01:52:56,2026-02-21 01:00:00,NBA,Dallas Mavericks,Phoenix Suns,2.3,0.0,0.783,BetMGM,POINTS_SPREAD,1.2,1,100.0 +2026-03-28 16:27:00,2026-03-31 15:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,139.41 +2026-03-25 04:19:00,2026-03-26 01:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,254.0,1,103.99 +2026-04-16 09:42:28,2026-04-16 10:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.536,BetMGM,MONEYLINE,0.0,NA,163.54 +2026-04-07 14:00:52,2026-04-07 15:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.116,Fanduel,MONEYLINE,0.0,NA,144.64 +2026-02-27 19:00:00,2026-03-01 22:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,132.39 +2026-03-11 07:00:00,2026-03-12 15:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,222.9,1,118.82 +2026-02-28 08:32:04,2026-02-28 08:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,44.9,0.856,BetMGM,POINTS_TOTAL,44.9,1,100.0 +2026-02-28 17:26:00,2026-03-03 08:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,234.3,1,111.87 +2026-04-10 01:16:00,2026-04-11 19:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,220.0,0,105.77 +2026-03-30 20:44:15,2026-03-30 19:00:00,NFL,Miami Dolphins,Detroit Lions,-1.4,0.0,0.707,BetMGM,POINTS_SPREAD,3.8,1,114.88 +2026-04-13 11:45:00,2026-04-15 06:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,227.9,1,113.53 +2026-03-14 13:26:00,2026-03-15 23:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,7.8,1,111.32 +2026-02-28 05:00:52,2026-02-28 03:00:00,NBA,Los Angeles Lakers,Miami Heat,3.0,0.0,0.916,BetMGM,POINTS_SPREAD,1.4,0,125.58 +2026-02-25 17:20:55,2026-02-25 16:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.544,Fanduel,MONEYLINE,0.0,NA,110.84 +2026-04-09 11:28:00,2026-04-09 23:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,123.18 +2026-03-31 02:06:28,2026-03-31 01:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.786,BetMGM,MONEYLINE,0.0,NA,122.58 +2026-04-15 11:13:09,2026-04-15 10:00:00,NHL,Florida Panthers,Boston Bruins,6.0,0.0,0.812,Fanduel,POINTS_SPREAD,1.3,1,100.0 +2026-03-08 14:05:00,2026-03-10 11:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,21.3,0,104.17 +2026-02-28 20:32:00,2026-03-03 00:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,151.5 +2026-03-09 18:32:00,2026-03-11 09:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-03 09:54:00,2026-04-03 15:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,126.47 +2026-04-08 15:24:03,2026-04-08 14:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,13.1,0.717,Fanduel,POINTS_TOTAL,23.2,0,100.0 +2026-04-16 16:16:00,2026-04-19 12:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,45.8,1,127.3 +2026-03-27 10:17:00,2026-03-29 08:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,1,100.0 +2026-02-23 12:24:00,2026-02-25 16:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,119.76 +2026-03-22 16:48:00,2026-03-25 01:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,215.5,0,126.99 +2026-02-21 03:42:00,2026-02-21 13:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,220.8,0,124.35 +2026-04-10 11:03:00,2026-04-11 07:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.4,0,125.19 +2026-02-23 14:58:00,2026-02-26 08:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,213.6,0,127.21 +2026-03-26 16:18:10,2026-03-26 15:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,70.4,0.951,Fanduel,POINTS_TOTAL,67.7,0,123.53 +2026-03-06 22:07:00,2026-03-07 12:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-21 18:42:00,2026-03-24 06:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,6.4,0,100.0 +2026-02-23 10:41:00,2026-02-25 01:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.3,0,109.71 +2026-04-01 10:11:00,2026-04-03 17:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,117.1 +2026-04-05 12:18:00,2026-04-05 18:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,1,130.37 +2026-02-27 11:09:27,2026-02-27 12:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.497,Fanduel,MONEYLINE,0.0,NA,146.13 +2026-03-07 19:47:00,2026-03-09 06:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,7.1,1,100.0 +2026-04-16 10:33:00,2026-04-17 07:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,28.1,0,111.59 +2026-03-29 17:49:00,2026-03-29 22:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,121.32 +2026-04-18 13:24:00,2026-04-20 10:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,148.73 +2026-03-09 13:14:00,2026-03-09 22:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,122.36 +2026-02-28 08:40:00,2026-03-01 09:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,155.1 +2026-02-25 07:25:00,2026-02-25 09:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,136.25 +2026-03-10 00:48:46,2026-03-10 02:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.221,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-09 17:12:20,2026-03-09 17:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.163,BetMGM,MONEYLINE,0.0,NA,125.1 +2026-04-14 00:37:00,2026-04-16 15:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,1,100.0 +2026-04-19 17:12:00,2026-04-21 02:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,239.2,1,102.84 +2026-03-07 12:49:00,2026-03-10 04:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.4,1,101.49 +2026-03-29 21:40:44,2026-03-29 20:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,5.1,0.793,BetMGM,POINTS_TOTAL,5.5,0,100.0 +2026-03-18 18:17:00,2026-03-18 19:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,123.89 +2026-02-20 22:54:00,2026-02-22 21:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,119.77 +2026-03-26 02:16:00,2026-03-27 23:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,117.12 +2026-03-11 06:46:50,2026-03-11 06:00:00,NFL,Buffalo Bills,Miami Dolphins,6.0,0.0,0.788,Fanduel,POINTS_SPREAD,4.6,1,100.0 +2026-04-16 10:10:00,2026-04-18 08:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,8.0,0,115.71 +2026-03-09 17:29:36,2026-03-09 17:00:00,NFL,Miami Dolphins,San Francisco 49ers,-4.4,0.0,0.22,BetMGM,POINTS_SPREAD,0.2,1,117.41 +2026-03-13 03:10:24,2026-03-13 04:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.08,BetMGM,MONEYLINE,0.0,NA,120.71 +2026-04-03 10:00:37,2026-04-03 10:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.209,Fanduel,MONEYLINE,0.0,NA,133.16 +2026-03-09 07:30:55,2026-03-09 08:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,43.0,0.194,Fanduel,POINTS_TOTAL,42.2,1,100.0 +2026-03-24 13:34:00,2026-03-25 01:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,44.5,0,106.66 +2026-04-02 01:50:00,2026-04-04 05:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.9,1,108.9 +2026-03-13 11:38:09,2026-03-13 13:00:00,NBA,Miami Heat,Phoenix Suns,0.0,230.0,0.062,Fanduel,POINTS_TOTAL,235.0,1,125.74 +2026-03-05 04:24:00,2026-03-06 15:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,234.6,0,100.0 +2026-04-03 09:30:06,2026-04-03 11:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,49.3,0.095,BetMGM,POINTS_TOTAL,47.6,0,129.77 +2026-03-26 18:01:00,2026-03-27 09:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,1,110.52 +2026-02-20 20:13:00,2026-02-21 02:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,121.88 +2026-04-17 20:53:00,2026-04-19 16:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,114.41 +2026-03-01 08:46:00,2026-03-02 23:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,243.5,1,114.64 +2026-04-11 18:22:00,2026-04-13 18:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,0,136.16 +2026-03-27 19:06:00,2026-03-30 13:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-23 00:01:55,2026-02-22 23:00:00,NBA,Milwaukee Bucks,Phoenix Suns,2.7,0.0,0.894,BetMGM,POINTS_SPREAD,2.9,0,100.0 +2026-04-13 19:16:00,2026-04-16 07:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,121.26 +2026-03-19 04:42:00,2026-03-19 05:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,107.7 +2026-04-16 20:36:00,2026-04-18 03:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,0,107.65 +2026-04-09 05:28:00,2026-04-10 11:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.3,0,116.15 +2026-03-25 23:40:50,2026-03-25 22:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.5,0.0,0.788,BetMGM,POINTS_SPREAD,0.9,0,102.34 +2026-04-10 16:32:00,2026-04-11 00:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,0,140.41 +2026-04-10 15:38:58,2026-04-10 14:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.761,Fanduel,MONEYLINE,0.0,NA,147.32 +2026-04-14 11:42:00,2026-04-16 23:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,143.24 +2026-04-19 23:41:00,2026-04-20 12:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,214.9,0,103.39 +2026-03-31 07:43:00,2026-04-02 19:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,0,154.08 +2026-04-05 00:59:00,2026-04-05 18:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,5.7,0,104.83 +2026-02-23 10:09:16,2026-02-23 11:00:00,NBA,Los Angeles Lakers,Miami Heat,-1.1,0.0,0.146,Fanduel,POINTS_SPREAD,1.5,1,100.0 +2026-02-28 15:49:00,2026-02-28 22:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.0,0,116.41 +2026-03-31 08:58:52,2026-03-31 10:00:00,NHL,Boston Bruins,Vegas Golden Knights,2.7,0.0,0.266,Fanduel,POINTS_SPREAD,1.4,0,119.3 +2026-04-12 22:33:34,2026-04-13 00:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.281,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-11 17:24:46,2026-03-11 18:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.121,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-05 00:25:00,2026-04-06 15:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,141.06 +2026-04-17 00:57:00,2026-04-19 08:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,121.49 +2026-04-14 14:55:00,2026-04-16 01:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,1,111.79 +2026-02-25 14:25:00,2026-02-27 22:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,110.92 +2026-04-18 11:18:00,2026-04-19 06:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,58.9,0,100.0 +2026-02-26 02:43:00,2026-02-26 21:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.1,0,117.16 +2026-04-14 02:14:00,2026-04-15 08:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,105.94 +2026-03-08 07:43:00,2026-03-08 09:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,165.78 +2026-04-17 11:48:14,2026-04-17 12:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.468,BetMGM,MONEYLINE,0.0,NA,181.0 +2026-03-22 15:08:00,2026-03-22 16:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,139.96 +2026-03-07 22:38:00,2026-03-09 11:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.7,1,129.8 +2026-04-19 21:30:58,2026-04-19 21:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.661,BetMGM,MONEYLINE,0.0,NA,144.58 +2026-04-14 04:26:54,2026-04-14 04:00:00,NBA,Miami Heat,Milwaukee Bucks,-0.5,0.0,0.505,Fanduel,POINTS_SPREAD,2.0,0,109.93 +2026-04-11 01:37:00,2026-04-11 22:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,142.01 +2026-03-25 22:20:00,2026-03-27 06:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,134.78 +2026-03-21 00:12:00,2026-03-22 10:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,116.16 +2026-03-08 06:01:39,2026-03-08 06:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.487,Fanduel,MONEYLINE,0.0,NA,162.87 +2026-04-17 00:20:08,2026-04-16 23:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,48.4,0.573,Fanduel,POINTS_TOTAL,47.7,0,112.6 +2026-03-30 01:54:00,2026-03-30 18:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,21.0,0,128.14 +2026-04-13 06:55:10,2026-04-13 07:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.201,BetMGM,MONEYLINE,0.0,NA,114.38 +2026-03-11 07:19:24,2026-03-11 07:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.28,Fanduel,MONEYLINE,0.0,NA,164.36 +2026-02-26 01:52:00,2026-02-27 14:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,43.2,0,100.0 +2026-04-13 17:47:00,2026-04-14 22:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.9,0,107.19 +2026-04-03 18:50:21,2026-04-03 19:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,219.8,0.202,Fanduel,POINTS_TOTAL,218.0,0,126.4 +2026-04-06 12:07:02,2026-04-06 10:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.728,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-12 03:23:00,2026-03-13 16:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,107.48 +2026-03-01 20:16:00,2026-03-04 09:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,0,100.89 +2026-03-28 00:31:02,2026-03-27 22:00:00,NFL,Baltimore Ravens,Dallas Cowboys,-3.0,0.0,0.878,BetMGM,POINTS_SPREAD,2.5,0,100.0 +2026-03-22 18:21:00,2026-03-23 06:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-16 18:44:00,2026-04-18 10:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.4,1,100.0 +2026-04-09 04:54:00,2026-04-10 19:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-18 18:24:00,2026-04-20 16:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,46.6,0,100.2 +2026-02-19 06:13:00,2026-02-21 23:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,141.73 +2026-03-10 03:18:00,2026-03-10 11:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,22.2,0,106.46 +2026-03-23 16:42:26,2026-03-23 16:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.258,Fanduel,MONEYLINE,0.0,NA,140.45 +2026-03-25 01:18:00,2026-03-27 14:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.0,1,120.26 +2026-03-10 23:31:00,2026-03-11 21:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.3,0,118.14 +2026-03-24 23:30:51,2026-03-24 23:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.777,BetMGM,MONEYLINE,0.0,NA,104.58 +2026-03-06 00:00:00,2026-03-06 09:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,118.68 +2026-04-02 17:38:08,2026-04-02 18:00:00,NHL,Colorado Avalanche,New York Rangers,1.3,0.0,0.323,BetMGM,POINTS_SPREAD,0.7,0,103.28 +2026-03-05 07:15:36,2026-03-05 07:00:00,NFL,Baltimore Ravens,Dallas Cowboys,-1.0,0.0,0.77,Fanduel,POINTS_SPREAD,4.6,0,100.0 +2026-03-14 20:06:00,2026-03-17 07:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,21.6,0,118.42 +2026-03-31 19:18:36,2026-03-31 19:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.47,Fanduel,MONEYLINE,0.0,NA,102.81 +2026-03-26 15:19:00,2026-03-27 09:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,52.8,0,100.0 +2026-03-01 09:48:51,2026-03-01 11:00:00,NHL,Colorado Avalanche,Edmonton Oilers,-0.6,0.0,0.177,Fanduel,POINTS_SPREAD,1.3,0,100.0 +2026-03-18 22:32:00,2026-03-21 17:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,110.83 +2026-03-10 12:39:00,2026-03-10 17:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,169.23 +2026-03-14 03:12:00,2026-03-15 20:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.3,1,126.61 +2026-04-06 05:59:00,2026-04-07 04:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,56.4,0,100.0 +2026-04-03 10:25:00,2026-04-04 02:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,0,129.97 +2026-03-22 04:33:26,2026-03-22 04:00:00,NBA,Miami Heat,Milwaukee Bucks,-1.7,0.0,0.208,BetMGM,POINTS_SPREAD,0.2,1,116.48 +2026-03-21 01:44:55,2026-03-21 03:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.194,BetMGM,MONEYLINE,0.0,NA,156.64 +2026-03-16 02:23:00,2026-03-16 16:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,16.6,1,139.15 +2026-03-08 10:56:00,2026-03-09 04:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,1,100.0 +2026-03-27 20:21:00,2026-03-27 21:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,126.55 +2026-03-04 14:13:00,2026-03-07 01:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,149.51 +2026-03-17 03:12:00,2026-03-19 15:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,101.92 +2026-04-08 16:35:24,2026-04-08 16:00:00,NHL,New York Rangers,Florida Panthers,0.0,3.5,0.33,Fanduel,POINTS_TOTAL,4.8,0,106.8 +2026-03-24 10:52:00,2026-03-24 18:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,224.7,0,106.54 +2026-02-26 23:54:46,2026-02-27 00:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.421,Fanduel,MONEYLINE,0.0,NA,129.6 +2026-03-22 01:14:00,2026-03-22 02:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,103.51 +2026-03-23 14:17:45,2026-03-23 15:00:00,NHL,Boston Bruins,Edmonton Oilers,-1.6,0.0,0.232,BetMGM,POINTS_SPREAD,1.9,1,110.94 +2026-03-13 20:48:25,2026-03-13 20:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.669,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-15 01:14:00,2026-03-15 16:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,30.2,1,109.61 +2026-03-07 22:00:00,2026-03-08 08:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,150.25 +2026-03-30 09:01:00,2026-04-01 05:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.8,0,112.6 +2026-03-19 17:06:40,2026-03-19 19:00:00,NHL,Florida Panthers,Boston Bruins,-1.4,0.0,0.076,Fanduel,POINTS_SPREAD,0.4,0,119.42 +2026-03-16 20:37:13,2026-03-16 18:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,3.8,0.0,0.929,BetMGM,POINTS_SPREAD,2.0,0,120.53 +2026-04-15 11:21:00,2026-04-16 04:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,131.26 +2026-03-07 00:31:32,2026-03-07 00:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.703,Fanduel,MONEYLINE,0.0,NA,165.03 +2026-02-26 21:22:36,2026-02-26 21:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.67,BetMGM,MONEYLINE,0.0,NA,144.7 +2026-03-27 15:41:00,2026-03-30 15:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,228.7,0,125.49 +2026-02-27 03:33:12,2026-02-27 03:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.49,BetMGM,MONEYLINE,0.0,NA,162.31 +2026-03-18 04:54:00,2026-03-19 02:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-26 15:08:50,2026-03-26 15:00:00,NFL,Buffalo Bills,Philadelphia Eagles,2.2,0.0,0.288,Fanduel,POINTS_SPREAD,2.3,0,112.09 +2026-04-08 11:38:34,2026-04-08 11:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,-2.1,0.0,0.431,Fanduel,POINTS_SPREAD,3.9,1,111.17 +2026-04-10 20:44:00,2026-04-13 08:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-01 02:49:10,2026-03-01 02:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,214.6,0.851,BetMGM,POINTS_TOTAL,216.5,0,116.79 +2026-03-17 04:21:00,2026-03-18 13:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,131.72 +2026-03-21 02:28:28,2026-03-21 00:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.936,BetMGM,MONEYLINE,0.0,NA,116.63 +2026-02-20 07:14:00,2026-02-21 23:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,161.85 +2026-04-01 20:47:00,2026-04-03 08:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,1,122.02 +2026-03-26 16:35:00,2026-03-27 12:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,30.0,0,110.29 +2026-03-26 12:12:00,2026-03-28 02:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,59.0,0,100.0 +2026-04-19 16:05:13,2026-04-19 14:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.4,0.0,0.929,Fanduel,POINTS_SPREAD,1.8,1,124.82 +2026-03-13 22:23:27,2026-03-13 22:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.847,Fanduel,MONEYLINE,0.0,NA,132.56 +2026-04-09 18:13:00,2026-04-11 10:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,1,100.0 +2026-04-10 21:08:55,2026-04-10 20:00:00,NFL,Detroit Lions,Philadelphia Eagles,-4.8,0.0,0.744,BetMGM,POINTS_SPREAD,0.4,1,146.17 +2026-04-17 06:59:00,2026-04-19 23:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.8,1,100.0 +2026-04-06 03:52:00,2026-04-07 20:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.9,1,126.81 +2026-03-07 03:18:00,2026-03-09 23:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,6.7,0,112.67 +2026-04-08 02:55:00,2026-04-08 03:00:00,NBA,Phoenix Suns,Miami Heat,2.7,0.0,0.6,Fanduel,POINTS_SPREAD,4.8,0,101.26 +2026-03-17 03:15:08,2026-03-17 05:00:00,NBA,Dallas Mavericks,Phoenix Suns,-0.2,0.0,0.123,Fanduel,POINTS_SPREAD,0.9,0,113.31 +2026-04-14 11:14:00,2026-04-17 00:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,47.3,0,108.82 +2026-03-04 10:55:01,2026-03-04 10:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,5.5,0.0,0.739,Fanduel,POINTS_SPREAD,2.7,0,114.2 +2026-04-13 18:42:00,2026-04-14 04:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,101.8 +2026-03-02 16:39:00,2026-03-03 20:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,6.0,0,100.0 +2026-03-02 09:50:00,2026-03-04 11:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,210.67 +2026-03-07 11:15:00,2026-03-10 04:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,22.9,1,127.06 +2026-03-09 22:21:00,2026-03-11 14:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,239.4,0,100.0 +2026-03-20 04:33:00,2026-03-21 08:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,153.13 +2026-04-03 16:34:09,2026-04-03 14:00:00,NHL,Colorado Avalanche,Edmonton Oilers,3.8,0.0,0.912,Fanduel,POINTS_SPREAD,2.1,0,132.61 +2026-02-25 06:25:15,2026-02-25 05:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,61.0,0.757,Fanduel,POINTS_TOTAL,60.2,0,100.0 +2026-03-28 09:24:00,2026-03-29 18:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-25 07:39:38,2026-02-25 08:00:00,NBA,Phoenix Suns,Miami Heat,0.0,229.0,0.148,Fanduel,POINTS_TOTAL,232.6,1,120.37 +2026-04-17 07:12:48,2026-04-17 06:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.86,BetMGM,MONEYLINE,0.0,NA,109.37 +2026-04-05 23:15:36,2026-04-05 22:00:00,NBA,Denver Nuggets,Miami Heat,0.3,0.0,0.72,Fanduel,POINTS_SPREAD,2.2,1,122.53 +2026-04-17 11:47:00,2026-04-17 19:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.6,0,100.0 +2026-03-28 15:08:00,2026-03-28 23:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,4.9,0,122.16 +2026-04-08 15:29:00,2026-04-10 05:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,119.19 +2026-02-25 00:04:00,2026-02-25 11:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,1,139.46 +2026-03-01 04:46:00,2026-03-02 06:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,243.0,0,115.11 +2026-02-27 01:23:56,2026-02-27 02:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.333,BetMGM,MONEYLINE,0.0,NA,126.37 +2026-03-25 03:46:00,2026-03-27 07:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,55.1,0,116.04 +2026-04-16 20:20:21,2026-04-16 21:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,3.5,0.102,Fanduel,POINTS_TOTAL,3.8,1,125.36 +2026-03-23 09:28:08,2026-03-23 09:00:00,NBA,Golden State Warriors,Milwaukee Bucks,-5.6,0.0,0.323,BetMGM,POINTS_SPREAD,3.4,1,111.17 +2026-03-01 18:29:00,2026-03-03 04:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,40.9,0,111.11 +2026-02-21 18:14:25,2026-02-21 19:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.419,BetMGM,MONEYLINE,0.0,NA,173.9 +2026-03-22 18:00:02,2026-03-22 17:00:00,NHL,Florida Panthers,Vegas Golden Knights,2.7,0.0,0.678,Fanduel,POINTS_SPREAD,0.7,1,100.0 +2026-03-05 05:23:00,2026-03-08 03:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,43.3,1,108.58 +2026-03-08 20:56:00,2026-03-10 11:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,122.96 +2026-03-09 22:32:00,2026-03-11 14:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,74.0,0,100.0 +2026-03-01 13:39:00,2026-03-03 06:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,157.5 +2026-02-23 22:42:00,2026-02-26 20:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,230.7,0,136.54 +2026-04-01 14:13:39,2026-04-01 14:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.787,Fanduel,MONEYLINE,0.0,NA,100.74 +2026-04-20 04:08:07,2026-04-20 04:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,227.3,0.384,Fanduel,POINTS_TOTAL,228.7,1,123.89 +2026-03-17 17:28:00,2026-03-19 17:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,0,129.04 +2026-03-26 10:09:34,2026-03-26 12:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.081,BetMGM,MONEYLINE,0.0,NA,105.39 +2026-04-14 21:22:24,2026-04-14 20:00:00,NBA,Phoenix Suns,Miami Heat,0.0,238.4,0.93,Fanduel,POINTS_TOTAL,240.5,1,106.68 +2026-03-04 08:40:00,2026-03-06 06:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,126.54 +2026-02-22 14:10:38,2026-02-22 13:00:00,NBA,Los Angeles Lakers,Denver Nuggets,-1.2,0.0,0.748,Fanduel,POINTS_SPREAD,0.5,0,124.07 +2026-04-11 07:44:00,2026-04-13 04:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,0,111.61 +2026-02-19 17:11:00,2026-02-21 23:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,4.9,0,118.34 +2026-03-01 20:16:00,2026-03-04 13:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-05 08:15:46,2026-03-05 08:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.671,BetMGM,MONEYLINE,0.0,NA,108.84 +2026-03-28 21:41:00,2026-03-31 20:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,8.5,1,122.92 +2026-04-19 04:23:24,2026-04-19 05:00:00,NBA,Miami Heat,Denver Nuggets,-3.5,0.0,0.33,Fanduel,POINTS_SPREAD,2.0,1,109.86 +2026-03-18 17:24:00,2026-03-19 14:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,0,100.0 +2026-04-13 07:09:00,2026-04-14 18:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-14 04:38:00,2026-03-14 22:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,1,110.9 +2026-03-06 12:53:00,2026-03-06 13:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,105.4 +2026-03-17 14:55:00,2026-03-18 07:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,0,100.0 +2026-04-20 02:30:00,2026-04-20 19:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,1,138.39 +2026-03-07 16:28:00,2026-03-07 18:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-21 09:21:00,2026-02-21 14:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,1,117.73 +2026-03-24 01:55:09,2026-03-24 00:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.862,Fanduel,MONEYLINE,0.0,NA,145.09 +2026-02-25 20:17:02,2026-02-25 19:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,226.4,0.828,BetMGM,POINTS_TOTAL,228.2,0,102.86 +2026-02-24 05:28:42,2026-02-24 07:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.215,BetMGM,MONEYLINE,0.0,NA,150.8 +2026-04-21 00:18:06,2026-04-20 22:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,41.9,0.895,Fanduel,POINTS_TOTAL,31.8,0,114.47 +2026-03-16 22:07:58,2026-03-16 23:00:00,NFL,Kansas City Chiefs,Buffalo Bills,-0.4,0.0,0.161,Fanduel,POINTS_SPREAD,2.4,1,128.79 +2026-04-14 08:39:00,2026-04-15 08:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,143.01 +2026-04-19 15:12:00,2026-04-21 04:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,107.84 +2026-04-09 09:20:00,2026-04-11 13:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,1,113.31 +2026-03-05 07:30:00,2026-03-06 09:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,227.2,1,100.0 +2026-04-04 18:07:40,2026-04-04 18:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.426,Fanduel,MONEYLINE,0.0,NA,141.29 +2026-03-04 09:47:12,2026-03-04 09:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.34,BetMGM,MONEYLINE,0.0,NA,127.23 +2026-03-07 03:17:54,2026-03-07 04:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,227.4,0.105,Fanduel,POINTS_TOTAL,223.8,1,100.0 +2026-03-18 20:42:00,2026-03-19 15:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.1,0,130.19 +2026-03-21 11:42:00,2026-03-21 12:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,110.17 +2026-02-27 09:22:00,2026-02-28 10:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.4,1,113.56 +2026-03-26 22:15:00,2026-03-27 00:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,100.0 +2026-03-30 19:07:00,2026-04-01 21:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,1,102.75 +2026-04-02 23:05:00,2026-04-03 06:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,5.1,0,100.0 +2026-04-15 18:14:07,2026-04-15 18:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.134,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-13 07:23:00,2026-03-15 22:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,240.2,0,123.4 +2026-02-22 10:49:19,2026-02-22 09:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.724,Fanduel,MONEYLINE,0.0,NA,114.14 +2026-04-07 22:16:00,2026-04-10 10:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,120.99 +2026-03-16 20:08:37,2026-03-16 19:00:00,NFL,San Francisco 49ers,Detroit Lions,1.8,0.0,0.409,BetMGM,POINTS_SPREAD,2.9,0,114.94 +2026-04-11 01:29:00,2026-04-13 11:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,1,128.06 +2026-03-26 23:07:08,2026-03-26 21:00:00,NHL,Florida Panthers,Boston Bruins,-0.1,0.0,0.823,Fanduel,POINTS_SPREAD,1.2,0,133.52 +2026-03-29 03:44:00,2026-03-29 07:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,6.3,0,106.34 +2026-03-26 02:12:00,2026-03-27 08:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,1,105.1 +2026-04-01 03:59:12,2026-04-01 02:00:00,NBA,Miami Heat,Phoenix Suns,-0.3,0.0,0.89,Fanduel,POINTS_SPREAD,0.6,0,119.77 +2026-04-15 17:33:50,2026-04-15 19:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,46.0,0.238,BetMGM,POINTS_TOTAL,51.0,0,100.0 +2026-03-07 12:14:00,2026-03-10 03:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-06 03:48:21,2026-03-06 02:00:00,NBA,Golden State Warriors,Miami Heat,-2.1,0.0,0.702,BetMGM,POINTS_SPREAD,1.7,0,100.0 +2026-04-02 03:46:00,2026-04-02 12:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,6.2,0,106.83 +2026-03-26 21:33:00,2026-03-27 17:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,19.8,1,100.0 +2026-02-22 16:43:00,2026-02-23 13:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,1,107.01 +2026-04-20 19:08:06,2026-04-20 19:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.595,BetMGM,MONEYLINE,0.0,NA,156.1 +2026-04-12 06:56:00,2026-04-14 06:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,17.7,0,110.48 +2026-04-12 17:36:00,2026-04-13 10:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,0,131.37 +2026-04-08 06:05:00,2026-04-08 17:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.6,1,100.0 +2026-02-25 03:50:00,2026-02-25 22:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,115.54 +2026-02-24 21:00:36,2026-02-24 20:00:00,NFL,Baltimore Ravens,Dallas Cowboys,-2.7,0.0,0.62,Fanduel,POINTS_SPREAD,2.0,0,100.0 +2026-04-16 08:23:13,2026-04-16 08:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,217.2,0.779,Fanduel,POINTS_TOTAL,213.9,1,115.35 +2026-03-06 05:21:00,2026-03-08 01:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,1,152.46 +2026-02-28 12:49:00,2026-03-01 18:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,227.5,1,100.0 +2026-04-10 18:09:00,2026-04-12 07:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,1,116.5 +2026-03-26 23:37:48,2026-03-26 23:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,-2.0,0.0,0.41,BetMGM,POINTS_SPREAD,0.7,0,100.0 +2026-02-26 18:56:56,2026-02-26 20:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.333,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-01 01:44:49,2026-03-01 03:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.349,BetMGM,MONEYLINE,0.0,NA,130.97 +2026-03-04 04:37:00,2026-03-05 08:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.3,0,100.0 +2026-03-20 18:03:00,2026-03-23 07:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.8,0,126.35 +2026-04-02 15:42:00,2026-04-03 00:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,115.9 +2026-04-10 03:46:00,2026-04-10 13:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,27.0,1,123.4 +2026-03-20 16:26:45,2026-03-20 16:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,3.5,0.632,BetMGM,POINTS_TOTAL,3.5,0,100.0 +2026-04-18 06:51:55,2026-04-18 06:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.794,Fanduel,MONEYLINE,0.0,NA,134.65 +2026-03-02 22:28:00,2026-03-03 08:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,144.78 +2026-03-22 19:39:16,2026-03-22 19:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.846,BetMGM,MONEYLINE,0.0,NA,116.83 +2026-03-04 11:24:00,2026-03-07 10:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,50.8,1,116.35 +2026-02-27 05:36:00,2026-03-01 00:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,60.7,0,108.72 +2026-02-23 20:03:40,2026-02-23 19:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.776,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-03 21:36:54,2026-04-03 22:00:00,NBA,Denver Nuggets,Boston Celtics,2.1,0.0,0.405,Fanduel,POINTS_SPREAD,2.2,0,160.94 +2026-04-12 22:50:00,2026-04-12 23:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.0,0,130.97 +2026-02-25 04:47:00,2026-02-27 12:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,171.1 +2026-03-28 22:56:00,2026-03-31 22:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.3,0,100.41 +2026-03-09 06:58:00,2026-03-09 09:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,1,103.31 +2026-03-29 22:40:12,2026-03-30 00:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.29,BetMGM,MONEYLINE,0.0,NA,164.02 +2026-02-26 18:11:00,2026-02-28 17:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,1,125.54 +2026-02-24 16:01:00,2026-02-27 13:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,122.23 +2026-04-09 18:14:00,2026-04-12 18:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,17.3,0,100.0 +2026-02-22 09:12:00,2026-02-24 16:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,0,122.39 +2026-03-04 18:49:00,2026-03-06 04:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,1,111.72 +2026-03-30 07:27:28,2026-03-30 08:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,18.0,0.286,BetMGM,POINTS_TOTAL,18.8,1,118.88 +2026-04-17 17:24:00,2026-04-20 12:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,149.84 +2026-04-18 22:21:00,2026-04-21 08:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,13.7,1,100.0 +2026-04-12 21:59:48,2026-04-12 20:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.81,BetMGM,MONEYLINE,0.0,NA,101.45 +2026-03-25 20:29:00,2026-03-26 02:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,0,100.0 +2026-04-18 07:58:00,2026-04-19 18:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,1,100.0 +2026-02-26 18:51:00,2026-02-28 02:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,224.9,1,123.9 +2026-03-20 00:17:15,2026-03-20 01:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,39.9,0.207,Fanduel,POINTS_TOTAL,45.1,1,114.79 +2026-03-03 05:47:00,2026-03-03 20:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,0,100.0 +2026-04-19 09:26:00,2026-04-20 19:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,112.34 +2026-03-06 02:22:00,2026-03-08 09:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.6,0,138.41 +2026-04-21 11:02:34,2026-04-21 10:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,13.5,0.531,Fanduel,POINTS_TOTAL,19.4,0,103.09 +2026-03-07 03:05:27,2026-03-07 02:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,16.8,0.447,Fanduel,POINTS_TOTAL,14.9,0,117.7 +2026-03-09 10:34:00,2026-03-12 08:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,0,116.88 +2026-04-11 18:26:00,2026-04-12 19:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,0,130.25 +2026-04-04 02:56:57,2026-04-04 03:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.272,BetMGM,MONEYLINE,0.0,NA,128.78 +2026-03-20 05:09:00,2026-03-20 09:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.0,0,116.58 +2026-03-02 15:09:00,2026-03-05 04:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,130.75 +2026-03-07 00:52:00,2026-03-08 23:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,1,113.72 +2026-04-17 04:26:00,2026-04-17 18:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,43.3,1,113.16 +2026-02-26 14:50:00,2026-03-01 09:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.8,0,100.0 +2026-03-16 07:54:00,2026-03-18 08:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,127.25 +2026-03-06 12:12:00,2026-03-08 08:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,164.58 +2026-02-18 23:46:00,2026-02-20 21:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,1,118.04 +2026-04-15 16:42:00,2026-04-17 06:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,1,121.25 +2026-03-03 06:13:00,2026-03-06 01:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-10 03:30:50,2026-04-10 03:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.3,0.0,0.738,Fanduel,POINTS_SPREAD,3.9,0,144.22 +2026-04-09 13:10:00,2026-04-12 10:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,145.24 +2026-02-24 10:01:00,2026-02-25 07:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,138.74 +2026-03-30 00:30:37,2026-03-30 02:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,9.0,0.259,BetMGM,POINTS_TOTAL,13.5,0,110.47 +2026-03-11 10:07:00,2026-03-11 15:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,6.6,1,115.31 +2026-03-04 19:27:48,2026-03-04 19:00:00,NFL,Detroit Lions,Baltimore Ravens,-4.6,0.0,0.71,Fanduel,POINTS_SPREAD,0.5,1,132.74 +2026-03-23 16:48:00,2026-03-25 15:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,34.5,1,109.72 +2026-03-18 16:00:58,2026-03-18 16:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,46.2,0.161,BetMGM,POINTS_TOTAL,44.6,0,120.72 +2026-04-18 15:39:00,2026-04-19 13:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,138.9 +2026-04-03 00:25:38,2026-04-03 00:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.898,Fanduel,MONEYLINE,0.0,NA,140.24 +2026-02-24 07:51:00,2026-02-26 03:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.8,0,132.41 +2026-04-06 17:49:00,2026-04-09 10:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,113.28 +2026-02-23 19:31:07,2026-02-23 20:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,56.2,0.384,BetMGM,POINTS_TOTAL,54.1,0,106.73 +2026-04-03 17:47:37,2026-04-03 17:00:00,NBA,Golden State Warriors,Los Angeles Lakers,3.7,0.0,0.859,Fanduel,POINTS_SPREAD,0.4,0,124.35 +2026-03-13 03:23:00,2026-03-15 18:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-22 00:01:00,2026-02-23 13:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,48.3,0,100.0 +2026-03-04 06:34:00,2026-03-05 15:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,225.6,0,129.96 +2026-03-06 12:18:00,2026-03-09 08:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,0,103.38 +2026-03-11 22:35:46,2026-03-11 22:00:00,NBA,Golden State Warriors,Miami Heat,-1.1,0.0,0.621,Fanduel,POINTS_SPREAD,2.3,1,132.16 +2026-03-21 11:41:00,2026-03-21 20:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,175.14 +2026-03-13 01:22:00,2026-03-14 21:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,0,110.24 +2026-03-24 05:31:00,2026-03-26 21:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,1,100.0 +2026-02-28 14:14:25,2026-02-28 14:00:00,NHL,Boston Bruins,Edmonton Oilers,0.1,0.0,0.469,Fanduel,POINTS_SPREAD,0.4,1,118.25 +2026-03-01 11:56:34,2026-03-01 13:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,34.6,0.331,BetMGM,POINTS_TOTAL,28.6,1,100.0 +2026-03-23 14:26:00,2026-03-24 08:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,1,105.51 +2026-03-11 01:47:00,2026-03-13 18:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-11 09:36:00,2026-04-12 22:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,107.3 +2026-03-09 16:15:00,2026-03-11 13:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,236.3,0,111.73 +2026-03-24 12:26:00,2026-03-24 14:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,0,101.7 +2026-03-16 01:33:55,2026-03-16 01:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.594,Fanduel,MONEYLINE,0.0,NA,139.25 +2026-03-17 05:43:00,2026-03-19 09:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,40.7,0,100.0 +2026-03-04 10:31:52,2026-03-04 10:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,-3.5,0.0,0.516,BetMGM,POINTS_SPREAD,2.9,0,101.08 +2026-02-25 13:41:00,2026-02-28 03:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,165.31 +2026-03-17 11:53:00,2026-03-19 18:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,228.3,0,103.09 +2026-03-03 20:30:00,2026-03-05 11:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.7,1,100.0 +2026-04-10 01:03:00,2026-04-12 23:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,152.51 +2026-04-08 10:09:00,2026-04-10 03:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,234.1,0,104.24 +2026-04-01 21:52:00,2026-04-04 03:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,0,124.67 +2026-03-23 19:48:15,2026-03-23 21:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.8,0.0,0.207,BetMGM,POINTS_SPREAD,2.3,0,140.66 +2026-03-07 08:18:48,2026-03-07 09:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,5.0,0.11,BetMGM,POINTS_TOTAL,6.2,1,110.53 +2026-02-22 15:35:00,2026-02-24 06:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,183.16 +2026-03-30 10:54:00,2026-03-30 17:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.0,1,100.0 +2026-03-23 08:02:00,2026-03-24 04:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.5,1,100.0 +2026-03-12 04:29:00,2026-03-14 02:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,39.6,0,100.0 +2026-04-07 22:20:51,2026-04-07 22:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.127,Fanduel,MONEYLINE,0.0,NA,107.42 +2026-03-22 02:00:00,2026-03-24 08:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-15 08:13:00,2026-04-16 10:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,234.6,0,125.17 +2026-04-16 04:56:00,2026-04-17 22:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,1,100.0 +2026-04-19 01:32:00,2026-04-21 06:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,0,133.22 +2026-03-20 01:19:32,2026-03-20 01:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.753,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-04 07:11:28,2026-04-04 08:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,226.8,0.286,Fanduel,POINTS_TOTAL,224.7,0,121.66 +2026-02-27 02:24:45,2026-02-27 01:00:00,NBA,Denver Nuggets,Miami Heat,0.0,245.9,0.482,Fanduel,POINTS_TOTAL,242.7,0,116.34 +2026-04-04 04:38:00,2026-04-06 07:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,1,100.0 +2026-03-12 11:09:00,2026-03-13 06:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,56.2,0,113.97 +2026-03-05 01:29:19,2026-03-05 01:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,234.9,0.724,BetMGM,POINTS_TOTAL,237.3,1,110.99 +2026-04-15 03:15:00,2026-04-15 13:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,226.2,1,116.83 +2026-03-26 04:21:54,2026-03-26 04:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.655,Fanduel,MONEYLINE,0.0,NA,142.37 +2026-04-15 17:31:39,2026-04-15 17:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,22.2,0.587,Fanduel,POINTS_TOTAL,20.2,1,116.15 +2026-03-30 09:13:00,2026-04-01 14:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,45.0,1,100.0 +2026-03-10 22:20:00,2026-03-12 22:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.5,0,102.34 +2026-04-06 15:01:00,2026-04-07 19:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,103.42 +2026-04-14 14:44:00,2026-04-16 18:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.0,1,104.62 +2026-03-15 03:11:02,2026-03-15 04:00:00,NHL,Florida Panthers,Edmonton Oilers,-2.0,0.0,0.428,BetMGM,POINTS_SPREAD,2.2,0,123.49 +2026-04-19 20:28:00,2026-04-20 02:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,175.72 +2026-03-13 00:39:54,2026-03-13 00:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.605,Fanduel,MONEYLINE,0.0,NA,106.58 +2026-04-14 01:22:13,2026-04-14 02:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.179,BetMGM,MONEYLINE,0.0,NA,150.94 +2026-03-16 07:26:21,2026-03-16 08:00:00,NBA,Denver Nuggets,Milwaukee Bucks,-0.8,0.0,0.252,BetMGM,POINTS_SPREAD,0.1,1,126.93 +2026-02-20 00:58:00,2026-02-22 06:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.0,1,114.89 +2026-03-15 03:07:00,2026-03-17 07:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,102.38 +2026-04-08 01:55:00,2026-04-10 06:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,1,110.23 +2026-02-21 12:09:00,2026-02-23 14:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,117.57 +2026-04-05 20:08:00,2026-04-08 06:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,128.74 +2026-03-23 02:04:00,2026-03-23 23:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,132.51 +2026-03-04 00:49:52,2026-03-04 00:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.9,0.0,0.466,BetMGM,POINTS_SPREAD,3.5,0,100.0 +2026-02-20 12:27:57,2026-02-20 13:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,232.9,0.522,BetMGM,POINTS_TOTAL,237.3,1,105.06 +2026-04-04 02:52:31,2026-04-04 03:00:00,NFL,San Francisco 49ers,Dallas Cowboys,2.9,0.0,0.064,Fanduel,POINTS_SPREAD,1.3,1,105.35 +2026-04-13 09:30:00,2026-04-15 23:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,1,118.42 +2026-03-12 20:06:00,2026-03-13 10:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.0,0,100.0 +2026-03-06 14:12:19,2026-03-06 15:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,235.1,0.124,BetMGM,POINTS_TOTAL,236.2,0,100.0 +2026-04-05 08:05:54,2026-04-05 08:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,34.7,0.755,BetMGM,POINTS_TOTAL,32.8,0,121.79 +2026-04-06 23:10:00,2026-04-08 04:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,1,125.93 +2026-04-17 07:41:00,2026-04-18 05:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,106.27 +2026-03-16 15:45:00,2026-03-18 03:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,134.51 +2026-04-05 09:35:00,2026-04-07 18:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,0,116.87 +2026-02-20 23:21:00,2026-02-23 02:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,0,109.09 +2026-02-27 13:16:15,2026-02-27 13:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.107,Fanduel,MONEYLINE,0.0,NA,140.77 +2026-04-10 06:13:07,2026-04-10 07:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,36.7,0.184,Fanduel,POINTS_TOTAL,38.3,0,101.67 +2026-03-14 16:03:21,2026-03-14 16:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,236.4,0.752,BetMGM,POINTS_TOTAL,236.5,1,126.63 +2026-03-12 02:44:00,2026-03-13 00:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,1,125.36 +2026-03-10 04:18:00,2026-03-10 09:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.9,1,115.33 +2026-03-18 06:48:00,2026-03-19 08:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.3,0,100.0 +2026-02-20 17:05:38,2026-02-20 17:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,11.5,0.748,BetMGM,POINTS_TOTAL,10.5,1,101.68 +2026-02-21 15:21:00,2026-02-22 00:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,1,140.71 +2026-02-20 05:32:00,2026-02-20 16:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,67.4,0,101.11 +2026-04-08 07:44:00,2026-04-09 08:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,234.1,0,110.38 +2026-04-20 02:34:00,2026-04-20 12:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.0,0,100.0 +2026-02-26 02:58:00,2026-02-28 08:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,0,144.33 +2026-03-19 00:53:00,2026-03-21 12:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,0,100.0 +2026-04-16 01:12:00,2026-04-16 07:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,59.3,0,106.32 +2026-04-12 23:38:00,2026-04-14 19:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,1,132.82 +2026-02-25 10:15:00,2026-02-28 10:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,5.6,0,118.08 +2026-03-16 01:53:39,2026-03-16 02:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,236.8,0.737,BetMGM,POINTS_TOTAL,232.6,0,112.06 +2026-03-22 16:20:00,2026-03-23 07:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,62.8,0,109.08 +2026-04-08 04:37:24,2026-04-08 05:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,-1.0,0.0,0.43,Fanduel,POINTS_SPREAD,1.9,0,100.0 +2026-04-16 18:44:00,2026-04-16 19:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,109.44 +2026-03-13 16:08:03,2026-03-13 17:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,15.0,0.067,BetMGM,POINTS_TOTAL,11.8,0,129.16 +2026-03-24 14:05:00,2026-03-27 13:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,109.76 +2026-03-31 17:12:00,2026-04-03 05:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,114.61 +2026-03-16 17:12:40,2026-03-16 16:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.426,BetMGM,MONEYLINE,0.0,NA,110.89 +2026-03-13 18:36:00,2026-03-16 00:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.2,0,100.0 +2026-03-26 23:12:15,2026-03-26 22:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.557,Fanduel,MONEYLINE,0.0,NA,149.17 +2026-03-21 14:09:48,2026-03-21 14:00:00,NHL,Florida Panthers,New York Rangers,2.7,0.0,0.21,BetMGM,POINTS_SPREAD,0.3,1,107.44 +2026-02-22 08:12:00,2026-02-24 09:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,1,100.0 +2026-03-10 18:15:36,2026-03-10 19:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,217.7,0.12,BetMGM,POINTS_TOTAL,220.2,0,100.0 +2026-04-02 00:23:00,2026-04-03 06:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,119.29 +2026-04-10 06:06:28,2026-04-10 06:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.286,Fanduel,MONEYLINE,0.0,NA,154.34 +2026-02-24 10:07:00,2026-02-25 17:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,225.0,1,130.68 +2026-03-28 09:18:22,2026-03-28 08:00:00,NHL,Boston Bruins,Toronto Maple Leafs,1.4,0.0,0.741,Fanduel,POINTS_SPREAD,2.8,1,108.36 +2026-03-28 18:31:26,2026-03-28 18:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.808,Fanduel,MONEYLINE,0.0,NA,136.83 +2026-04-11 03:47:40,2026-04-11 02:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.676,BetMGM,MONEYLINE,0.0,NA,112.48 +2026-04-05 17:58:55,2026-04-05 16:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.844,Fanduel,MONEYLINE,0.0,NA,117.64 +2026-03-13 23:20:00,2026-03-14 18:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,125.88 +2026-03-28 00:59:00,2026-03-28 12:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-22 15:37:00,2026-02-22 19:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,219.63 +2026-04-20 06:18:52,2026-04-20 04:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,5.0,0.916,BetMGM,POINTS_TOTAL,12.6,1,124.36 +2026-04-02 22:28:00,2026-04-03 09:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,105.33 +2026-02-24 05:33:00,2026-02-24 06:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,0,107.42 +2026-03-13 15:01:00,2026-03-15 11:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,0,131.68 +2026-03-22 16:36:00,2026-03-22 19:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,4.6,0,121.39 +2026-03-08 03:10:00,2026-03-08 12:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,237.0,1,115.1 +2026-03-01 04:06:00,2026-03-03 15:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,1,130.89 +2026-04-06 04:48:00,2026-04-07 21:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,0,100.0 +2026-04-19 23:34:00,2026-04-21 00:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,19.3,1,100.0 +2026-03-10 19:58:00,2026-03-11 10:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,116.36 +2026-04-19 08:57:45,2026-04-19 10:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.232,Fanduel,MONEYLINE,0.0,NA,124.4 +2026-03-29 13:20:00,2026-03-31 21:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,33.6,1,127.01 +2026-03-15 23:35:00,2026-03-16 16:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,34.5,1,118.5 +2026-02-20 10:19:00,2026-02-22 18:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,49.3,1,142.2 +2026-03-21 20:51:00,2026-03-23 19:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,11.7,0,100.0 +2026-03-31 10:47:43,2026-03-31 09:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.904,BetMGM,MONEYLINE,0.0,NA,121.4 +2026-04-10 06:45:20,2026-04-10 07:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.613,Fanduel,MONEYLINE,0.0,NA,158.08 +2026-04-05 09:26:00,2026-04-06 12:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,9.6,0,115.46 +2026-03-17 04:30:49,2026-03-17 04:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.3,0.0,0.199,Fanduel,POINTS_SPREAD,5.5,1,122.05 +2026-04-06 00:38:00,2026-04-08 15:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.27 +2026-03-18 23:44:00,2026-03-20 16:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.3,1,126.78 +2026-04-21 04:58:49,2026-04-21 04:00:00,NBA,Miami Heat,Los Angeles Lakers,0.6,0.0,0.549,Fanduel,POINTS_SPREAD,2.3,0,124.02 +2026-03-10 07:54:00,2026-03-13 07:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,0,100.0 +2026-04-17 21:38:37,2026-04-17 21:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,14.0,0.759,Fanduel,POINTS_TOTAL,16.9,1,122.99 +2026-03-05 05:58:46,2026-03-05 05:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.771,Fanduel,MONEYLINE,0.0,NA,118.43 +2026-04-15 23:38:00,2026-04-18 11:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,0,123.37 +2026-03-22 21:48:00,2026-03-24 12:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,162.2 +2026-04-08 19:47:00,2026-04-11 04:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.8,1,119.74 +2026-03-24 12:43:00,2026-03-26 21:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,5.5,0,100.0 +2026-03-09 03:58:21,2026-03-09 03:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.452,Fanduel,MONEYLINE,0.0,NA,122.82 +2026-03-09 00:30:00,2026-03-09 23:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,110.72 +2026-04-03 11:32:00,2026-04-05 07:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,37.5,0,100.82 +2026-03-02 19:47:00,2026-03-04 12:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,120.19 +2026-03-31 19:34:00,2026-04-01 15:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,163.04 +2026-04-15 01:44:20,2026-04-15 02:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,4.1,0.513,BetMGM,POINTS_TOTAL,7.2,0,118.01 +2026-03-21 11:05:02,2026-03-21 09:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,32.7,0.728,BetMGM,POINTS_TOTAL,32.5,0,100.0 +2026-03-07 02:26:42,2026-03-07 02:00:00,NBA,Milwaukee Bucks,Golden State Warriors,-0.8,0.0,0.615,BetMGM,POINTS_SPREAD,3.3,0,100.0 +2026-03-02 01:36:00,2026-03-04 08:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,227.5,1,103.14 +2026-03-18 09:00:00,2026-03-21 07:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,120.86 +2026-02-21 00:40:00,2026-02-23 13:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.5,1,100.0 +2026-04-07 16:57:48,2026-04-07 17:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.61,Fanduel,MONEYLINE,0.0,NA,144.32 +2026-04-13 09:20:00,2026-04-16 09:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,6.3,1,101.74 +2026-02-23 17:14:16,2026-02-23 18:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,3.5,0.146,BetMGM,POINTS_TOTAL,3.5,0,119.85 +2026-03-12 18:45:00,2026-03-13 13:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,5.6,0,104.19 +2026-04-04 04:56:00,2026-04-06 23:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,1,119.87 +2026-03-14 19:06:58,2026-03-14 19:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.211,BetMGM,MONEYLINE,0.0,NA,109.91 +2026-03-23 12:32:52,2026-03-23 13:00:00,NBA,Milwaukee Bucks,Miami Heat,-2.7,0.0,0.316,Fanduel,POINTS_SPREAD,4.3,0,100.0 +2026-04-14 12:59:03,2026-04-14 11:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.817,Fanduel,MONEYLINE,0.0,NA,145.76 +2026-04-11 14:43:00,2026-04-11 23:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.4,1,145.14 +2026-02-22 13:47:00,2026-02-25 11:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,28.9,1,112.33 +2026-03-17 21:36:00,2026-03-19 13:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,9.0,0,131.1 +2026-03-19 21:28:00,2026-03-20 07:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,0,123.57 +2026-04-08 17:56:00,2026-04-11 13:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.9,0,107.93 +2026-03-06 15:28:00,2026-03-07 06:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,157.75 +2026-03-18 03:52:00,2026-03-18 12:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,0,100.0 +2026-03-31 08:05:38,2026-03-31 09:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,3.5,0.198,BetMGM,POINTS_TOTAL,4.0,0,101.14 +2026-04-16 23:58:00,2026-04-17 14:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,143.04 +2026-03-09 22:31:00,2026-03-11 00:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,226.1,0,109.26 +2026-04-09 14:11:00,2026-04-10 18:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,38.1,1,100.0 +2026-04-10 02:25:00,2026-04-11 04:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,158.94 +2026-04-05 19:34:00,2026-04-06 11:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,0,117.32 +2026-03-08 14:25:21,2026-03-08 13:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,9.9,0.852,BetMGM,POINTS_TOTAL,3.5,1,100.0 +2026-02-23 21:34:01,2026-02-23 22:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.289,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-04 06:04:00,2026-03-05 05:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,224.1,0,100.0 +2026-02-27 14:20:45,2026-02-27 13:00:00,NBA,Miami Heat,Phoenix Suns,1.5,0.0,0.582,Fanduel,POINTS_SPREAD,2.1,1,102.78 +2026-04-12 15:44:00,2026-04-13 04:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,138.47 +2026-04-05 04:58:00,2026-04-06 15:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,225.3,1,102.89 +2026-02-28 04:35:42,2026-02-28 04:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.5,0.0,0.765,Fanduel,POINTS_SPREAD,3.0,1,100.0 +2026-03-24 13:55:00,2026-03-24 23:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,115.64 +2026-04-20 15:36:00,2026-04-20 18:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.8,1,143.77 +2026-02-22 18:38:00,2026-02-22 19:00:00,NBA,Phoenix Suns,Miami Heat,1.7,0.0,0.1,Fanduel,POINTS_SPREAD,0.9,0,119.31 +2026-04-11 21:10:33,2026-04-11 21:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.242,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-03 02:22:14,2026-03-03 03:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,222.5,0.368,BetMGM,POINTS_TOTAL,221.3,1,107.86 +2026-04-01 15:14:00,2026-04-02 10:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.7,0,100.0 +2026-02-25 18:04:00,2026-02-28 04:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,43.7,0,114.79 +2026-03-11 18:24:00,2026-03-12 01:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,223.6,1,108.2 +2026-02-23 00:13:21,2026-02-23 00:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.552,BetMGM,MONEYLINE,0.0,NA,113.93 +2026-03-10 07:04:00,2026-03-13 00:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,160.85 +2026-03-14 01:02:51,2026-03-14 00:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,58.8,0.727,Fanduel,POINTS_TOTAL,61.8,1,117.74 +2026-04-10 09:38:00,2026-04-13 05:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-08 08:59:00,2026-04-08 23:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,144.86 +2026-04-10 04:59:27,2026-04-10 05:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.247,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-21 19:15:06,2026-02-21 18:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,7.9,0.795,Fanduel,POINTS_TOTAL,8.2,0,121.59 +2026-04-17 06:57:00,2026-04-17 20:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,165.05 +2026-03-02 02:13:44,2026-03-02 01:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,17.2,0.443,BetMGM,POINTS_TOTAL,14.5,1,100.0 +2026-03-24 07:21:00,2026-03-24 09:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,130.42 +2026-02-27 10:22:00,2026-02-28 11:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,115.61 +2026-04-03 13:00:00,2026-04-05 02:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.0,0,108.76 +2026-02-25 15:06:00,2026-02-28 01:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,1,135.45 +2026-03-15 01:21:00,2026-03-17 11:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,29.4,1,106.69 +2026-03-25 11:17:44,2026-03-25 10:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,220.8,0.943,BetMGM,POINTS_TOTAL,222.5,0,100.0 +2026-03-02 20:09:00,2026-03-05 09:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,148.85 +2026-03-09 07:11:00,2026-03-09 22:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,1,105.78 +2026-03-16 18:08:00,2026-03-18 06:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,123.64 +2026-02-23 02:49:00,2026-02-25 21:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,48.7,0,100.0 +2026-03-15 14:37:45,2026-03-15 16:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.282,BetMGM,MONEYLINE,0.0,NA,101.56 +2026-04-08 14:48:00,2026-04-11 03:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,106.8 +2026-02-23 21:19:00,2026-02-24 07:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,14.3,0,119.93 +2026-04-10 22:52:40,2026-04-10 22:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.1,0.0,0.376,BetMGM,POINTS_SPREAD,1.3,1,100.0 +2026-04-02 01:18:00,2026-04-03 22:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,181.02 +2026-04-04 18:24:00,2026-04-07 08:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,0,100.0 +2026-03-02 13:46:00,2026-03-03 15:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.9,0,100.0 +2026-03-17 14:17:01,2026-03-17 14:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,224.1,0.739,BetMGM,POINTS_TOTAL,216.1,1,100.0 +2026-04-02 19:14:00,2026-04-05 13:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.3,1,100.0 +2026-03-01 15:37:00,2026-03-01 23:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,61.9,1,100.0 +2026-03-14 02:03:00,2026-03-15 02:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,5.5,1,112.43 +2026-03-04 11:27:00,2026-03-04 22:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,0,122.66 +2026-04-18 05:09:51,2026-04-18 04:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,57.7,0.627,BetMGM,POINTS_TOTAL,60.6,0,100.0 +2026-04-12 20:44:00,2026-04-14 18:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,4.5,1,109.92 +2026-04-06 17:55:00,2026-04-07 03:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,0,147.37 +2026-04-05 00:49:00,2026-04-07 11:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,1,106.96 +2026-02-25 22:52:00,2026-02-28 03:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,135.16 +2026-04-06 00:13:26,2026-04-05 23:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,14.8,0.558,BetMGM,POINTS_TOTAL,12.6,0,113.62 +2026-04-02 02:16:00,2026-04-04 20:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,227.5,1,111.81 +2026-04-02 17:40:26,2026-04-02 16:00:00,NBA,Boston Celtics,Miami Heat,0.0,220.3,0.758,BetMGM,POINTS_TOTAL,219.9,0,118.09 +2026-02-28 08:55:57,2026-02-28 08:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.872,Fanduel,MONEYLINE,0.0,NA,121.64 +2026-04-11 06:33:00,2026-04-14 06:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,4.0,1,128.27 +2026-03-26 11:55:00,2026-03-29 11:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,0,100.0 +2026-02-21 14:48:00,2026-02-22 09:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,0,120.89 +2026-04-09 10:55:00,2026-04-10 06:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,162.1 +2026-03-16 17:41:00,2026-03-17 19:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,250.5,0,110.01 +2026-02-23 12:50:00,2026-02-25 01:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,122.84 +2026-02-24 09:42:54,2026-02-24 08:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,52.0,0.755,Fanduel,POINTS_TOTAL,50.5,0,120.93 +2026-03-04 12:08:00,2026-03-06 09:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,1,106.5 +2026-02-26 02:48:15,2026-02-26 02:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.357,Fanduel,MONEYLINE,0.0,NA,159.45 +2026-03-23 10:29:12,2026-03-23 10:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.79,Fanduel,MONEYLINE,0.0,NA,163.82 +2026-03-13 21:06:00,2026-03-14 09:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.7,1,113.72 +2026-03-02 02:50:00,2026-03-03 17:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,204.3,1,116.0 +2026-03-20 05:23:00,2026-03-23 05:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,1,123.65 +2026-04-05 23:28:00,2026-04-07 17:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-24 05:41:00,2026-02-24 13:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,1,128.05 +2026-02-21 11:25:00,2026-02-23 09:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,133.37 +2026-02-28 10:15:00,2026-03-01 00:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.2,1,103.05 +2026-03-14 20:34:00,2026-03-15 08:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,105.58 +2026-03-27 20:00:00,2026-03-28 03:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,115.31 +2026-03-29 21:38:25,2026-03-29 21:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.919,Fanduel,MONEYLINE,0.0,NA,110.69 +2026-02-22 11:57:00,2026-02-22 21:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.61 +2026-03-02 00:38:00,2026-03-03 06:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,246.1,0,100.0 +2026-04-09 14:41:00,2026-04-09 21:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-08 04:43:50,2026-04-08 05:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,54.6,0.538,Fanduel,POINTS_TOTAL,50.4,1,108.34 +2026-02-21 05:48:25,2026-02-21 04:00:00,NBA,Golden State Warriors,Denver Nuggets,-3.6,0.0,0.619,BetMGM,POINTS_SPREAD,1.7,0,100.0 +2026-03-11 11:10:40,2026-03-11 09:00:00,NHL,Boston Bruins,Edmonton Oilers,2.5,0.0,0.826,Fanduel,POINTS_SPREAD,2.7,0,123.41 +2026-03-04 01:02:00,2026-03-04 02:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,1,121.51 +2026-04-17 17:28:00,2026-04-18 18:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,225.0,1,104.21 +2026-03-07 15:57:00,2026-03-08 15:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.9,0,112.1 +2026-04-06 16:47:00,2026-04-07 04:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,0,100.0 +2026-04-19 22:26:00,2026-04-21 04:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,203.7,0,129.0 +2026-04-17 15:51:00,2026-04-18 00:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,1,100.0 +2026-03-03 05:09:00,2026-03-03 07:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,138.7 +2026-03-22 09:34:00,2026-03-23 03:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,0,128.32 +2026-03-31 03:49:00,2026-03-31 17:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,154.0 +2026-03-04 19:08:00,2026-03-06 01:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,6.0,0,103.1 +2026-04-06 15:54:00,2026-04-09 01:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,120.29 +2026-04-03 02:30:00,2026-04-05 04:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.3,0,100.0 +2026-03-26 07:39:00,2026-03-28 01:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,0,134.08 +2026-03-19 23:09:00,2026-03-21 19:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,11.1,0,110.68 +2026-03-08 06:14:00,2026-03-09 15:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,0,143.32 +2026-02-25 02:59:00,2026-02-27 05:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,1,100.0 +2026-03-29 15:18:00,2026-03-31 04:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-12 17:17:00,2026-03-15 14:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.5,1,108.81 +2026-03-02 13:15:00,2026-03-04 16:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,0,103.59 +2026-03-13 23:15:00,2026-03-15 02:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.8,1,104.76 +2026-03-22 01:32:00,2026-03-22 21:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,242.9,1,136.06 +2026-03-01 03:35:00,2026-03-02 02:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,1,107.44 +2026-03-02 00:03:50,2026-03-02 00:00:00,NBA,Dallas Mavericks,Boston Celtics,-2.2,0.0,0.088,Fanduel,POINTS_SPREAD,0.0,0,100.0 +2026-03-03 08:37:32,2026-03-03 10:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.203,BetMGM,MONEYLINE,0.0,NA,120.18 +2026-02-23 10:09:31,2026-02-23 11:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,1.3,0.0,0.214,Fanduel,POINTS_SPREAD,0.6,0,126.09 +2026-04-16 09:53:00,2026-04-17 18:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,19.4,1,100.0 +2026-03-03 11:06:51,2026-03-03 12:00:00,NBA,Golden State Warriors,Milwaukee Bucks,2.5,0.0,0.427,Fanduel,POINTS_SPREAD,1.7,1,100.0 +2026-03-08 23:27:00,2026-03-09 13:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,251.6,1,111.35 +2026-03-18 16:04:00,2026-03-20 04:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,113.04 +2026-02-27 21:03:00,2026-03-01 13:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,26.8,1,125.11 +2026-04-12 23:33:00,2026-04-15 17:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,47.5,1,102.62 +2026-03-01 00:42:00,2026-03-02 21:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,15.5,1,111.8 +2026-02-26 08:23:00,2026-02-27 21:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,230.2,0,101.92 +2026-03-08 07:43:51,2026-03-08 06:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,49.7,0.777,Fanduel,POINTS_TOTAL,50.5,0,108.67 +2026-03-26 02:52:00,2026-03-28 21:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,131.06 +2026-04-18 03:03:00,2026-04-20 20:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,119.74 +2026-03-18 21:19:03,2026-03-18 20:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.917,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-16 10:06:00,2026-03-16 17:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,48.3,1,106.51 +2026-03-20 16:42:26,2026-03-20 17:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.408,Fanduel,MONEYLINE,0.0,NA,128.89 +2026-03-05 20:40:00,2026-03-08 09:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,54.5,1,123.46 +2026-03-08 17:52:00,2026-03-10 02:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,38.7,0,103.27 +2026-03-01 10:32:00,2026-03-02 20:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,234.8,0,110.38 +2026-03-08 03:36:00,2026-03-11 03:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,135.44 +2026-03-30 14:32:00,2026-04-02 08:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,233.0,0,114.77 +2026-03-03 20:25:00,2026-03-05 03:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,105.84 +2026-03-18 00:34:00,2026-03-20 17:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.0,1,100.0 +2026-03-25 11:58:27,2026-03-25 14:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.097,BetMGM,MONEYLINE,0.0,NA,103.13 +2026-03-04 00:26:58,2026-03-04 01:00:00,NFL,San Francisco 49ers,Detroit Lions,3.0,0.0,0.261,Fanduel,POINTS_SPREAD,0.5,1,100.0 +2026-04-07 09:28:00,2026-04-07 14:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,129.06 +2026-04-05 03:52:00,2026-04-07 06:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.1,0,100.0 +2026-03-04 03:32:39,2026-03-04 03:00:00,NBA,Phoenix Suns,Boston Celtics,-1.6,0.0,0.337,BetMGM,POINTS_SPREAD,0.6,1,105.91 +2026-03-28 21:56:30,2026-03-28 22:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,221.0,0.475,Fanduel,POINTS_TOTAL,224.4,1,112.08 +2026-03-03 16:37:45,2026-03-03 17:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.532,Fanduel,MONEYLINE,0.0,NA,108.94 +2026-02-24 13:56:00,2026-02-24 22:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.2,1,111.98 +2026-02-23 10:53:00,2026-02-24 18:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,129.34 +2026-03-17 13:04:00,2026-03-19 12:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,0,100.0 +2026-02-27 17:49:00,2026-03-02 16:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,122.16 +2026-02-22 06:08:00,2026-02-23 13:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,22.5,0,109.78 +2026-03-22 09:30:00,2026-03-23 06:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.8,0,108.75 +2026-04-03 20:47:00,2026-04-05 18:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-11 22:10:00,2026-04-13 17:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.1,0,125.98 +2026-04-02 23:39:00,2026-04-03 23:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,162.17 +2026-04-13 03:13:50,2026-04-13 02:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.638,BetMGM,MONEYLINE,0.0,NA,128.75 +2026-04-15 22:00:00,2026-04-18 05:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,230.9,1,119.45 +2026-04-17 23:40:00,2026-04-18 13:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,195.39 +2026-04-16 09:02:46,2026-04-16 07:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.821,BetMGM,MONEYLINE,0.0,NA,102.26 +2026-04-02 09:15:00,2026-04-04 02:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,1,100.0 +2026-03-17 00:59:00,2026-03-19 06:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,1,100.0 +2026-03-04 20:32:48,2026-03-04 20:00:00,NBA,Miami Heat,Dallas Mavericks,-0.1,0.0,0.21,Fanduel,POINTS_SPREAD,0.0,1,101.76 +2026-04-11 15:27:00,2026-04-13 23:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,223.7,0,120.88 +2026-02-20 16:12:32,2026-02-20 16:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.353,BetMGM,MONEYLINE,0.0,NA,137.97 +2026-03-07 20:32:43,2026-03-07 19:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,2.5,0.0,0.854,Fanduel,POINTS_SPREAD,1.4,0,118.61 +2026-03-30 02:36:00,2026-03-31 12:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,67.7,1,124.35 +2026-02-27 21:58:00,2026-03-02 05:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-08 16:49:00,2026-03-08 16:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,230.7,0.5,Fanduel,POINTS_TOTAL,229.5,0,113.94 +2026-04-02 01:57:00,2026-04-02 15:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,11.5,0,100.0 +2026-03-31 03:49:00,2026-03-31 19:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,50.7,1,123.95 +2026-03-05 00:36:00,2026-03-07 01:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.0,0,100.0 +2026-04-15 19:02:44,2026-04-15 19:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,30.6,0.443,Fanduel,POINTS_TOTAL,25.2,1,103.39 +2026-04-18 13:07:00,2026-04-20 00:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,100.0 +2026-03-25 21:20:00,2026-03-26 12:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,0,129.79 +2026-03-26 16:30:12,2026-03-26 15:00:00,NFL,Kansas City Chiefs,Buffalo Bills,5.2,0.0,0.59,Fanduel,POINTS_SPREAD,1.8,0,148.04 +2026-04-10 18:10:00,2026-04-12 06:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,152.5 +2026-03-23 19:28:00,2026-03-24 02:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,234.4,0,100.0 +2026-04-10 04:07:50,2026-04-10 02:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.738,BetMGM,MONEYLINE,0.0,NA,133.56 +2026-03-12 03:49:54,2026-03-12 04:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.305,BetMGM,MONEYLINE,0.0,NA,114.22 +2026-03-24 11:05:43,2026-03-24 10:00:00,NFL,Philadelphia Eagles,Miami Dolphins,-0.1,0.0,0.904,Fanduel,POINTS_SPREAD,1.4,1,101.34 +2026-03-16 11:50:00,2026-03-18 17:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,0,111.82 +2026-03-15 00:27:00,2026-03-17 00:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,25.5,1,110.96 +2026-03-18 01:04:00,2026-03-19 21:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,229.9,1,110.72 +2026-03-13 08:56:00,2026-03-15 11:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-31 19:44:36,2026-03-31 20:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,3.5,0.57,Fanduel,POINTS_TOTAL,3.5,0,108.25 +2026-02-20 18:50:00,2026-02-23 16:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,4.0,0,121.45 +2026-04-20 12:05:07,2026-04-20 12:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,215.0,0.334,Fanduel,POINTS_TOTAL,214.8,1,112.36 +2026-04-11 16:01:00,2026-04-12 01:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,40.7,0,116.28 +2026-03-10 13:59:00,2026-03-11 22:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.0,1,110.19 +2026-04-16 01:25:00,2026-04-18 16:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,100.0 +2026-03-04 04:39:56,2026-03-04 05:00:00,NHL,Edmonton Oilers,Florida Panthers,3.7,0.0,0.533,BetMGM,POINTS_SPREAD,0.4,1,100.0 +2026-03-25 06:37:00,2026-03-25 21:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,63.7,0,100.0 +2026-03-19 10:40:34,2026-03-19 10:00:00,NHL,Colorado Avalanche,Boston Bruins,2.8,0.0,0.831,Fanduel,POINTS_SPREAD,2.8,0,101.71 +2026-04-18 11:44:38,2026-04-18 13:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,18.0,0.148,Fanduel,POINTS_TOTAL,19.4,0,117.66 +2026-04-06 05:08:00,2026-04-06 19:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,193.48 +2026-03-31 18:49:06,2026-03-31 20:00:00,NFL,Buffalo Bills,Detroit Lions,3.2,0.0,0.095,Fanduel,POINTS_SPREAD,2.1,0,131.44 +2026-03-18 12:11:00,2026-03-20 23:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.6,1,107.11 +2026-03-02 07:13:00,2026-03-02 08:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.3,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-16 22:17:00,2026-04-16 23:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,107.53 +2026-02-20 19:52:00,2026-02-23 11:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-15 03:35:51,2026-03-15 03:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.377,Fanduel,MONEYLINE,0.0,NA,155.9 +2026-04-03 09:59:00,2026-04-04 22:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.0,0,102.45 +2026-03-26 21:10:56,2026-03-26 19:00:00,NBA,Miami Heat,Phoenix Suns,0.0,235.3,0.733,BetMGM,POINTS_TOTAL,238.3,1,105.58 +2026-03-31 02:49:20,2026-03-31 04:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,225.1,0.213,Fanduel,POINTS_TOTAL,223.2,0,122.76 +2026-03-14 00:01:27,2026-03-13 22:00:00,NFL,Miami Dolphins,Kansas City Chiefs,-1.9,0.0,0.697,Fanduel,POINTS_SPREAD,2.2,0,116.14 +2026-02-25 06:40:00,2026-02-26 06:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,121.1 +2026-03-14 23:52:00,2026-03-15 09:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,28.3,1,111.88 +2026-03-13 11:21:00,2026-03-16 03:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.6,0,121.18 +2026-04-19 11:43:00,2026-04-20 17:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,225.7,0,123.96 +2026-03-05 05:35:00,2026-03-05 10:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-23 08:37:46,2026-03-23 06:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,213.0,0.921,BetMGM,POINTS_TOTAL,213.8,0,101.56 +2026-04-07 09:18:00,2026-04-07 15:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,131.44 +2026-03-15 16:39:00,2026-03-16 08:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,107.18 +2026-03-10 00:54:00,2026-03-11 17:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,181.21 +2026-02-27 14:02:58,2026-02-27 12:00:00,NBA,Los Angeles Lakers,Miami Heat,3.8,0.0,0.711,BetMGM,POINTS_SPREAD,0.3,1,100.0 +2026-04-09 03:12:56,2026-04-09 01:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,45.1,0.933,BetMGM,POINTS_TOTAL,37.4,1,100.0 +2026-03-26 20:41:00,2026-03-29 04:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.8,1,110.54 +2026-03-31 10:30:54,2026-03-31 10:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.505,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-29 16:57:51,2026-03-29 19:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.077,Fanduel,MONEYLINE,0.0,NA,128.46 +2026-02-23 03:55:00,2026-02-23 20:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-19 20:02:00,2026-02-21 17:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,8.2,1,100.0 +2026-03-12 12:31:12,2026-03-12 13:00:00,NHL,Boston Bruins,Florida Panthers,0.0,3.9,0.49,BetMGM,POINTS_TOTAL,6.1,0,100.67 +2026-02-23 23:27:39,2026-02-23 23:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,-2.6,0.0,0.887,Fanduel,POINTS_SPREAD,2.5,0,100.0 +2026-03-13 18:36:00,2026-03-14 14:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,11.1,1,120.94 +2026-03-26 03:41:00,2026-03-27 00:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,6.8,1,100.0 +2026-03-04 12:45:21,2026-03-04 12:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.352,BetMGM,MONEYLINE,0.0,NA,132.61 +2026-03-21 18:33:00,2026-03-21 21:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,28.1,1,100.0 +2026-03-30 21:01:00,2026-04-01 03:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,177.87 +2026-02-27 22:21:32,2026-02-27 21:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.703,Fanduel,MONEYLINE,0.0,NA,134.67 +2026-03-23 07:13:00,2026-03-25 01:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,0,100.0 +2026-03-19 22:20:00,2026-03-22 08:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.8,1,100.0 +2026-03-23 06:17:00,2026-03-25 13:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,44.0,0,104.1 +2026-02-21 20:20:39,2026-02-21 18:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,3.5,0.937,BetMGM,POINTS_TOTAL,9.4,0,100.0 +2026-03-23 00:11:58,2026-03-22 22:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.761,Fanduel,MONEYLINE,0.0,NA,111.57 +2026-03-04 23:35:00,2026-03-05 00:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,0,103.05 +2026-03-27 01:46:00,2026-03-27 01:00:00,NFL,Kansas City Chiefs,Buffalo Bills,3.3,0.0,0.75,Fanduel,POINTS_SPREAD,2.8,1,100.0 +2026-02-26 03:57:00,2026-03-01 01:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,0,108.94 +2026-02-27 04:57:00,2026-03-01 10:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,1,100.0 +2026-03-02 19:17:46,2026-03-02 18:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,58.9,0.921,Fanduel,POINTS_TOTAL,58.0,0,124.21 +2026-04-07 23:46:00,2026-04-08 15:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-01 20:27:00,2026-04-02 13:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,131.97 +2026-03-14 20:54:00,2026-03-16 23:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,230.9,1,103.81 +2026-03-31 10:51:00,2026-03-31 09:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,3.5,0.65,BetMGM,POINTS_TOTAL,3.5,0,100.0 +2026-04-15 08:42:00,2026-04-16 20:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,119.8 +2026-04-04 20:12:00,2026-04-07 17:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,1,100.0 +2026-04-06 18:13:00,2026-04-08 10:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,132.78 +2026-02-20 08:13:00,2026-02-21 22:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,128.22 +2026-04-01 19:32:44,2026-04-01 19:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.343,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-14 17:16:19,2026-03-14 15:00:00,NBA,Golden State Warriors,Denver Nuggets,-3.3,0.0,0.824,Fanduel,POINTS_SPREAD,2.0,1,107.66 +2026-02-21 02:38:00,2026-02-23 15:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,112.18 +2026-04-13 11:14:00,2026-04-16 05:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,107.3 +2026-02-23 20:13:00,2026-02-26 17:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,43.0,1,133.0 +2026-03-27 06:21:00,2026-03-28 01:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.4,1,100.0 +2026-04-03 18:07:00,2026-04-06 15:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,0,104.59 +2026-03-19 02:16:00,2026-03-22 02:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,109.55 +2026-03-29 08:47:00,2026-03-30 20:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,224.1,1,112.23 +2026-04-06 11:23:52,2026-04-06 11:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.816,BetMGM,MONEYLINE,0.0,NA,117.36 +2026-04-16 09:02:40,2026-04-16 09:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,15.7,0.126,Fanduel,POINTS_TOTAL,16.1,0,104.29 +2026-03-27 16:02:00,2026-03-27 18:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,0,123.75 +2026-03-16 03:26:00,2026-03-17 08:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,174.44 +2026-04-08 21:33:39,2026-04-08 21:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,1.3,0.0,0.237,BetMGM,POINTS_SPREAD,2.3,0,100.0 +2026-04-03 15:48:34,2026-04-03 14:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.831,BetMGM,MONEYLINE,0.0,NA,139.04 +2026-03-25 05:29:00,2026-03-26 05:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,45.8,1,100.81 +2026-02-17 21:19:00,2026-02-20 17:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,150.81 +2026-03-04 18:39:00,2026-03-05 21:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,114.36 +2026-02-25 14:35:32,2026-02-25 13:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.853,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-08 20:24:00,2026-03-10 06:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-07 07:21:54,2026-04-07 08:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.555,Fanduel,MONEYLINE,0.0,NA,170.65 +2026-04-12 21:39:00,2026-04-13 16:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,126.25 +2026-02-23 21:30:00,2026-02-26 02:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,0,139.47 +2026-03-27 01:30:00,2026-03-28 15:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,15.9,0,100.0 +2026-03-04 05:09:26,2026-03-04 05:00:00,NFL,Detroit Lions,Philadelphia Eagles,-3.7,0.0,0.208,Fanduel,POINTS_SPREAD,2.8,0,119.81 +2026-04-11 02:51:00,2026-04-11 22:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,110.77 +2026-04-02 20:12:00,2026-04-04 07:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,237.5,1,113.6 +2026-03-10 01:13:00,2026-03-12 12:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,6.7,1,100.67 +2026-04-07 16:23:10,2026-04-07 16:00:00,NFL,Buffalo Bills,Philadelphia Eagles,-3.4,0.0,0.751,Fanduel,POINTS_SPREAD,0.5,0,131.21 +2026-03-24 08:59:30,2026-03-24 08:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,2.9,0.0,0.575,Fanduel,POINTS_SPREAD,2.0,1,100.0 +2026-03-13 21:11:00,2026-03-13 23:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.6,1,140.15 +2026-03-25 23:07:00,2026-03-27 11:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,140.26 +2026-03-11 23:07:00,2026-03-12 06:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,173.56 +2026-03-06 04:59:58,2026-03-06 04:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.461,Fanduel,MONEYLINE,0.0,NA,122.4 +2026-04-01 03:11:00,2026-04-02 23:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,11.0,1,104.78 +2026-03-10 07:51:00,2026-03-11 12:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,41.6,1,123.25 +2026-03-05 11:54:00,2026-03-07 17:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.5,0,100.0 +2026-02-24 11:29:00,2026-02-26 10:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,108.04 +2026-03-17 19:18:00,2026-03-18 01:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,139.5 +2026-03-11 03:51:02,2026-03-11 04:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,-0.9,0.0,0.428,BetMGM,POINTS_SPREAD,2.5,1,100.0 +2026-03-03 22:16:00,2026-03-04 04:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-09 10:32:00,2026-04-12 07:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.4,0,118.89 +2026-03-28 22:41:18,2026-03-28 23:00:00,NBA,Los Angeles Lakers,Golden State Warriors,-0.9,0.0,0.485,BetMGM,POINTS_SPREAD,0.3,1,115.83 +2026-04-18 03:00:00,2026-04-19 11:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-05 10:21:00,2026-04-05 15:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,239.9,0,123.97 +2026-02-23 13:37:58,2026-02-23 14:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.261,Fanduel,MONEYLINE,0.0,NA,173.17 +2026-03-26 07:30:00,2026-03-27 00:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,42.5,0,106.89 +2026-03-09 04:56:00,2026-03-11 02:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,128.55 +2026-04-16 13:36:00,2026-04-19 12:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,60.9,0,101.76 +2026-04-18 22:07:00,2026-04-21 05:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,5.6,1,110.17 +2026-04-08 22:07:00,2026-04-09 20:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.1,1,108.3 +2026-02-23 00:43:51,2026-02-23 01:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.677,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-14 04:47:00,2026-03-16 14:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.3,1,119.77 +2026-04-20 05:38:00,2026-04-20 16:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.1,1,100.0 +2026-03-23 10:26:00,2026-03-24 21:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,47.8,0,121.33 +2026-04-15 17:58:00,2026-04-16 03:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,4.2,0,123.53 +2026-03-05 12:10:00,2026-03-08 04:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,1,100.0 +2026-03-03 18:35:58,2026-03-03 19:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.061,BetMGM,MONEYLINE,0.0,NA,128.63 +2026-04-16 23:33:42,2026-04-17 01:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.265,Fanduel,MONEYLINE,0.0,NA,189.95 +2026-03-04 04:52:00,2026-03-06 08:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,39.9,0,100.0 +2026-04-20 08:07:15,2026-04-20 08:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,67.9,0.357,Fanduel,POINTS_TOTAL,65.1,1,106.55 +2026-03-12 03:11:00,2026-03-13 17:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,161.57 +2026-04-11 09:47:51,2026-04-11 10:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,43.1,0.377,Fanduel,POINTS_TOTAL,41.6,0,118.51 +2026-03-06 11:27:00,2026-03-08 15:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,60.4,1,100.0 +2026-04-02 16:21:00,2026-04-03 18:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,135.57 +2026-03-12 13:12:00,2026-03-13 23:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,218.8,1,109.79 +2026-04-16 22:19:00,2026-04-17 03:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,131.34 +2026-02-20 19:34:00,2026-02-23 07:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,1,100.0 +2026-04-14 05:17:00,2026-04-14 10:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.5,1,148.16 +2026-03-03 21:17:00,2026-03-05 13:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,114.49 +2026-04-14 08:09:04,2026-04-14 07:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.406,Fanduel,MONEYLINE,0.0,NA,146.8 +2026-03-04 14:14:00,2026-03-05 00:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,121.88 +2026-03-15 18:32:00,2026-03-17 13:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,13.0,0,101.61 +2026-04-13 10:15:14,2026-04-13 09:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,1.7,0.0,0.468,BetMGM,POINTS_SPREAD,4.1,0,116.76 +2026-04-12 05:59:00,2026-04-14 08:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.1,0,109.45 +2026-03-14 14:59:00,2026-03-16 01:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,55.4,1,100.0 +2026-03-30 08:14:00,2026-03-30 10:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,20.7,1,133.04 +2026-03-26 10:54:00,2026-03-29 08:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,0,108.02 +2026-03-11 11:00:52,2026-03-11 11:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.216,BetMGM,MONEYLINE,0.0,NA,108.17 +2026-03-05 00:01:00,2026-03-06 09:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,16.3,1,127.25 +2026-03-09 06:56:02,2026-03-09 06:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,222.2,0.728,BetMGM,POINTS_TOTAL,218.2,0,125.73 +2026-03-11 12:06:00,2026-03-12 07:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,42.5,0,112.38 +2026-04-06 06:57:00,2026-04-06 19:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,166.37 +2026-04-20 07:08:15,2026-04-20 06:00:00,NFL,Detroit Lions,Baltimore Ravens,2.7,0.0,0.907,Fanduel,POINTS_SPREAD,0.8,1,112.55 +2026-03-19 22:15:07,2026-03-19 22:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,48.0,0.284,BetMGM,POINTS_TOTAL,42.5,1,100.32 +2026-03-14 08:34:00,2026-03-16 15:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,231.1,1,107.56 +2026-03-03 18:02:19,2026-03-03 16:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.774,BetMGM,MONEYLINE,0.0,NA,113.28 +2026-04-02 01:47:00,2026-04-03 21:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,1,119.3 +2026-03-23 16:37:09,2026-03-23 16:00:00,NBA,Miami Heat,Denver Nuggets,0.0,226.8,0.662,BetMGM,POINTS_TOTAL,226.0,1,106.94 +2026-04-10 16:07:00,2026-04-13 07:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,124.83 +2026-03-08 07:55:22,2026-03-08 08:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.591,BetMGM,MONEYLINE,0.0,NA,176.52 +2026-03-14 15:55:50,2026-03-14 14:00:00,NBA,Miami Heat,Denver Nuggets,-6.3,0.0,0.838,BetMGM,POINTS_SPREAD,1.5,1,127.52 +2026-04-06 07:43:00,2026-04-07 03:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,108.76 +2026-04-14 04:27:50,2026-04-14 03:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.738,BetMGM,MONEYLINE,0.0,NA,133.97 +2026-02-18 11:57:00,2026-02-21 06:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-29 20:27:00,2026-03-30 06:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-24 22:48:00,2026-03-27 20:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.3,1,120.69 +2026-03-31 03:18:00,2026-04-01 20:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,1,110.96 +2026-03-06 01:28:03,2026-03-06 03:00:00,NBA,Miami Heat,Dallas Mavericks,-3.1,0.0,0.067,BetMGM,POINTS_SPREAD,2.4,0,100.0 +2026-04-11 01:45:00,2026-04-12 13:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,1,100.0 +2026-03-25 13:20:00,2026-03-28 01:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,215.3,1,111.37 +2026-04-20 04:37:00,2026-04-21 03:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,35.3,1,120.66 +2026-03-07 04:58:00,2026-03-09 23:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.6,1,122.98 +2026-04-08 23:55:00,2026-04-10 13:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,0,100.0 +2026-03-08 23:38:00,2026-03-09 16:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,237.2,1,105.11 +2026-03-21 01:51:00,2026-03-23 02:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,129.66 +2026-04-05 03:10:00,2026-04-06 19:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.9,1,126.8 +2026-04-03 09:28:00,2026-04-05 05:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,130.36 +2026-03-07 08:48:30,2026-03-07 07:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.675,Fanduel,MONEYLINE,0.0,NA,127.55 +2026-03-26 17:59:00,2026-03-29 11:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,36.5,1,112.16 +2026-03-21 21:44:00,2026-03-24 17:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,120.1 +2026-02-21 19:46:00,2026-02-22 02:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,101.58 +2026-04-06 00:21:20,2026-04-05 22:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.813,Fanduel,MONEYLINE,0.0,NA,149.73 +2026-03-14 06:05:00,2026-03-16 21:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-05 07:18:00,2026-04-06 01:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,211.2,0,111.41 +2026-03-28 22:19:00,2026-03-31 16:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,123.06 +2026-02-27 19:36:00,2026-02-28 08:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,0,139.13 +2026-04-01 23:42:58,2026-04-01 22:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,237.3,0.611,Fanduel,POINTS_TOTAL,236.3,1,106.02 +2026-04-03 18:24:14,2026-04-03 20:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,226.4,0.218,Fanduel,POINTS_TOTAL,227.2,0,109.64 +2026-03-25 20:14:00,2026-03-27 01:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,0,100.0 +2026-02-27 10:18:00,2026-02-28 00:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,21.0,0,103.15 +2026-03-13 00:06:00,2026-03-15 22:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,110.71 +2026-02-27 21:09:00,2026-03-01 03:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,32.1,1,101.59 +2026-03-14 05:40:00,2026-03-15 20:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,105.69 +2026-03-30 14:38:00,2026-03-30 22:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,4.2,0,100.0 +2026-02-22 08:06:56,2026-02-22 08:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,2.7,0.0,0.233,Fanduel,POINTS_SPREAD,2.4,0,105.81 +2026-02-28 04:28:00,2026-03-01 09:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-05 03:58:00,2026-03-06 11:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,1,127.22 +2026-03-30 10:51:00,2026-04-01 16:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,59.6,1,115.32 +2026-04-08 00:47:00,2026-04-09 16:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.3,0,100.0 +2026-03-02 17:48:00,2026-03-03 11:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,33.6,0,111.55 +2026-02-27 04:11:26,2026-02-27 03:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.958,Fanduel,MONEYLINE,0.0,NA,169.42 +2026-04-11 07:03:00,2026-04-11 17:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,0,112.05 +2026-03-26 22:11:32,2026-03-26 22:00:00,NHL,New York Rangers,Boston Bruins,-1.8,0.0,0.303,Fanduel,POINTS_SPREAD,1.8,1,120.45 +2026-03-03 00:51:00,2026-03-03 10:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,0,136.76 +2026-04-13 07:18:34,2026-04-13 08:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,69.3,0.231,Fanduel,POINTS_TOTAL,68.5,0,112.16 +2026-03-12 11:15:00,2026-03-14 01:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-28 10:04:02,2026-02-28 10:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.4,0.0,0.678,Fanduel,POINTS_SPREAD,1.3,0,107.15 +2026-02-24 20:48:21,2026-02-24 21:00:00,NHL,Toronto Maple Leafs,New York Rangers,1.3,0.0,0.702,Fanduel,POINTS_SPREAD,2.6,1,118.0 +2026-02-21 07:20:00,2026-02-21 18:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,116.91 +2026-02-25 02:59:00,2026-02-26 15:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,101.32 +2026-02-21 07:04:00,2026-02-22 02:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,114.27 +2026-03-18 22:35:00,2026-03-19 18:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,166.5 +2026-04-18 05:31:40,2026-04-18 05:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,3.5,0.376,Fanduel,POINTS_TOTAL,3.5,0,118.15 +2026-03-10 20:02:09,2026-03-10 19:00:00,NBA,Miami Heat,Boston Celtics,0.0,218.7,0.712,BetMGM,POINTS_TOTAL,221.2,1,111.94 +2026-03-08 23:38:08,2026-03-08 23:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,35.6,0.723,BetMGM,POINTS_TOTAL,36.5,0,100.0 +2026-02-27 07:41:00,2026-02-28 08:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,43.1,1,114.46 +2026-03-11 15:17:00,2026-03-13 18:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,50.5,1,105.13 +2026-04-11 23:20:40,2026-04-12 01:00:00,NBA,Miami Heat,Phoenix Suns,0.0,218.6,0.126,BetMGM,POINTS_TOTAL,218.6,0,107.86 +2026-04-08 09:39:00,2026-04-09 18:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,8.8,1,131.39 +2026-02-28 22:33:00,2026-03-03 15:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,170.26 +2026-03-02 20:22:00,2026-03-04 10:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,155.26 +2026-03-06 13:58:00,2026-03-08 04:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,44.1,0,109.1 +2026-03-09 08:07:00,2026-03-10 20:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,7.8,0,110.0 +2026-03-22 04:10:00,2026-03-22 08:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,36.1,1,100.0 +2026-03-01 01:03:38,2026-03-01 01:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,218.5,0.798,Fanduel,POINTS_TOTAL,218.8,0,101.25 +2026-03-18 03:52:00,2026-03-19 02:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.9,0,100.13 +2026-03-01 17:32:00,2026-03-02 21:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,0,100.0 +2026-04-07 10:01:00,2026-04-07 21:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,4.6,1,110.61 +2026-04-02 09:40:00,2026-04-02 20:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.5,0,125.3 +2026-04-04 03:09:56,2026-04-04 02:00:00,NBA,Boston Celtics,Golden State Warriors,1.5,0.0,0.933,Fanduel,POINTS_SPREAD,1.4,0,119.84 +2026-02-22 09:46:00,2026-02-24 21:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,1,118.93 +2026-03-30 17:15:00,2026-04-01 07:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,5.8,0,100.0 +2026-03-26 17:56:25,2026-03-26 19:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.369,BetMGM,MONEYLINE,0.0,NA,114.36 +2026-03-01 18:33:00,2026-03-03 20:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.0,0,102.25 +2026-02-21 00:02:00,2026-02-23 22:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,161.91 +2026-02-28 05:43:00,2026-03-01 01:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,122.25 +2026-03-05 19:10:00,2026-03-07 10:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,119.46 +2026-02-27 18:18:00,2026-03-01 04:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,0,100.0 +2026-04-06 07:31:00,2026-04-08 23:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,9.2,0,100.0 +2026-03-29 22:55:00,2026-04-01 13:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,221.7,0,103.08 +2026-03-10 14:58:00,2026-03-12 22:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.4,1,100.0 +2026-03-24 14:48:30,2026-03-24 16:00:00,NBA,Miami Heat,Boston Celtics,-7.9,0.0,0.075,BetMGM,POINTS_SPREAD,4.3,1,145.36 +2026-04-11 06:56:00,2026-04-11 15:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,152.41 +2026-04-12 02:33:00,2026-04-13 19:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.6,1,131.45 +2026-02-26 13:43:00,2026-02-27 07:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.2,1,100.0 +2026-03-05 04:12:00,2026-03-07 08:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,124.32 +2026-03-07 11:39:00,2026-03-07 23:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,107.52 +2026-03-07 15:33:00,2026-03-08 04:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.3,0,117.38 +2026-03-22 10:06:00,2026-03-25 03:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,121.86 +2026-04-04 19:00:00,2026-04-06 20:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,126.2 +2026-03-08 23:24:00,2026-03-11 18:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,1,102.15 +2026-04-12 17:30:04,2026-04-12 16:00:00,NHL,Toronto Maple Leafs,Boston Bruins,-2.0,0.0,0.706,Fanduel,POINTS_SPREAD,1.1,0,114.56 +2026-03-12 16:47:00,2026-03-13 09:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,40.9,1,106.36 +2026-04-08 06:40:16,2026-04-08 05:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,12.5,0.646,Fanduel,POINTS_TOTAL,8.2,1,111.48 +2026-04-02 23:24:58,2026-04-02 23:00:00,NBA,Phoenix Suns,Golden State Warriors,-2.7,0.0,0.361,BetMGM,POINTS_SPREAD,0.4,0,100.0 +2026-03-11 10:58:00,2026-03-13 09:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,229.0,1,120.19 +2026-04-02 05:23:00,2026-04-03 09:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.3,0,128.2 +2026-04-19 13:57:00,2026-04-21 06:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,109.14 +2026-03-11 15:02:00,2026-03-13 17:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,1,100.0 +2026-04-14 18:20:18,2026-04-14 20:00:00,NBA,Los Angeles Lakers,Phoenix Suns,-5.0,0.0,0.035,Fanduel,POINTS_SPREAD,0.7,0,100.0 +2026-03-10 22:56:16,2026-03-10 21:00:00,NHL,Carolina Hurricanes,New York Rangers,5.2,0.0,0.846,BetMGM,POINTS_SPREAD,2.0,0,128.02 +2026-03-19 06:37:00,2026-03-21 22:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,123.92 +2026-04-16 03:38:00,2026-04-16 22:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,247.6,0,103.09 +2026-03-26 06:14:52,2026-03-26 05:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.616,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-15 09:02:12,2026-03-15 09:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,232.4,0.79,Fanduel,POINTS_TOTAL,229.1,1,104.81 +2026-04-09 15:50:00,2026-04-09 23:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,0,100.0 +2026-04-06 09:44:00,2026-04-06 18:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,218.0,0,100.0 +2026-04-02 16:45:00,2026-04-05 10:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,224.8,1,108.75 +2026-03-31 08:54:00,2026-03-31 23:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,8.3,1,136.54 +2026-03-19 21:45:00,2026-03-22 21:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,0,117.21 +2026-03-19 15:53:00,2026-03-22 04:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,131.04 +2026-03-05 06:32:00,2026-03-06 02:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,114.2 +2026-04-07 01:31:00,2026-04-08 06:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,43.0,1,122.62 +2026-03-19 19:15:09,2026-03-19 19:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,19.3,0.512,Fanduel,POINTS_TOTAL,16.6,1,131.18 +2026-02-27 12:36:30,2026-02-27 13:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.075,BetMGM,MONEYLINE,0.0,NA,134.18 +2026-04-15 02:53:00,2026-04-17 16:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,100.0 +2026-03-12 14:10:43,2026-03-12 12:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,210.8,0.754,BetMGM,POINTS_TOTAL,207.1,0,113.97 +2026-03-12 14:21:00,2026-03-13 06:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,47.6,0,100.44 +2026-04-07 19:10:00,2026-04-08 23:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,47.7,0,102.01 +2026-03-24 04:09:00,2026-03-25 13:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,0,100.36 +2026-04-07 19:09:00,2026-04-08 02:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,110.61 +2026-03-01 02:13:00,2026-03-02 06:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,115.5 +2026-02-21 14:05:07,2026-02-21 14:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,6.8,0.084,Fanduel,POINTS_TOTAL,16.7,0,111.06 +2026-04-19 19:56:14,2026-04-19 18:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.718,Fanduel,MONEYLINE,0.0,NA,117.27 +2026-02-27 10:38:26,2026-02-27 12:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,17.7,0.158,BetMGM,POINTS_TOTAL,17.7,1,103.33 +2026-04-09 14:49:00,2026-04-11 09:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,144.44 +2026-04-02 08:30:00,2026-04-02 22:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,144.09 +2026-02-25 16:47:00,2026-02-27 23:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,1,126.05 +2026-04-08 10:50:00,2026-04-08 11:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,121.11 +2026-04-01 07:08:00,2026-04-02 04:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-21 08:12:00,2026-02-23 00:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,5.8,0,100.0 +2026-02-25 21:40:00,2026-02-28 10:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-12 23:03:34,2026-04-12 23:00:00,NBA,Boston Celtics,Golden State Warriors,4.7,0.0,0.281,BetMGM,POINTS_SPREAD,5.1,0,123.07 +2026-04-14 21:45:28,2026-04-14 21:00:00,NBA,Miami Heat,Dallas Mavericks,1.5,0.0,0.286,Fanduel,POINTS_SPREAD,2.1,0,148.65 +2026-03-09 03:21:15,2026-03-09 04:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.7,0.0,0.157,BetMGM,POINTS_SPREAD,4.3,0,100.0 +2026-04-14 12:16:00,2026-04-16 06:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,14.0,1,112.77 +2026-02-26 01:37:01,2026-02-26 02:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,48.6,0.639,Fanduel,POINTS_TOTAL,51.4,1,102.2 +2026-03-22 23:15:00,2026-03-25 22:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,52.4,0,100.0 +2026-03-27 06:53:00,2026-03-29 05:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.0,0,114.7 +2026-03-09 02:01:00,2026-03-11 21:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,0,126.32 +2026-02-28 12:45:49,2026-02-28 12:00:00,NHL,Boston Bruins,New York Rangers,6.5,0.0,0.349,Fanduel,POINTS_SPREAD,3.0,1,100.0 +2026-03-21 00:25:00,2026-03-22 14:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,1,106.12 +2026-03-16 23:58:00,2026-03-17 11:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-16 10:07:00,2026-03-18 11:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,226.4,1,111.45 +2026-03-28 17:33:19,2026-03-28 19:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.124,BetMGM,MONEYLINE,0.0,NA,137.45 +2026-04-10 04:55:22,2026-04-10 05:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.591,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-21 01:41:39,2026-03-21 03:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.337,Fanduel,MONEYLINE,0.0,NA,129.54 +2026-03-21 07:35:00,2026-03-21 20:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,140.75 +2026-02-23 14:10:00,2026-02-24 10:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,114.16 +2026-03-24 10:12:00,2026-03-24 19:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,42.5,1,143.56 +2026-04-14 10:52:00,2026-04-17 05:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-18 21:13:00,2026-03-21 11:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,165.08 +2026-04-03 13:41:00,2026-04-04 11:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,124.75 +2026-04-16 16:50:00,2026-04-19 11:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.0,1,124.5 +2026-04-13 15:50:00,2026-04-16 15:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,208.1,1,100.0 +2026-04-18 08:25:00,2026-04-20 08:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,47.0,0,118.16 +2026-04-08 01:04:14,2026-04-08 01:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.168,BetMGM,MONEYLINE,0.0,NA,139.57 +2026-02-24 20:07:00,2026-02-27 01:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,14.7,0,100.0 +2026-04-01 21:47:00,2026-04-02 23:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,39.2,1,113.43 +2026-03-01 09:56:00,2026-03-01 21:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,1,120.36 +2026-03-27 15:40:00,2026-03-29 00:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,152.93 +2026-03-24 13:49:00,2026-03-26 18:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,173.56 +2026-04-04 23:17:00,2026-04-07 23:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,139.6 +2026-03-23 05:42:00,2026-03-24 23:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,0,133.59 +2026-04-12 18:47:00,2026-04-14 22:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,105.42 +2026-04-04 21:57:00,2026-04-05 01:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,170.89 +2026-03-11 09:10:00,2026-03-11 20:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,110.9 +2026-04-16 11:03:00,2026-04-16 10:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.9,Fanduel,MONEYLINE,0.0,NA,106.99 +2026-04-07 02:25:00,2026-04-07 20:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,128.93 +2026-03-30 21:44:00,2026-04-02 11:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,36.8,0,104.77 +2026-03-19 02:20:00,2026-03-21 03:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,123.06 +2026-03-05 07:21:00,2026-03-07 16:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,59.9,0,100.0 +2026-03-26 20:24:00,2026-03-28 20:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,119.34 +2026-03-01 08:52:00,2026-03-02 18:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,7.8,1,100.0 +2026-04-19 10:55:00,2026-04-20 19:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,136.49 +2026-03-21 18:02:45,2026-03-21 16:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.782,BetMGM,MONEYLINE,0.0,NA,110.84 +2026-04-02 13:25:00,2026-04-03 14:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-08 05:03:00,2026-04-10 06:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,4.2,1,103.95 +2026-04-14 13:24:40,2026-04-14 13:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,15.4,0.576,BetMGM,POINTS_TOTAL,19.5,0,100.0 +2026-04-16 11:14:00,2026-04-17 00:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,147.58 +2026-02-22 03:21:00,2026-02-22 22:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,222.6,0,100.0 +2026-03-19 01:47:44,2026-03-19 04:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,3.5,0.043,BetMGM,POINTS_TOTAL,3.5,0,107.56 +2026-02-19 13:01:00,2026-02-21 04:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-15 21:01:48,2026-04-15 19:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,41.6,0.81,Fanduel,POINTS_TOTAL,36.7,0,128.49 +2026-04-15 17:07:00,2026-04-18 03:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,42.0,0,100.0 +2026-03-18 14:15:50,2026-03-18 13:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,5.8,0.638,Fanduel,POINTS_TOTAL,3.5,0,106.19 +2026-04-04 23:11:00,2026-04-06 10:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,0,100.0 +2026-03-21 08:58:00,2026-03-21 12:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,47.9,1,101.9 +2026-04-01 08:48:00,2026-04-01 15:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,101.95 +2026-03-28 00:40:00,2026-03-29 12:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-24 19:56:08,2026-02-24 21:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,235.5,0.273,BetMGM,POINTS_TOTAL,233.2,1,107.93 +2026-03-14 14:41:00,2026-03-16 17:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.6,1,115.69 +2026-03-19 01:15:27,2026-03-19 00:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,222.3,0.797,Fanduel,POINTS_TOTAL,224.9,0,120.31 +2026-03-11 00:20:00,2026-03-13 08:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,233.1,1,100.0 +2026-03-19 16:06:00,2026-03-22 09:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,136.12 +2026-04-12 05:53:32,2026-04-12 06:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.503,Fanduel,MONEYLINE,0.0,NA,141.51 +2026-03-21 17:21:00,2026-03-24 03:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-29 00:39:42,2026-03-29 00:00:00,NFL,Miami Dolphins,Buffalo Bills,0.3,0.0,0.415,BetMGM,POINTS_SPREAD,1.6,1,102.26 +2026-03-14 09:14:00,2026-03-15 18:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.4,0,131.32 +2026-02-22 13:27:36,2026-02-22 15:00:00,NHL,Carolina Hurricanes,Boston Bruins,-0.7,0.0,0.17,BetMGM,POINTS_SPREAD,2.7,0,111.93 +2026-03-13 20:05:00,2026-03-16 04:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,222.6,0,112.75 +2026-03-29 02:05:00,2026-03-29 04:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,231.9,1,100.0 +2026-03-15 15:29:00,2026-03-16 02:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,1,100.0 +2026-04-16 13:35:00,2026-04-18 18:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,42.7,0,115.29 +2026-03-06 19:32:00,2026-03-07 21:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,108.36 +2026-03-05 17:56:34,2026-03-05 18:00:00,NBA,Miami Heat,Milwaukee Bucks,-5.9,0.0,0.081,BetMGM,POINTS_SPREAD,1.9,0,106.24 +2026-03-13 00:38:00,2026-03-14 18:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,132.57 +2026-03-20 15:27:00,2026-03-22 23:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.0,1,100.0 +2026-03-04 00:10:00,2026-03-06 19:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,235.1,0,118.07 +2026-04-07 10:31:19,2026-04-07 09:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,3.5,0.824,Fanduel,POINTS_TOTAL,3.5,0,116.33 +2026-03-30 14:52:00,2026-04-01 00:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,161.3 +2026-02-26 12:33:00,2026-02-28 05:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,131.25 +2026-02-23 06:08:00,2026-02-25 02:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.9,1,143.97 +2026-03-28 23:55:00,2026-03-31 11:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.4,1,116.31 +2026-03-01 07:10:07,2026-03-01 06:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,40.9,0.934,Fanduel,POINTS_TOTAL,43.1,0,111.39 +2026-02-24 18:46:00,2026-02-27 15:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,121.71 +2026-04-06 15:27:45,2026-04-06 15:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,47.1,0.282,BetMGM,POINTS_TOTAL,48.7,0,107.39 +2026-04-02 03:14:00,2026-04-03 14:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,129.25 +2026-02-21 09:03:00,2026-02-24 07:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,142.1 +2026-03-26 11:54:00,2026-03-28 05:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,1,147.24 +2026-02-26 14:58:00,2026-02-28 12:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,104.67 +2026-03-23 15:29:00,2026-03-25 00:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-27 17:30:00,2026-02-28 20:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,0,144.14 +2026-04-04 02:52:00,2026-04-05 23:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,19.3,1,127.88 +2026-03-20 18:06:00,2026-03-23 02:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,16.3,1,100.0 +2026-04-19 07:09:00,2026-04-20 06:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,34.8,1,100.0 +2026-03-26 05:01:00,2026-03-28 13:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,58.1,0,110.05 +2026-03-18 02:54:00,2026-03-20 00:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,233.4,0,113.23 +2026-04-11 16:59:00,2026-04-14 03:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,242.0,1,102.08 +2026-02-23 13:43:00,2026-02-24 18:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,146.65 +2026-03-19 12:44:00,2026-03-20 10:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-15 07:27:00,2026-04-18 01:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,205.4,0,100.0 +2026-04-03 16:34:00,2026-04-06 11:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,1,102.48 +2026-04-21 05:02:15,2026-04-21 06:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,8.5,0.157,BetMGM,POINTS_TOTAL,19.3,1,128.19 +2026-04-04 00:07:00,2026-04-04 06:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,1,106.79 +2026-03-28 02:08:04,2026-03-28 01:00:00,NBA,Miami Heat,Milwaukee Bucks,-0.6,0.0,0.906,BetMGM,POINTS_SPREAD,4.7,1,100.0 +2026-04-02 07:34:00,2026-04-02 17:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.3,0,100.0 +2026-04-15 23:17:00,2026-04-18 22:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,4.1,0,108.53 +2026-03-08 16:09:00,2026-03-10 10:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,110.1 +2026-03-31 17:58:00,2026-04-01 01:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.4,1,126.26 +2026-04-06 06:19:00,2026-04-07 06:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,6.4,0,103.7 +2026-03-08 23:03:00,2026-03-10 18:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,1,100.0 +2026-03-26 11:43:00,2026-03-27 09:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,109.96 +2026-04-10 10:24:00,2026-04-11 20:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.7,1,139.1 +2026-02-22 03:55:43,2026-02-22 03:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.354,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-06 19:37:00,2026-04-07 20:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,55.5,1,123.87 +2026-03-27 16:08:00,2026-03-29 01:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.6,0,116.83 +2026-02-21 00:37:04,2026-02-21 02:00:00,NBA,Phoenix Suns,Los Angeles Lakers,-0.0,0.0,0.206,BetMGM,POINTS_SPREAD,0.6,1,109.18 +2026-02-22 11:10:55,2026-02-22 09:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,3.1,0.0,0.744,BetMGM,POINTS_SPREAD,1.4,1,114.51 +2026-02-26 06:16:10,2026-02-26 07:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.501,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-14 01:12:00,2026-03-15 00:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.0,0,110.34 +2026-04-13 00:23:00,2026-04-15 04:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,1,125.76 +2026-02-21 05:13:00,2026-02-22 01:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,65.2,1,125.72 +2026-03-13 08:38:00,2026-03-14 18:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,170.4 +2026-02-21 10:48:32,2026-02-21 11:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,-0.5,0.0,0.503,Fanduel,POINTS_SPREAD,1.1,0,106.3 +2026-04-02 06:57:00,2026-04-02 16:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,148.93 +2026-02-24 02:52:00,2026-02-24 17:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,107.22 +2026-03-17 23:05:00,2026-03-17 23:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,55.9,0.6,Fanduel,POINTS_TOTAL,60.5,0,109.43 +2026-04-12 00:41:00,2026-04-12 08:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,150.68 +2026-02-20 10:01:00,2026-02-21 10:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,119.66 +2026-03-19 07:06:00,2026-03-21 14:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.9 +2026-03-15 05:36:00,2026-03-16 01:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,1,100.0 +2026-04-10 11:31:57,2026-04-10 11:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.672,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-02 13:05:00,2026-04-05 07:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-01 20:41:00,2026-04-02 23:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,0,118.54 +2026-03-11 09:35:00,2026-03-12 21:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,1,100.0 +2026-04-01 12:50:00,2026-04-01 19:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,219.6,0,100.0 +2026-02-28 11:54:00,2026-03-02 11:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.6,1,100.0 +2026-03-02 10:12:02,2026-03-02 12:00:00,NFL,Miami Dolphins,Buffalo Bills,0.1,0.0,0.078,BetMGM,POINTS_SPREAD,1.6,1,109.25 +2026-04-04 14:33:00,2026-04-04 18:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,8.9,0,100.0 +2026-04-05 17:28:00,2026-04-08 06:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,120.28 +2026-03-10 10:50:00,2026-03-11 12:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.0,0,104.11 +2026-03-07 12:54:00,2026-03-08 22:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,0,102.07 +2026-03-27 14:26:00,2026-03-29 20:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,0,111.92 +2026-04-04 21:25:00,2026-04-06 20:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.7,1,100.0 +2026-03-26 02:57:00,2026-03-28 16:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,164.32 +2026-03-11 00:19:00,2026-03-13 18:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.0,1,100.0 +2026-03-03 20:28:00,2026-03-05 22:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-28 21:50:58,2026-03-28 22:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,-5.9,0.0,0.211,Fanduel,POINTS_SPREAD,3.4,0,123.9 +2026-04-01 02:53:00,2026-04-03 05:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,155.71 +2026-02-19 23:23:00,2026-02-22 00:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,45.8,0,110.98 +2026-03-11 13:25:00,2026-03-12 19:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,107.65 +2026-03-03 12:37:00,2026-03-03 23:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.7,1,100.0 +2026-04-10 05:45:22,2026-04-10 06:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.141,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-19 15:56:00,2026-02-20 19:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,16.5,0,114.08 +2026-02-28 03:38:00,2026-03-01 22:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,0,122.42 +2026-03-30 20:48:01,2026-03-30 20:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.889,BetMGM,MONEYLINE,0.0,NA,142.99 +2026-03-15 19:47:00,2026-03-18 11:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,1,113.0 +2026-03-05 13:31:00,2026-03-05 20:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,6.8,0,103.57 +2026-03-31 14:36:00,2026-04-02 06:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,43.3,0,117.04 +2026-03-31 17:16:00,2026-03-31 18:00:00,NHL,Edmonton Oilers,Florida Panthers,2.6,0.0,0.2,BetMGM,POINTS_SPREAD,4.4,1,133.07 +2026-04-12 00:40:00,2026-04-13 14:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-02 01:40:00,2026-04-02 13:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,119.88 +2026-03-12 13:29:00,2026-03-12 15:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,139.53 +2026-04-16 10:20:42,2026-04-16 12:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,38.2,0.165,BetMGM,POINTS_TOTAL,36.9,0,100.0 +2026-03-21 23:23:00,2026-03-23 12:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,134.05 +2026-04-17 17:55:00,2026-04-18 19:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,137.04 +2026-04-05 02:36:28,2026-04-05 02:00:00,NFL,Buffalo Bills,Baltimore Ravens,3.7,0.0,0.236,Fanduel,POINTS_SPREAD,1.0,0,134.41 +2026-04-01 22:58:00,2026-04-02 02:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,152.77 +2026-02-25 22:47:00,2026-02-26 16:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,131.63 +2026-04-04 01:34:51,2026-04-04 01:00:00,NFL,Detroit Lions,Dallas Cowboys,-4.1,0.0,0.577,Fanduel,POINTS_SPREAD,1.1,1,137.27 +2026-03-23 11:57:00,2026-03-24 06:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,107.86 +2026-03-19 23:14:00,2026-03-21 23:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,233.2,1,100.0 +2026-02-28 14:22:00,2026-03-02 20:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,36.9,1,122.01 +2026-02-26 17:38:49,2026-02-26 17:00:00,NBA,Dallas Mavericks,Phoenix Suns,1.9,0.0,0.299,BetMGM,POINTS_SPREAD,0.9,1,100.74 +2026-02-23 20:45:00,2026-02-24 02:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,48.4,0,111.32 +2026-02-28 20:44:00,2026-03-02 06:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,43.4,1,115.45 +2026-04-02 06:08:09,2026-04-02 08:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,5.3,0.062,BetMGM,POINTS_TOTAL,3.5,0,100.0 +2026-03-23 15:52:00,2026-03-26 15:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,212.6,1,100.0 +2026-03-24 06:33:21,2026-03-24 07:00:00,NFL,Philadelphia Eagles,Buffalo Bills,1.8,0.0,0.552,BetMGM,POINTS_SPREAD,0.7,0,128.92 +2026-03-10 17:21:03,2026-03-10 18:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,46.3,0.467,Fanduel,POINTS_TOTAL,42.7,1,115.24 +2026-03-17 02:41:00,2026-03-17 06:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,135.41 +2026-04-05 02:29:00,2026-04-05 21:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,167.11 +2026-03-10 21:49:00,2026-03-11 06:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,50.3,1,111.15 +2026-03-06 02:40:00,2026-03-09 02:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,115.47 +2026-02-23 17:21:31,2026-02-23 16:00:00,NBA,Denver Nuggets,Milwaukee Bucks,-2.2,0.0,0.864,BetMGM,POINTS_SPREAD,1.6,0,100.0 +2026-04-04 16:17:00,2026-04-04 18:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,0,126.46 +2026-04-13 21:48:38,2026-04-13 21:00:00,NFL,Miami Dolphins,Detroit Lions,3.1,0.0,0.548,BetMGM,POINTS_SPREAD,0.8,0,133.88 +2026-02-26 11:23:37,2026-02-26 12:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.459,Fanduel,MONEYLINE,0.0,NA,149.63 +2026-03-01 09:59:00,2026-03-02 20:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,0,100.0 +2026-03-23 22:24:00,2026-03-24 18:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,124.37 +2026-03-01 10:02:02,2026-03-01 08:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,224.0,0.828,Fanduel,POINTS_TOTAL,219.3,0,119.24 +2026-03-01 00:24:12,2026-03-01 00:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.79,Fanduel,MONEYLINE,0.0,NA,154.21 +2026-04-01 22:15:22,2026-04-01 22:00:00,NFL,Dallas Cowboys,San Francisco 49ers,3.1,0.0,0.741,BetMGM,POINTS_SPREAD,3.0,1,100.0 +2026-04-13 21:52:32,2026-04-13 23:00:00,NBA,Miami Heat,Golden State Warriors,-1.6,0.0,0.203,BetMGM,POINTS_SPREAD,0.2,1,100.0 +2026-02-20 10:29:00,2026-02-22 18:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,158.94 +2026-02-25 15:40:00,2026-02-25 17:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,58.7,0.3,BetMGM,POINTS_TOTAL,58.8,1,108.2 +2026-04-01 09:12:27,2026-04-01 11:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,225.3,0.097,BetMGM,POINTS_TOTAL,224.8,0,100.0 +2026-03-20 12:11:00,2026-03-22 22:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,108.23 +2026-03-06 07:47:27,2026-03-06 07:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.947,Fanduel,MONEYLINE,0.0,NA,143.46 +2026-04-12 23:25:00,2026-04-14 23:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,111.03 +2026-04-07 12:33:00,2026-04-09 23:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,231.7,0,100.0 +2026-02-28 08:16:32,2026-02-28 09:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.103,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-23 02:06:00,2026-03-23 16:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,1,104.16 +2026-03-15 17:47:00,2026-03-18 07:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.2,1,100.0 +2026-04-09 04:29:00,2026-04-11 06:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,247.9,1,118.17 +2026-02-27 22:46:00,2026-02-27 23:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,134.71 +2026-04-17 05:39:00,2026-04-19 13:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,130.44 +2026-03-25 15:23:00,2026-03-27 17:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,154.48 +2026-03-17 00:11:39,2026-03-17 00:00:00,NHL,Florida Panthers,Carolina Hurricanes,4.7,0.0,0.387,BetMGM,POINTS_SPREAD,0.6,0,133.72 +2026-03-31 20:53:00,2026-03-31 23:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,17.6,1,113.64 +2026-03-19 05:42:21,2026-03-19 05:00:00,NFL,San Francisco 49ers,Baltimore Ravens,5.8,0.0,0.602,Fanduel,POINTS_SPREAD,0.3,1,100.0 +2026-03-11 12:09:40,2026-03-11 11:00:00,NBA,Milwaukee Bucks,Denver Nuggets,-0.4,0.0,0.426,BetMGM,POINTS_SPREAD,0.8,0,102.09 +2026-02-24 22:38:58,2026-02-24 22:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.361,BetMGM,MONEYLINE,0.0,NA,160.3 +2026-02-22 08:26:15,2026-02-22 10:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.207,Fanduel,MONEYLINE,0.0,NA,126.15 +2026-03-10 18:13:00,2026-03-11 21:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,0,134.67 +2026-02-21 12:55:46,2026-02-21 12:00:00,NBA,Miami Heat,Phoenix Suns,0.0,223.4,0.521,BetMGM,POINTS_TOTAL,226.6,0,100.0 +2026-04-01 08:53:30,2026-04-01 07:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,37.2,0.875,Fanduel,POINTS_TOTAL,25.3,1,100.0 +2026-04-01 14:06:04,2026-04-01 14:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,45.1,0.656,BetMGM,POINTS_TOTAL,48.1,1,120.73 +2026-02-27 08:06:39,2026-02-27 09:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,222.9,0.137,Fanduel,POINTS_TOTAL,224.2,0,100.98 +2026-03-30 06:59:00,2026-03-31 11:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,22.3,1,133.54 +2026-03-25 16:11:55,2026-03-25 17:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,-3.8,0.0,0.394,Fanduel,POINTS_SPREAD,0.6,0,100.0 +2026-03-17 06:14:00,2026-03-19 14:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-21 01:19:34,2026-04-21 01:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.181,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-23 15:08:00,2026-02-25 09:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,1,118.84 +2026-04-06 19:44:00,2026-04-07 20:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,1,100.0 +2026-04-09 14:58:00,2026-04-12 02:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,101.22 +2026-03-22 13:12:00,2026-03-23 14:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.8,0,127.58 +2026-03-03 05:47:00,2026-03-04 16:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-28 20:00:00,2026-03-01 19:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-05 09:03:04,2026-04-05 08:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,20.6,0.456,Fanduel,POINTS_TOTAL,22.5,0,110.65 +2026-03-11 06:39:37,2026-03-11 07:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.659,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-11 20:06:00,2026-03-14 12:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,46.3,1,107.99 +2026-03-19 00:15:36,2026-03-18 22:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.82,BetMGM,MONEYLINE,0.0,NA,146.0 +2026-03-12 06:50:00,2026-03-12 07:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,54.1,0.45,BetMGM,POINTS_TOTAL,55.2,0,105.87 +2026-04-02 02:25:00,2026-04-04 16:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,8.0,0,115.71 +2026-04-17 10:21:00,2026-04-20 02:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,115.3 +2026-04-07 03:04:08,2026-04-07 02:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,214.8,0.573,BetMGM,POINTS_TOTAL,215.6,1,104.37 +2026-03-02 01:19:00,2026-03-04 07:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-30 23:30:56,2026-03-30 22:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.583,BetMGM,MONEYLINE,0.0,NA,109.64 +2026-03-22 22:07:10,2026-03-22 23:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.351,Fanduel,MONEYLINE,0.0,NA,143.01 +2026-03-31 22:45:00,2026-04-01 14:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,51.4,0,124.02 +2026-03-03 21:35:00,2026-03-05 06:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.7,0,100.0 +2026-03-20 22:52:45,2026-03-20 21:00:00,NFL,Detroit Lions,Dallas Cowboys,0.1,0.0,0.932,BetMGM,POINTS_SPREAD,1.7,0,104.39 +2026-04-12 18:12:58,2026-04-12 18:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,60.8,0.661,Fanduel,POINTS_TOTAL,66.6,0,115.58 +2026-03-01 03:51:00,2026-03-01 09:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.8,0,103.8 +2026-03-06 22:29:00,2026-03-08 01:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,133.51 +2026-02-19 10:18:00,2026-02-20 17:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-16 08:54:54,2026-03-16 08:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,-1.2,0.0,0.755,BetMGM,POINTS_SPREAD,3.5,0,100.0 +2026-03-26 09:41:00,2026-03-28 06:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,59.8,1,119.54 +2026-03-12 09:18:00,2026-03-13 21:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,0,103.19 +2026-04-12 15:40:46,2026-04-12 14:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.771,Fanduel,MONEYLINE,0.0,NA,176.49 +2026-03-18 18:37:00,2026-03-21 01:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-25 23:53:57,2026-02-25 23:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.572,BetMGM,MONEYLINE,0.0,NA,105.83 +2026-04-09 05:12:00,2026-04-10 17:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,168.06 +2026-03-01 00:33:00,2026-03-01 06:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,7.3,1,109.62 +2026-04-18 17:24:28,2026-04-18 15:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,-2.0,0.0,0.936,BetMGM,POINTS_SPREAD,0.0,0,113.74 +2026-02-20 12:25:00,2026-02-21 12:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.0,1,100.0 +2026-03-29 13:11:00,2026-03-31 00:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-16 19:08:33,2026-04-16 20:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,21.7,0.292,Fanduel,POINTS_TOTAL,12.9,0,119.93 +2026-04-07 00:21:37,2026-04-07 00:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.659,BetMGM,MONEYLINE,0.0,NA,144.02 +2026-03-25 09:10:00,2026-03-25 20:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,139.87 +2026-03-21 07:40:00,2026-03-22 20:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,56.9,0,100.0 +2026-04-11 16:02:00,2026-04-13 12:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,151.54 +2026-04-16 13:49:00,2026-04-17 17:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,225.6,1,106.09 +2026-04-07 10:41:00,2026-04-08 06:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,221.4,1,100.0 +2026-03-31 22:19:00,2026-04-01 23:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,0,100.0 +2026-03-26 03:11:00,2026-03-29 00:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,43.0,0,100.14 +2026-04-11 02:04:24,2026-04-11 02:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.38,BetMGM,MONEYLINE,0.0,NA,114.81 +2026-03-11 04:13:00,2026-03-13 04:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,121.92 +2026-03-12 14:27:00,2026-03-12 23:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,219.1,1,125.88 +2026-03-15 21:51:00,2026-03-17 22:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,117.93 +2026-04-05 04:16:00,2026-04-07 23:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,1,125.29 +2026-04-05 03:22:00,2026-04-06 02:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,5.7,0,100.0 +2026-04-08 18:07:00,2026-04-11 18:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,6.2,1,109.44 +2026-03-26 09:31:00,2026-03-29 09:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.2,0,100.0 +2026-02-18 05:58:00,2026-02-21 00:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.6,1,100.0 +2026-04-16 23:24:02,2026-04-16 23:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.778,Fanduel,MONEYLINE,0.0,NA,142.44 +2026-04-10 23:37:00,2026-04-11 08:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,109.56 +2026-03-06 04:13:00,2026-03-06 10:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,0,134.19 +2026-04-14 06:33:00,2026-04-16 12:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.2,1,100.0 +2026-02-25 13:40:00,2026-02-26 12:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.4,1,100.0 +2026-03-28 12:20:07,2026-03-28 11:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.484,Fanduel,MONEYLINE,0.0,NA,130.07 +2026-04-02 09:36:00,2026-04-04 13:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.8,0,100.0 +2026-03-15 05:56:00,2026-03-16 09:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,112.72 +2026-03-22 13:01:00,2026-03-25 00:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,46.6,1,112.44 +2026-04-09 01:36:00,2026-04-09 13:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,1,100.0 +2026-02-25 01:09:00,2026-02-26 20:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,0,127.77 +2026-03-09 19:30:48,2026-03-09 18:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,12.1,0.71,BetMGM,POINTS_TOTAL,15.6,0,101.43 +2026-03-06 23:50:00,2026-03-07 12:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-22 20:17:12,2026-02-22 19:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,1.5,0.0,0.79,BetMGM,POINTS_SPREAD,5.6,0,100.0 +2026-03-09 17:22:44,2026-03-09 17:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.743,BetMGM,MONEYLINE,0.0,NA,134.06 +2026-02-22 05:08:00,2026-02-22 17:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,193.59 +2026-04-13 22:00:00,2026-04-14 05:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,112.26 +2026-03-24 18:41:00,2026-03-25 23:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,229.3,0,105.93 +2026-02-23 02:25:21,2026-02-23 01:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.702,BetMGM,MONEYLINE,0.0,NA,125.89 +2026-03-21 04:58:00,2026-03-22 02:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,1,100.0 +2026-04-18 11:26:00,2026-04-18 19:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.5,1,120.51 +2026-04-19 06:14:00,2026-04-20 01:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,0,115.03 +2026-03-08 01:33:24,2026-03-08 01:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,35.5,0.23,BetMGM,POINTS_TOTAL,36.1,1,117.11 +2026-03-18 19:33:00,2026-03-19 11:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,22.1,0,106.39 +2026-03-12 19:29:00,2026-03-13 00:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,1,111.79 +2026-02-23 04:30:00,2026-02-23 19:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,144.92 +2026-03-18 05:13:40,2026-03-18 06:00:00,NFL,Detroit Lions,Dallas Cowboys,0.7,0.0,0.126,Fanduel,POINTS_SPREAD,2.3,0,123.38 +2026-03-24 07:51:00,2026-03-25 11:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,227.2,0,127.15 +2026-02-27 23:12:00,2026-02-28 03:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,0,116.87 +2026-03-21 21:32:00,2026-03-24 14:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,222.9,0,100.0 +2026-04-11 10:48:15,2026-04-11 11:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,-0.6,0.0,0.057,Fanduel,POINTS_SPREAD,1.7,1,100.0 +2026-03-15 17:08:08,2026-03-15 17:00:00,NHL,New York Rangers,Carolina Hurricanes,2.4,0.0,0.723,BetMGM,POINTS_SPREAD,2.7,1,119.58 +2026-03-20 14:23:15,2026-03-20 14:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,-1.3,0.0,0.807,BetMGM,POINTS_SPREAD,1.2,0,119.05 +2026-03-30 14:43:42,2026-03-30 15:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.315,Fanduel,MONEYLINE,0.0,NA,147.06 +2026-03-09 12:14:00,2026-03-11 22:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,54.9,0,100.0 +2026-03-25 16:14:00,2026-03-27 01:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,23.3,0,100.0 +2026-03-07 23:30:00,2026-03-10 16:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,226.5,1,101.89 +2026-04-03 13:56:00,2026-04-06 06:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,132.93 +2026-02-26 23:06:32,2026-02-26 23:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.403,Fanduel,MONEYLINE,0.0,NA,118.36 +2026-03-15 11:06:00,2026-03-18 06:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,44.6,1,100.0 +2026-03-13 06:00:16,2026-03-13 04:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,3.5,0.896,Fanduel,POINTS_TOTAL,3.5,0,123.09 +2026-03-08 18:38:00,2026-03-10 20:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,1,100.0 +2026-03-28 07:14:00,2026-03-29 14:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,4.7,1,109.46 +2026-03-05 12:28:00,2026-03-07 12:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,1,100.0 +2026-02-27 16:52:00,2026-03-01 06:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,150.1 +2026-03-07 07:25:00,2026-03-08 08:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,217.9,0,107.58 +2026-03-21 02:53:37,2026-03-21 02:00:00,NBA,Miami Heat,Milwaukee Bucks,-2.3,0.0,0.509,BetMGM,POINTS_SPREAD,0.6,0,124.84 +2026-03-02 18:27:00,2026-03-04 02:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.31 +2026-03-03 04:01:00,2026-03-04 10:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,0,119.56 +2026-03-30 11:38:31,2026-03-30 12:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.214,Fanduel,MONEYLINE,0.0,NA,139.03 +2026-03-23 03:12:00,2026-03-23 05:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-10 03:40:00,2026-04-10 06:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,0,123.3 +2026-04-11 23:31:00,2026-04-14 11:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,8.6,0,113.47 +2026-04-10 06:56:00,2026-04-12 23:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,157.74 +2026-03-23 06:51:00,2026-03-23 11:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,40.6,1,113.37 +2026-02-20 12:41:33,2026-02-20 13:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.342,Fanduel,MONEYLINE,0.0,NA,167.61 +2026-03-30 03:54:20,2026-03-30 04:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,35.8,0.563,BetMGM,POINTS_TOTAL,31.2,1,108.59 +2026-02-23 21:49:00,2026-02-26 20:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-24 15:26:46,2026-03-24 14:00:00,NBA,Miami Heat,Golden State Warriors,5.8,0.0,0.721,Fanduel,POINTS_SPREAD,3.9,1,100.0 +2026-02-23 19:29:00,2026-02-26 01:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,1,107.77 +2026-03-30 10:21:00,2026-04-01 12:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,0,132.4 +2026-04-09 03:47:16,2026-04-09 05:00:00,NFL,Detroit Lions,Miami Dolphins,-1.1,0.0,0.296,BetMGM,POINTS_SPREAD,0.6,0,100.0 +2026-04-04 01:50:00,2026-04-04 06:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,1,118.91 +2026-03-15 20:37:40,2026-03-15 20:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.3,0.0,0.276,Fanduel,POINTS_SPREAD,1.1,0,100.0 +2026-04-12 10:21:00,2026-04-13 09:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,122.48 +2026-03-06 09:22:00,2026-03-08 10:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,30.6,1,113.37 +2026-03-30 15:40:00,2026-04-02 04:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,100.0 +2026-04-05 15:17:00,2026-04-08 12:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,33.9,1,102.57 +2026-04-08 18:08:00,2026-04-11 12:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,166.7 +2026-04-15 14:37:00,2026-04-17 07:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,106.85 +2026-03-22 07:58:00,2026-03-22 21:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,5.5,0,115.47 +2026-03-03 22:04:00,2026-03-05 02:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,112.88 +2026-04-18 08:56:32,2026-04-18 07:00:00,NHL,New York Rangers,Colorado Avalanche,-2.1,0.0,0.953,BetMGM,POINTS_SPREAD,2.0,1,104.27 +2026-03-07 05:00:00,2026-03-07 23:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,131.11 +2026-04-02 08:59:00,2026-04-03 08:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-17 04:31:00,2026-04-18 12:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.6,0,135.18 +2026-03-26 07:59:00,2026-03-29 05:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,0,149.15 +2026-04-21 09:20:38,2026-04-21 08:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,36.8,0.598,Fanduel,POINTS_TOTAL,31.4,0,113.97 +2026-04-04 07:27:00,2026-04-04 07:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,19.2,0.8,Fanduel,POINTS_TOTAL,21.2,0,106.34 +2026-04-12 15:17:00,2026-04-14 07:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,63.6,1,100.0 +2026-02-24 08:28:21,2026-02-24 07:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,9.4,0.902,BetMGM,POINTS_TOTAL,14.3,1,107.78 +2026-02-19 09:49:00,2026-02-21 04:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,1,100.0 +2026-02-23 00:02:00,2026-02-25 20:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,148.59 +2026-03-25 18:50:00,2026-03-25 19:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,221.7,0,124.83 +2026-03-13 08:26:00,2026-03-15 17:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,235.9,1,128.21 +2026-02-20 08:38:00,2026-02-23 03:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-18 10:00:14,2026-03-18 10:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.168,Fanduel,MONEYLINE,0.0,NA,155.57 +2026-03-01 13:06:00,2026-03-01 19:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,161.29 +2026-03-08 22:33:00,2026-03-11 00:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.5,0,138.22 +2026-03-18 23:13:32,2026-03-19 00:00:00,NFL,San Francisco 49ers,Miami Dolphins,2.7,0.0,0.203,Fanduel,POINTS_SPREAD,1.2,0,117.83 +2026-03-24 04:05:00,2026-03-26 08:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,0,110.85 +2026-03-08 14:40:00,2026-03-10 20:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,112.72 +2026-04-14 18:17:00,2026-04-17 12:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,103.31 +2026-03-25 14:07:39,2026-03-25 13:00:00,NBA,Milwaukee Bucks,Boston Celtics,-2.9,0.0,0.887,BetMGM,POINTS_SPREAD,0.9,0,100.0 +2026-04-10 02:27:00,2026-04-11 01:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,1,100.0 +2026-04-08 03:32:00,2026-04-08 13:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,115.4 +2026-03-22 20:58:00,2026-03-23 18:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,0,107.78 +2026-04-09 02:28:38,2026-04-09 00:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.848,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-28 21:09:00,2026-03-31 17:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,116.16 +2026-02-18 05:35:00,2026-02-20 19:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-07 18:11:00,2026-03-10 15:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,127.87 +2026-03-13 13:30:00,2026-03-14 19:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,119.56 +2026-03-06 10:55:00,2026-03-06 16:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,1,100.0 +2026-04-09 12:27:13,2026-04-09 11:00:00,NHL,New York Rangers,Carolina Hurricanes,2.1,0.0,0.929,Fanduel,POINTS_SPREAD,1.1,0,129.72 +2026-04-14 07:59:00,2026-04-14 21:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.0,0,118.28 +2026-03-27 11:33:46,2026-03-27 11:00:00,NBA,Phoenix Suns,Miami Heat,1.0,0.0,0.671,BetMGM,POINTS_SPREAD,1.4,1,100.0 +2026-04-02 22:16:07,2026-04-02 22:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,214.9,0.584,Fanduel,POINTS_TOTAL,217.5,0,113.12 +2026-03-16 14:33:42,2026-03-16 15:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.215,BetMGM,MONEYLINE,0.0,NA,124.95 +2026-03-31 15:24:00,2026-03-31 18:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,26.0,1,103.09 +2026-04-10 15:47:00,2026-04-11 08:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,1,100.0 +2026-04-14 01:19:00,2026-04-16 14:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.6,0,100.0 +2026-03-19 02:34:00,2026-03-21 12:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,227.4,0,103.01 +2026-03-05 23:24:00,2026-03-06 20:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,51.3,1,105.44 +2026-02-25 19:21:00,2026-02-27 04:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,0,105.16 +2026-03-10 08:36:00,2026-03-11 20:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,0,100.0 +2026-04-13 06:35:37,2026-04-13 07:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.409,BetMGM,MONEYLINE,0.0,NA,120.28 +2026-02-18 09:11:00,2026-02-20 14:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,32.0,1,100.0 +2026-04-18 06:07:00,2026-04-20 12:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,25.2,1,103.04 +2026-03-25 21:33:09,2026-03-25 22:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.512,Fanduel,MONEYLINE,0.0,NA,117.18 +2026-04-11 19:33:27,2026-04-11 20:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,43.7,0.347,Fanduel,POINTS_TOTAL,48.1,1,115.74 +2026-04-12 16:50:10,2026-04-12 16:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,-1.6,0.0,0.851,BetMGM,POINTS_SPREAD,2.0,0,100.0 +2026-04-20 14:20:00,2026-04-20 16:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,105.96 +2026-02-21 08:48:00,2026-02-23 23:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,229.6,0,108.68 +2026-04-19 08:46:10,2026-04-19 09:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,20.4,0.301,Fanduel,POINTS_TOTAL,23.2,1,110.54 +2026-04-01 15:28:00,2026-04-03 12:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,0,103.31 +2026-03-28 06:32:00,2026-03-28 14:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-09 07:02:57,2026-03-09 05:00:00,NHL,Florida Panthers,Vegas Golden Knights,-0.8,0.0,0.922,BetMGM,POINTS_SPREAD,1.6,1,138.56 +2026-04-01 00:01:45,2026-04-01 00:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,227.8,0.182,BetMGM,POINTS_TOTAL,233.3,1,106.07 +2026-03-12 10:17:00,2026-03-12 18:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,231.8,0,100.0 +2026-03-18 17:13:00,2026-03-20 14:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,0,108.35 +2026-02-27 19:43:00,2026-02-28 21:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,1,100.0 +2026-03-26 17:06:00,2026-03-28 14:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,7.0,1,110.85 +2026-02-22 07:20:00,2026-02-23 02:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,9.2,0,100.0 +2026-02-24 23:37:00,2026-02-25 18:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,0,129.2 +2026-04-03 17:32:00,2026-04-05 09:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,122.2 +2026-03-14 17:12:00,2026-03-16 19:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,1,100.0 +2026-03-19 08:45:00,2026-03-20 15:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,147.15 +2026-03-18 03:51:19,2026-03-18 04:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,-0.1,0.0,0.174,BetMGM,POINTS_SPREAD,2.0,1,100.0 +2026-03-19 12:22:00,2026-03-21 04:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,5.1,0,122.27 +2026-03-27 13:33:00,2026-03-27 21:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,1,144.35 +2026-03-31 19:16:00,2026-04-01 17:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.0,1,100.0 +2026-03-23 02:02:00,2026-03-24 05:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.0,0,100.0 +2026-04-16 22:41:00,2026-04-18 07:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,224.7,0,100.0 +2026-03-12 02:39:00,2026-03-13 16:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,1,142.69 +2026-02-23 02:03:56,2026-02-23 01:00:00,NFL,Dallas Cowboys,San Francisco 49ers,-1.4,0.0,0.633,BetMGM,POINTS_SPREAD,0.8,0,100.0 +2026-04-11 17:27:00,2026-04-13 12:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-08 03:12:00,2026-04-10 01:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.9,0,100.0 +2026-04-06 17:43:00,2026-04-08 21:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,9.9,0,117.52 +2026-03-25 03:09:00,2026-03-25 12:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.6,1,100.0 +2026-03-31 17:38:00,2026-03-31 18:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-16 00:51:12,2026-04-16 00:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,-2.6,0.0,0.59,BetMGM,POINTS_SPREAD,1.5,1,112.3 +2026-02-24 18:55:15,2026-02-24 19:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,229.1,0.107,Fanduel,POINTS_TOTAL,221.0,1,102.92 +2026-04-06 18:58:00,2026-04-09 12:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,122.85 +2026-03-16 07:14:36,2026-03-16 07:00:00,NHL,Colorado Avalanche,Florida Panthers,2.0,0.0,0.22,Fanduel,POINTS_SPREAD,4.0,1,100.0 +2026-03-02 18:19:00,2026-03-03 19:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,116.0 +2026-03-19 02:04:00,2026-03-19 03:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,4.3,0,100.0 +2026-03-05 17:13:37,2026-03-05 17:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.259,Fanduel,MONEYLINE,0.0,NA,135.35 +2026-03-11 07:33:48,2026-03-11 09:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.11,BetMGM,MONEYLINE,0.0,NA,122.79 +2026-03-04 10:58:00,2026-03-05 06:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,0,100.0 +2026-04-03 02:20:25,2026-04-03 02:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.569,Fanduel,MONEYLINE,0.0,NA,168.43 +2026-04-19 04:19:00,2026-04-20 05:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,128.43 +2026-03-27 21:16:00,2026-03-28 05:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-15 15:13:52,2026-03-15 15:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,238.0,0.666,BetMGM,POINTS_TOTAL,235.4,1,119.04 +2026-03-22 08:18:00,2026-03-23 15:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,230.6,1,115.57 +2026-04-16 18:13:58,2026-04-16 16:00:00,NFL,Kansas City Chiefs,Detroit Lions,1.2,0.0,0.761,Fanduel,POINTS_SPREAD,8.3,0,100.0 +2026-04-09 04:17:00,2026-04-09 17:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,222.2,0,100.0 +2026-04-17 00:07:02,2026-04-17 00:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,3.5,0.578,BetMGM,POINTS_TOTAL,15.2,1,130.83 +2026-04-15 22:45:00,2026-04-18 03:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-07 03:04:00,2026-03-08 01:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,57.9,0,100.0 +2026-03-16 05:27:00,2026-03-16 06:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,141.85 +2026-04-15 12:24:00,2026-04-18 12:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.9,0,120.59 +2026-03-29 12:35:28,2026-03-29 12:00:00,NHL,Florida Panthers,Boston Bruins,0.0,18.9,0.486,Fanduel,POINTS_TOTAL,24.1,0,105.81 +2026-03-29 08:15:00,2026-04-01 08:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,1,100.0 +2026-04-11 23:27:00,2026-04-13 21:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,48.4,0,101.88 +2026-03-28 03:07:00,2026-03-28 20:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,101.61 +2026-04-07 14:20:00,2026-04-08 20:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,234.1,1,117.07 +2026-03-04 19:02:00,2026-03-05 22:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,0,129.07 +2026-03-11 18:07:00,2026-03-13 08:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.6,1,100.0 +2026-03-18 04:20:34,2026-03-18 03:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.881,BetMGM,MONEYLINE,0.0,NA,122.05 +2026-03-05 23:41:56,2026-03-05 23:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,3.5,0.283,BetMGM,POINTS_TOTAL,3.5,0,108.76 +2026-04-04 01:37:00,2026-04-05 22:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,40.8,1,100.0 +2026-02-20 15:14:14,2026-02-20 14:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,51.0,0.518,BetMGM,POINTS_TOTAL,52.1,1,100.0 +2026-04-03 22:20:00,2026-04-04 09:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.9,0,117.39 +2026-03-15 18:43:00,2026-03-16 17:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,46.4,1,104.9 +2026-03-23 05:26:00,2026-03-25 04:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,242.9,0,111.18 +2026-02-27 17:52:00,2026-02-27 18:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,225.2,0,100.0 +2026-03-08 18:57:20,2026-03-08 20:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.213,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-01 20:25:00,2026-03-02 10:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,47.8,1,128.28 +2026-03-02 03:30:55,2026-03-02 03:00:00,NHL,New York Rangers,Carolina Hurricanes,4.1,0.0,0.294,BetMGM,POINTS_SPREAD,0.2,0,124.89 +2026-02-23 02:44:58,2026-02-23 02:00:00,NBA,Denver Nuggets,Miami Heat,0.0,243.0,0.311,BetMGM,POINTS_TOTAL,243.2,1,104.13 +2026-04-12 15:58:16,2026-04-12 16:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,218.0,0.646,Fanduel,POINTS_TOTAL,212.0,0,122.25 +2026-02-24 23:10:00,2026-02-25 18:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,207.1,1,100.0 +2026-03-19 06:20:15,2026-03-19 05:00:00,NBA,Boston Celtics,Milwaukee Bucks,3.6,0.0,0.807,Fanduel,POINTS_SPREAD,2.3,1,100.0 +2026-03-18 06:27:34,2026-03-18 07:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.531,BetMGM,MONEYLINE,0.0,NA,106.89 +2026-03-12 20:02:00,2026-03-13 01:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,129.15 +2026-03-15 21:09:00,2026-03-16 16:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.0,0,119.28 +2026-04-08 12:09:21,2026-04-08 12:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,15.5,0.202,Fanduel,POINTS_TOTAL,17.5,1,106.13 +2026-04-03 20:47:00,2026-04-05 23:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-08 17:57:46,2026-03-08 19:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,1.3,0.0,0.321,Fanduel,POINTS_SPREAD,2.9,1,114.7 +2026-03-19 04:02:00,2026-03-22 01:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,121.09 +2026-03-23 01:59:01,2026-03-23 03:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.189,Fanduel,MONEYLINE,0.0,NA,100.5 +2026-03-17 13:43:42,2026-03-17 14:00:00,NHL,Edmonton Oilers,Boston Bruins,3.5,0.0,0.415,Fanduel,POINTS_SPREAD,0.5,0,111.29 +2026-04-03 11:56:10,2026-04-03 10:00:00,NBA,Los Angeles Lakers,Boston Celtics,-5.9,0.0,0.851,BetMGM,POINTS_SPREAD,4.8,0,100.0 +2026-03-16 21:13:00,2026-03-18 17:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,7.4,0,100.0 +2026-03-27 10:17:00,2026-03-29 08:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,5.5,0,119.6 +2026-03-14 01:07:58,2026-03-14 01:00:00,NFL,Baltimore Ravens,Detroit Lions,1.0,0.0,0.111,Fanduel,POINTS_SPREAD,1.9,0,104.17 +2026-03-01 19:41:00,2026-03-03 10:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,1,130.91 +2026-03-26 03:52:22,2026-03-26 05:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,241.1,0.041,BetMGM,POINTS_TOTAL,237.9,1,109.89 +2026-04-17 13:48:34,2026-04-17 13:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,6.8,0.381,BetMGM,POINTS_TOTAL,5.9,1,105.24 +2026-04-10 11:39:54,2026-04-10 11:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.455,Fanduel,MONEYLINE,0.0,NA,153.01 +2026-04-01 08:19:00,2026-04-04 06:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,33.2,1,100.0 +2026-04-13 13:26:00,2026-04-15 13:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,220.4,0,110.2 +2026-03-27 11:09:57,2026-03-27 12:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,37.2,0.322,BetMGM,POINTS_TOTAL,35.7,0,104.83 +2026-04-03 04:31:00,2026-04-05 13:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,226.2,1,113.45 +2026-03-07 05:29:02,2026-03-07 07:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,231.0,0.128,Fanduel,POINTS_TOTAL,230.1,1,116.61 +2026-03-17 10:35:58,2026-03-17 10:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,44.2,0.911,BetMGM,POINTS_TOTAL,42.1,1,100.0 +2026-02-22 04:33:00,2026-02-22 23:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.4,0,100.0 +2026-03-29 05:38:00,2026-04-01 02:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.6,0,122.1 +2026-03-04 02:49:39,2026-03-04 02:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.787,Fanduel,MONEYLINE,0.0,NA,133.0 +2026-02-22 06:47:54,2026-02-22 08:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.255,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-24 21:40:42,2026-03-24 22:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,4.7,0.0,0.115,BetMGM,POINTS_SPREAD,1.2,0,117.83 +2026-02-22 13:22:00,2026-02-23 07:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,0,126.63 +2026-04-19 23:53:22,2026-04-19 23:00:00,NBA,Miami Heat,Boston Celtics,0.0,224.5,0.741,Fanduel,POINTS_TOTAL,223.8,1,100.0 +2026-03-07 07:41:00,2026-03-08 02:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,19.6,0,107.17 +2026-04-17 11:20:00,2026-04-20 01:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.0,1,143.91 +2026-04-11 13:43:42,2026-04-11 14:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.315,BetMGM,MONEYLINE,0.0,NA,107.54 +2026-04-12 04:02:43,2026-04-12 03:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,234.8,0.854,Fanduel,POINTS_TOTAL,231.3,0,114.13 +2026-04-12 17:56:00,2026-04-15 10:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,6.1,1,118.79 +2026-02-25 08:45:00,2026-02-28 05:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,1,120.97 +2026-03-30 03:01:00,2026-03-30 18:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,59.8,0,103.96 +2026-02-21 12:08:00,2026-02-23 02:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,0,100.0 +2026-03-31 12:04:00,2026-04-02 04:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,1,143.77 +2026-03-09 10:33:00,2026-03-12 01:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,38.6,0,112.24 +2026-03-07 13:36:00,2026-03-09 00:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,226.5,0,103.34 +2026-03-31 19:07:00,2026-04-02 03:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,119.8 +2026-03-03 12:57:00,2026-03-06 03:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,44.4,1,119.93 +2026-03-26 23:59:00,2026-03-27 18:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,1,123.49 +2026-03-16 08:35:28,2026-03-16 08:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,51.9,0.236,BetMGM,POINTS_TOTAL,49.6,0,106.8 +2026-02-24 04:31:10,2026-02-24 04:00:00,NBA,Los Angeles Lakers,Denver Nuggets,-0.7,0.0,0.801,BetMGM,POINTS_SPREAD,3.3,1,107.57 +2026-03-10 05:00:00,2026-03-11 18:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,130.8 +2026-04-11 10:48:00,2026-04-13 02:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,111.36 +2026-04-03 00:47:00,2026-04-05 02:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,7.9,0,104.4 +2026-04-12 09:21:00,2026-04-13 15:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.75 +2026-03-12 04:43:00,2026-03-15 04:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,0,123.42 +2026-03-05 15:16:00,2026-03-05 16:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,21.1,1,100.0 +2026-04-16 01:52:00,2026-04-17 06:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,137.05 +2026-04-07 05:40:26,2026-04-07 05:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.858,Fanduel,MONEYLINE,0.0,NA,128.1 +2026-03-12 23:05:55,2026-03-12 22:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.444,BetMGM,MONEYLINE,0.0,NA,147.2 +2026-04-13 15:50:00,2026-04-15 20:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,129.62 +2026-03-01 05:16:00,2026-03-02 21:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,0,124.37 +2026-03-28 04:03:36,2026-03-28 04:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,3.5,0.27,Fanduel,POINTS_TOTAL,6.2,0,126.52 +2026-04-02 18:15:21,2026-04-02 17:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.802,BetMGM,MONEYLINE,0.0,NA,122.69 +2026-03-25 00:35:00,2026-03-26 19:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,1,110.59 +2026-04-09 09:47:00,2026-04-09 11:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.4,1,100.0 +2026-04-08 07:19:00,2026-04-09 03:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.2,0,100.0 +2026-04-19 11:22:25,2026-04-19 11:00:00,NHL,Carolina Hurricanes,Florida Panthers,-6.4,0.0,0.519,Fanduel,POINTS_SPREAD,0.7,0,100.0 +2026-03-12 20:47:38,2026-03-12 21:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.048,BetMGM,MONEYLINE,0.0,NA,141.71 +2026-04-03 23:12:43,2026-04-04 00:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.154,BetMGM,MONEYLINE,0.0,NA,131.83 +2026-03-19 01:29:00,2026-03-22 01:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,0,111.14 +2026-04-05 21:45:00,2026-04-07 08:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,15.4,1,100.0 +2026-04-18 05:09:00,2026-04-19 20:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,0,106.7 +2026-04-14 11:33:00,2026-04-14 10:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,217.0,0.7,BetMGM,POINTS_TOTAL,212.3,0,108.09 +2026-02-26 01:54:00,2026-02-28 12:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-06 09:36:00,2026-03-08 14:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,111.88 +2026-03-15 03:56:00,2026-03-16 09:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,110.44 +2026-03-04 09:14:07,2026-03-04 10:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,5.1,0.034,Fanduel,POINTS_TOTAL,5.0,1,113.41 +2026-03-31 03:50:00,2026-04-02 02:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,102.79 +2026-02-28 02:12:00,2026-03-01 12:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,69.8,0,110.95 +2026-02-22 02:24:00,2026-02-24 19:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,238.2,0,100.0 +2026-03-11 02:25:00,2026-03-13 04:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-18 21:54:06,2026-04-18 23:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,3.7,0.0,0.195,Fanduel,POINTS_SPREAD,0.7,1,103.47 +2026-02-28 10:29:30,2026-02-28 10:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.175,Fanduel,MONEYLINE,0.0,NA,125.52 +2026-04-04 20:55:20,2026-04-04 21:00:00,NFL,San Francisco 49ers,Buffalo Bills,-4.0,0.0,0.613,Fanduel,POINTS_SPREAD,4.3,1,160.93 +2026-03-20 16:21:19,2026-03-20 17:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,43.9,0.374,BetMGM,POINTS_TOTAL,41.0,1,112.87 +2026-04-06 16:06:06,2026-04-06 14:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,7.3,0.795,Fanduel,POINTS_TOTAL,12.3,1,126.99 +2026-03-24 23:42:00,2026-03-27 08:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,126.57 +2026-03-14 21:51:00,2026-03-15 17:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,140.94 +2026-04-10 11:54:00,2026-04-11 15:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,1,100.0 +2026-02-20 17:35:00,2026-02-21 21:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.0,1,100.0 +2026-03-29 22:05:00,2026-03-31 19:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-28 02:30:00,2026-03-29 21:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.3,1,122.48 +2026-02-19 23:08:00,2026-02-21 21:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,219.6,0,113.93 +2026-04-13 01:33:00,2026-04-15 10:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,111.51 +2026-04-15 22:41:16,2026-04-15 22:00:00,NHL,Vegas Golden Knights,Boston Bruins,2.9,0.0,0.846,Fanduel,POINTS_SPREAD,1.3,0,123.01 +2026-04-03 03:38:00,2026-04-05 20:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,11.1,0,104.34 +2026-02-22 20:53:25,2026-02-22 20:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.569,Fanduel,MONEYLINE,0.0,NA,105.6 +2026-04-11 11:06:00,2026-04-12 21:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,152.55 +2026-02-23 03:05:08,2026-02-23 03:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.173,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-26 03:20:18,2026-02-26 04:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.035,Fanduel,MONEYLINE,0.0,NA,153.6 +2026-02-22 09:57:00,2026-02-23 11:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-10 12:03:00,2026-04-10 14:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.8,0,102.01 +2026-02-26 16:47:38,2026-02-26 16:00:00,NFL,Baltimore Ravens,San Francisco 49ers,-0.2,0.0,0.698,Fanduel,POINTS_SPREAD,2.0,0,100.0 +2026-04-14 08:21:00,2026-04-15 00:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,123.39 +2026-03-13 19:03:00,2026-03-15 03:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,1,110.3 +2026-03-25 07:18:00,2026-03-25 11:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-03 23:58:00,2026-03-04 01:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,126.09 +2026-02-22 06:07:00,2026-02-23 23:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,224.2,0,122.17 +2026-03-19 17:26:46,2026-03-19 18:00:00,NFL,Detroit Lions,Philadelphia Eagles,-0.4,0.0,0.271,BetMGM,POINTS_SPREAD,0.0,0,100.0 +2026-03-15 12:25:00,2026-03-15 18:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.4,1,110.99 +2026-02-22 16:59:46,2026-02-22 16:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.671,Fanduel,MONEYLINE,0.0,NA,101.1 +2026-02-22 22:51:25,2026-02-23 00:00:00,NBA,Boston Celtics,Denver Nuggets,3.0,0.0,0.069,Fanduel,POINTS_SPREAD,1.8,1,100.0 +2026-04-14 08:36:00,2026-04-15 07:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,12.2,1,112.88 +2026-03-29 13:12:00,2026-03-29 23:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,1,100.0 +2026-04-18 04:36:07,2026-04-18 06:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,222.5,0.034,Fanduel,POINTS_TOTAL,216.5,1,100.0 +2026-04-08 06:44:00,2026-04-09 15:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-01 16:45:00,2026-04-01 19:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,6.2,0,105.75 +2026-03-24 00:34:00,2026-03-26 00:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.83 +2026-03-19 15:06:00,2026-03-20 22:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,113.86 +2026-04-19 22:23:00,2026-04-20 11:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.6,0,100.0 +2026-03-16 01:35:14,2026-03-16 01:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,3.7,0.0,0.368,BetMGM,POINTS_SPREAD,0.9,0,112.01 +2026-04-12 16:14:00,2026-04-14 20:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.0,1,126.87 +2026-03-04 19:30:00,2026-03-07 16:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,113.76 +2026-02-20 16:27:19,2026-02-20 16:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.324,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-20 11:30:00,2026-03-21 11:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-10 15:30:00,2026-03-12 20:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,33.9,0,123.36 +2026-03-29 22:56:00,2026-03-30 13:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,102.9 +2026-02-19 17:34:00,2026-02-21 06:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,104.6 +2026-03-08 18:06:46,2026-03-08 19:00:00,NBA,Denver Nuggets,Golden State Warriors,4.2,0.0,0.071,Fanduel,POINTS_SPREAD,3.3,0,112.33 +2026-03-24 07:51:00,2026-03-25 20:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.4,1,134.75 +2026-02-26 05:42:01,2026-02-26 06:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,208.1,0.289,BetMGM,POINTS_TOTAL,216.7,1,122.77 +2026-03-31 10:08:00,2026-04-03 07:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,0,102.91 +2026-04-14 21:11:08,2026-04-14 21:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,51.9,0.373,Fanduel,POINTS_TOTAL,48.1,1,103.39 +2026-04-13 00:50:00,2026-04-15 11:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.8,1,133.84 +2026-02-27 07:14:00,2026-02-28 01:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,1,101.8 +2026-03-13 09:40:00,2026-03-16 02:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,197.5,1,100.0 +2026-03-05 09:16:00,2026-03-07 01:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,37.3,0,115.49 +2026-03-08 01:40:00,2026-03-10 08:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,45.5,0,125.35 +2026-03-19 19:33:40,2026-03-19 19:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,2.1,0.0,0.676,BetMGM,POINTS_SPREAD,1.3,1,115.04 +2026-02-24 17:43:00,2026-02-25 13:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,1,112.95 +2026-02-28 19:55:00,2026-03-01 05:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,1,133.98 +2026-03-06 18:44:00,2026-03-07 22:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,33.6,1,122.26 +2026-03-25 09:39:00,2026-03-28 00:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.1,1,121.7 +2026-02-24 19:28:58,2026-02-24 19:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.611,Fanduel,MONEYLINE,0.0,NA,138.47 +2026-03-23 05:23:00,2026-03-23 15:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,1,113.79 +2026-04-03 20:28:00,2026-04-04 18:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,0,102.84 +2026-03-31 06:50:00,2026-04-02 06:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.1,1,102.04 +2026-04-16 21:57:00,2026-04-18 15:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,128.56 +2026-04-19 11:07:00,2026-04-21 06:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,1,100.0 +2026-04-19 20:46:00,2026-04-20 03:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,1,100.0 +2026-04-14 03:05:00,2026-04-15 16:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,24.6,1,114.38 +2026-03-06 14:27:00,2026-03-07 18:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,58.2,1,116.3 +2026-03-26 16:45:00,2026-03-28 10:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,0,100.0 +2026-04-10 12:16:00,2026-04-11 14:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,0,114.01 +2026-03-30 23:10:00,2026-04-02 23:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,41.4,0,114.98 +2026-03-21 16:12:00,2026-03-22 03:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,134.68 +2026-04-02 12:11:00,2026-04-03 03:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,5.8,0,104.34 +2026-03-20 10:54:00,2026-03-22 14:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,116.19 +2026-03-03 08:39:03,2026-03-03 09:00:00,NBA,Boston Celtics,Milwaukee Bucks,2.6,0.0,0.517,Fanduel,POINTS_SPREAD,1.7,1,103.67 +2026-04-07 15:01:31,2026-04-07 14:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.814,Fanduel,MONEYLINE,0.0,NA,136.19 +2026-03-01 06:32:06,2026-03-01 06:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,6.0,0.895,Fanduel,POINTS_TOTAL,3.5,1,108.69 +2026-03-25 23:22:00,2026-03-27 20:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,147.28 +2026-03-05 15:57:00,2026-03-07 06:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.3,1,116.92 +2026-03-29 01:11:00,2026-03-31 00:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,1,109.19 +2026-04-04 20:35:00,2026-04-07 17:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,7.4,0,116.72 +2026-03-22 02:53:25,2026-03-22 01:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,53.5,0.869,BetMGM,POINTS_TOTAL,54.4,1,105.86 +2026-03-17 11:03:00,2026-03-19 19:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,20.4,0,102.86 +2026-04-09 17:33:00,2026-04-11 22:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,142.38 +2026-03-09 06:39:00,2026-03-12 02:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,113.87 +2026-03-23 07:48:00,2026-03-23 08:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,31.5,0,115.66 +2026-03-13 07:45:31,2026-03-13 07:00:00,NFL,Buffalo Bills,Dallas Cowboys,2.6,0.0,0.264,BetMGM,POINTS_SPREAD,1.1,1,100.0 +2026-02-28 13:58:13,2026-02-28 13:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.579,BetMGM,MONEYLINE,0.0,NA,103.19 +2026-02-20 07:31:00,2026-02-23 06:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,121.34 +2026-02-22 17:27:25,2026-02-22 16:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,-4.6,0.0,0.569,BetMGM,POINTS_SPREAD,3.0,1,168.13 +2026-04-10 06:30:00,2026-04-10 11:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,113.56 +2026-02-25 10:20:00,2026-02-26 06:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,5.0,1,100.0 +2026-04-17 14:19:00,2026-04-17 23:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,1,115.05 +2026-03-03 14:26:00,2026-03-06 14:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,126.86 +2026-04-21 02:01:00,2026-04-21 05:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,1,112.47 +2026-03-21 18:01:00,2026-03-22 05:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,134.2 +2026-03-27 12:30:00,2026-03-29 20:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,57.0,1,127.11 +2026-04-18 06:22:00,2026-04-19 11:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,1,141.36 +2026-03-27 01:23:20,2026-03-27 01:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.813,BetMGM,MONEYLINE,0.0,NA,145.66 +2026-03-20 02:02:36,2026-03-20 01:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,3.4,0.0,0.42,Fanduel,POINTS_SPREAD,1.8,0,117.34 +2026-03-14 03:25:00,2026-03-16 23:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,38.3,1,104.07 +2026-04-04 14:53:00,2026-04-04 22:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,234.8,0,100.0 +2026-03-17 13:53:00,2026-03-19 12:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,236.0,1,100.0 +2026-03-30 12:40:00,2026-03-31 23:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,130.2 +2026-03-13 18:19:00,2026-03-16 07:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.4,1,100.0 +2026-03-25 21:40:43,2026-03-25 22:00:00,NHL,Colorado Avalanche,Florida Panthers,-3.3,0.0,0.254,BetMGM,POINTS_SPREAD,1.5,0,109.13 +2026-03-08 21:17:00,2026-03-09 19:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-08 18:00:00,2026-04-10 22:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,202.2,0,100.0 +2026-03-16 05:13:00,2026-03-17 10:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,13.6,1,129.97 +2026-03-10 08:34:14,2026-03-10 08:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.218,Fanduel,MONEYLINE,0.0,NA,129.71 +2026-03-07 20:36:00,2026-03-10 04:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,5.8,0,100.0 +2026-03-27 15:22:13,2026-03-27 15:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,1.6,0.0,0.379,BetMGM,POINTS_SPREAD,6.4,1,139.7 +2026-03-18 16:02:00,2026-03-19 03:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,207.6,0,120.26 +2026-03-02 08:03:00,2026-03-03 22:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,210.1,0,100.0 +2026-03-14 02:01:00,2026-03-14 04:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,41.6,0,100.0 +2026-03-12 16:59:00,2026-03-14 01:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-26 04:56:18,2026-02-26 03:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.885,Fanduel,MONEYLINE,0.0,NA,124.44 +2026-04-17 05:59:32,2026-04-17 06:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.503,Fanduel,MONEYLINE,0.0,NA,144.7 +2026-03-17 16:46:00,2026-03-20 10:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,33.6,1,106.78 +2026-04-16 16:08:00,2026-04-19 10:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,137.67 +2026-03-08 16:33:00,2026-03-11 16:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,125.05 +2026-03-17 19:30:00,2026-03-19 17:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,0,115.93 +2026-03-14 02:24:14,2026-03-14 02:00:00,NBA,Boston Celtics,Phoenix Suns,2.2,0.0,0.468,Fanduel,POINTS_SPREAD,3.2,1,100.0 +2026-03-08 15:57:00,2026-03-10 06:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,129.57 +2026-03-14 17:46:00,2026-03-17 10:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,7.9,0,100.0 +2026-03-18 13:12:48,2026-03-18 14:00:00,NHL,New York Rangers,Colorado Avalanche,2.5,0.0,0.26,BetMGM,POINTS_SPREAD,0.2,1,117.3 +2026-03-29 23:08:00,2026-04-01 14:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,48.4,0,100.0 +2026-04-10 08:42:00,2026-04-12 15:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.1,1,124.96 +2026-04-03 06:35:01,2026-04-03 06:00:00,NFL,Dallas Cowboys,Detroit Lions,3.1,0.0,0.839,BetMGM,POINTS_SPREAD,3.5,1,115.94 +2026-04-20 03:09:49,2026-04-20 03:00:00,NBA,Phoenix Suns,Miami Heat,0.0,233.1,0.349,Fanduel,POINTS_TOTAL,225.3,1,101.82 +2026-03-03 09:16:00,2026-03-06 06:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,210.8,1,117.1 +2026-02-23 05:36:13,2026-02-23 05:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.829,Fanduel,MONEYLINE,0.0,NA,128.02 +2026-02-25 08:19:00,2026-02-26 04:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,106.83 +2026-03-06 15:28:14,2026-03-06 13:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,4.7,0.918,BetMGM,POINTS_TOTAL,4.4,1,116.48 +2026-02-21 15:06:00,2026-02-22 08:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,0,136.36 +2026-04-10 09:54:00,2026-04-11 08:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,47.2,0,100.0 +2026-03-06 19:14:00,2026-03-09 03:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.3,0,100.0 +2026-04-20 11:25:00,2026-04-21 07:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,145.63 +2026-03-26 16:49:46,2026-03-26 17:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.621,BetMGM,MONEYLINE,0.0,NA,111.94 +2026-04-16 20:27:00,2026-04-19 16:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,150.79 +2026-03-28 02:27:00,2026-03-29 23:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,33.6,0,100.0 +2026-03-11 05:49:00,2026-03-13 12:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.2,1,116.89 +2026-02-21 19:25:00,2026-02-24 07:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-25 22:09:15,2026-02-26 00:00:00,NBA,Denver Nuggets,Phoenix Suns,-1.5,0.0,0.057,BetMGM,POINTS_SPREAD,0.3,0,100.0 +2026-03-20 23:24:18,2026-03-21 01:00:00,NHL,New York Rangers,Edmonton Oilers,-3.8,0.0,0.185,Fanduel,POINTS_SPREAD,1.7,1,110.75 +2026-03-20 19:06:00,2026-03-22 22:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,4.0,0,117.3 +2026-03-05 10:31:00,2026-03-07 06:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,0,107.6 +2026-03-23 10:41:19,2026-03-23 11:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.4,0.0,0.574,Fanduel,POINTS_SPREAD,1.8,1,117.17 +2026-04-20 03:29:31,2026-04-20 04:00:00,NBA,Dallas Mavericks,Phoenix Suns,2.3,0.0,0.214,BetMGM,POINTS_SPREAD,1.9,1,120.53 +2026-03-30 06:28:49,2026-03-30 06:00:00,NBA,Denver Nuggets,Los Angeles Lakers,2.3,0.0,0.549,Fanduel,POINTS_SPREAD,3.9,0,103.86 +2026-04-14 10:35:00,2026-04-17 08:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,130.08 +2026-03-06 20:43:00,2026-03-08 05:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.9,0,116.28 +2026-04-03 09:57:00,2026-04-04 22:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,0,137.48 +2026-03-26 01:36:00,2026-03-28 02:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,108.69 +2026-02-22 10:12:31,2026-02-22 10:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,3.5,0.564,BetMGM,POINTS_TOTAL,6.6,1,112.03 +2026-03-08 23:13:00,2026-03-11 01:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,217.0,1,100.0 +2026-04-07 07:52:00,2026-04-08 01:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,32.8,1,113.64 +2026-03-12 14:06:33,2026-03-12 15:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,232.8,0.192,Fanduel,POINTS_TOTAL,237.5,0,107.17 +2026-03-23 19:50:00,2026-03-25 11:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,0,133.93 +2026-04-04 03:38:00,2026-04-06 14:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,0,113.85 +2026-02-17 17:23:00,2026-02-20 15:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,16.8,1,120.97 +2026-03-02 13:04:00,2026-03-03 20:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,1,100.0 +2026-02-27 09:26:00,2026-03-01 00:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,108.1 +2026-04-04 04:54:00,2026-04-07 02:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,132.5 +2026-04-16 07:27:00,2026-04-18 02:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,0,125.05 +2026-03-14 16:09:00,2026-03-17 05:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,131.47 +2026-04-08 19:15:00,2026-04-10 11:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,230.7,1,107.82 +2026-03-28 12:48:15,2026-03-28 13:00:00,NFL,Miami Dolphins,Dallas Cowboys,3.0,0.0,0.657,BetMGM,POINTS_SPREAD,1.1,1,100.0 +2026-03-04 01:05:33,2026-03-04 00:00:00,NHL,Boston Bruins,Florida Panthers,1.1,0.0,0.542,BetMGM,POINTS_SPREAD,0.5,1,100.0 +2026-04-20 14:31:00,2026-04-21 04:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,112.59 +2026-03-03 01:52:00,2026-03-05 20:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,133.63 +2026-03-31 10:58:09,2026-03-31 11:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.462,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-01 13:53:00,2026-04-02 19:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-24 13:00:06,2026-02-24 14:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,5.3,0.095,Fanduel,POINTS_TOTAL,6.8,0,100.0 +2026-03-12 19:16:00,2026-03-15 01:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,100.0 +2026-03-07 04:10:00,2026-03-09 07:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,243.9,0,100.14 +2026-03-27 12:06:00,2026-03-27 22:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.6,1,100.0 +2026-04-10 18:42:00,2026-04-11 00:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,43.9,0,116.79 +2026-03-06 10:53:00,2026-03-09 04:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.2,1,103.9 +2026-03-17 16:53:00,2026-03-17 22:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,229.0,1,126.72 +2026-03-02 08:18:00,2026-03-03 11:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,165.41 +2026-03-22 16:31:00,2026-03-23 04:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,138.14 +2026-04-09 12:27:00,2026-04-11 21:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,25.7,1,101.49 +2026-04-18 08:44:03,2026-04-18 09:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.167,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-23 08:27:00,2026-03-24 11:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,54.6,1,100.0 +2026-03-22 08:12:00,2026-03-22 15:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,240.9,0,105.35 +2026-04-01 23:26:00,2026-04-03 11:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,35.8,1,122.84 +2026-03-13 18:10:00,2026-03-16 02:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,130.49 +2026-02-25 19:10:00,2026-02-26 20:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,121.77 +2026-04-12 04:59:58,2026-04-12 06:00:00,NHL,Florida Panthers,Edmonton Oilers,0.8,0.0,0.361,BetMGM,POINTS_SPREAD,3.5,1,100.0 +2026-03-27 03:41:00,2026-03-29 16:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,10.7,1,100.0 +2026-03-29 15:52:54,2026-03-29 15:00:00,NHL,Florida Panthers,Colorado Avalanche,-1.9,0.0,0.555,BetMGM,POINTS_SPREAD,1.4,1,106.89 +2026-04-14 10:24:12,2026-04-14 11:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,50.0,0.54,Fanduel,POINTS_TOTAL,50.9,1,106.81 +2026-03-23 14:41:24,2026-03-23 14:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.33,BetMGM,MONEYLINE,0.0,NA,139.0 +2026-03-03 23:29:38,2026-03-03 23:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,-4.7,0.0,0.248,Fanduel,POINTS_SPREAD,0.7,0,100.0 +2026-03-23 22:12:00,2026-03-26 22:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,15.6,0,111.6 +2026-03-29 13:33:00,2026-04-01 12:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,228.3,0,105.77 +2026-02-27 11:19:22,2026-02-27 11:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.441,BetMGM,MONEYLINE,0.0,NA,146.15 +2026-03-25 09:43:01,2026-03-25 10:00:00,NBA,Golden State Warriors,Denver Nuggets,-4.7,0.0,0.339,BetMGM,POINTS_SPREAD,2.9,1,117.47 +2026-02-20 13:33:00,2026-02-23 10:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,16.5,1,123.36 +2026-03-31 00:39:00,2026-03-31 04:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-01 13:41:01,2026-03-01 14:00:00,NBA,Denver Nuggets,Los Angeles Lakers,3.6,0.0,0.539,Fanduel,POINTS_SPREAD,0.4,1,100.0 +2026-03-10 20:30:00,2026-03-10 21:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.55,BetMGM,MONEYLINE,0.0,NA,122.91 +2026-04-16 02:26:00,2026-04-18 09:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.3,1,100.0 +2026-02-21 10:18:16,2026-02-21 12:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,5.4,0.196,Fanduel,POINTS_TOTAL,5.3,1,100.0 +2026-03-16 23:41:00,2026-03-17 02:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,142.37 +2026-04-03 16:28:00,2026-04-06 03:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-16 18:10:18,2026-04-16 18:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.685,Fanduel,MONEYLINE,0.0,NA,131.92 +2026-04-15 09:07:00,2026-04-16 04:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,0,132.6 +2026-03-09 11:10:00,2026-03-11 17:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,0,106.77 +2026-02-24 07:24:00,2026-02-26 00:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,1,100.0 +2026-02-22 11:27:00,2026-02-23 23:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,25.8,1,108.35 +2026-04-08 08:47:00,2026-04-10 22:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,180.3 +2026-03-01 04:50:00,2026-03-01 18:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.3,0,100.0 +2026-04-03 05:25:00,2026-04-04 05:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,49.9,1,107.84 +2026-03-28 15:13:50,2026-03-28 16:00:00,NFL,Miami Dolphins,Kansas City Chiefs,-5.0,0.0,0.288,BetMGM,POINTS_SPREAD,0.7,1,117.05 +2026-03-26 04:54:00,2026-03-27 20:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,107.75 +2026-03-29 01:56:22,2026-03-29 01:00:00,NFL,Miami Dolphins,Philadelphia Eagles,-1.5,0.0,0.591,Fanduel,POINTS_SPREAD,0.6,1,129.44 +2026-03-15 13:01:50,2026-03-15 13:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.188,BetMGM,MONEYLINE,0.0,NA,107.67 +2026-03-28 16:52:00,2026-03-29 05:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,139.59 +2026-03-01 17:30:00,2026-03-03 19:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,11.7,0,104.67 +2026-02-28 01:02:00,2026-03-01 11:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.3,1,118.56 +2026-04-13 10:23:00,2026-04-15 15:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,116.23 +2026-03-25 09:20:00,2026-03-26 21:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,139.68 +2026-03-08 09:46:00,2026-03-08 10:00:00,NFL,Buffalo Bills,Philadelphia Eagles,-0.4,0.0,0.1,Fanduel,POINTS_SPREAD,3.6,0,100.62 +2026-02-21 18:53:54,2026-02-21 20:00:00,NFL,Baltimore Ravens,Dallas Cowboys,3.1,0.0,0.405,Fanduel,POINTS_SPREAD,3.2,1,125.34 +2026-04-02 06:03:00,2026-04-02 19:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,117.08 +2026-03-28 21:28:46,2026-03-28 21:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.421,BetMGM,MONEYLINE,0.0,NA,135.84 +2026-03-21 06:38:15,2026-03-21 05:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.757,BetMGM,MONEYLINE,0.0,NA,135.24 +2026-02-19 00:27:00,2026-02-22 00:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,60.0,0,109.18 +2026-03-17 07:44:03,2026-03-17 07:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.5,0.0,0.917,Fanduel,POINTS_SPREAD,2.4,1,100.0 +2026-03-14 23:22:00,2026-03-16 20:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,7.1,0,117.47 +2026-03-20 10:20:07,2026-03-20 11:00:00,NHL,Boston Bruins,Florida Panthers,2.6,0.0,0.134,BetMGM,POINTS_SPREAD,0.4,1,100.0 +2026-02-24 23:36:39,2026-02-24 22:00:00,NFL,Miami Dolphins,Dallas Cowboys,2.0,0.0,0.787,Fanduel,POINTS_SPREAD,1.8,1,106.36 +2026-04-03 11:04:00,2026-04-03 13:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,0,100.0 +2026-03-08 21:47:45,2026-03-08 23:00:00,NHL,Colorado Avalanche,Boston Bruins,0.8,0.0,0.132,Fanduel,POINTS_SPREAD,1.7,0,128.63 +2026-03-16 01:11:01,2026-03-16 01:00:00,NBA,Miami Heat,Golden State Warriors,-0.3,0.0,0.389,Fanduel,POINTS_SPREAD,1.2,1,101.57 +2026-02-26 16:20:00,2026-02-26 18:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,1,112.23 +2026-02-22 19:21:32,2026-02-22 21:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.203,Fanduel,MONEYLINE,0.0,NA,147.9 +2026-03-16 12:32:00,2026-03-17 15:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,1,108.25 +2026-04-16 21:35:00,2026-04-19 17:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.9,0,109.56 +2026-03-01 14:21:36,2026-03-01 12:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,224.4,0.92,BetMGM,POINTS_TOTAL,227.8,0,100.0 +2026-04-17 09:02:15,2026-04-17 08:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.357,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-10 03:34:00,2026-03-10 16:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,220.8,1,110.54 +2026-03-03 05:07:00,2026-03-03 13:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,104.77 +2026-04-15 05:20:00,2026-04-17 17:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.06 +2026-04-14 04:36:00,2026-04-15 01:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,115.67 +2026-03-27 22:01:00,2026-03-29 11:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.9,0,126.28 +2026-03-01 09:18:00,2026-03-01 11:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,44.4,0,100.0 +2026-04-17 08:56:00,2026-04-18 23:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,1,144.23 +2026-04-16 03:44:00,2026-04-18 05:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.3,1,105.82 +2026-04-17 08:29:00,2026-04-17 13:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,224.3,0,103.26 +2026-02-26 11:58:00,2026-02-27 01:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.1,1,119.07 +2026-04-06 15:34:00,2026-04-06 23:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,179.98 +2026-03-19 23:39:00,2026-03-20 20:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.9,1,141.6 +2026-02-28 08:09:52,2026-02-28 08:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.766,Fanduel,MONEYLINE,0.0,NA,135.2 +2026-03-14 04:56:37,2026-03-14 04:00:00,NHL,Carolina Hurricanes,Florida Panthers,-0.7,0.0,0.759,Fanduel,POINTS_SPREAD,0.6,1,100.0 +2026-04-17 11:48:00,2026-04-20 07:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,4.5,0,109.75 +2026-04-11 05:18:32,2026-04-11 05:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,56.1,0.253,Fanduel,POINTS_TOTAL,56.8,1,120.33 +2026-03-11 18:22:00,2026-03-11 23:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,18.0,0,111.07 +2026-04-14 05:14:01,2026-04-14 05:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,45.7,0.239,Fanduel,POINTS_TOTAL,48.3,0,113.65 +2026-04-07 19:44:55,2026-04-07 20:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.694,Fanduel,MONEYLINE,0.0,NA,180.95 +2026-03-11 15:51:00,2026-03-12 05:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,113.07 +2026-03-18 21:24:40,2026-03-18 19:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,34.4,0.826,Fanduel,POINTS_TOTAL,40.2,0,101.62 +2026-04-01 14:16:00,2026-04-02 13:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,219.5,0,102.46 +2026-04-03 14:51:26,2026-04-03 14:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.858,BetMGM,MONEYLINE,0.0,NA,131.78 +2026-03-08 21:56:00,2026-03-10 00:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,0,111.58 +2026-03-05 11:39:00,2026-03-08 01:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,1,100.0 +2026-04-15 22:09:00,2026-04-17 20:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.3,0,100.0 +2026-03-17 09:56:00,2026-03-19 23:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,46.6,1,120.37 +2026-03-07 07:59:26,2026-03-07 08:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,49.6,0.708,Fanduel,POINTS_TOTAL,50.5,0,117.79 +2026-02-24 18:24:15,2026-02-24 16:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,53.7,0.857,BetMGM,POINTS_TOTAL,52.8,0,100.0 +2026-03-28 12:31:13,2026-03-28 12:00:00,NBA,Golden State Warriors,Phoenix Suns,-4.5,0.0,0.929,Fanduel,POINTS_SPREAD,0.8,0,100.0 +2026-04-09 15:51:00,2026-04-09 19:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,159.15 +2026-03-13 03:49:00,2026-03-15 22:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,117.1 +2026-03-31 07:01:00,2026-03-31 15:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,1,127.06 +2026-04-19 19:24:04,2026-04-19 19:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.906,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-02 15:28:00,2026-04-03 13:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,46.6,0,107.58 +2026-02-19 07:51:00,2026-02-22 01:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,21.6,0,111.29 +2026-04-04 23:07:00,2026-04-07 09:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,1,100.0 +2026-03-07 17:35:00,2026-03-08 16:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.5,0,100.0 +2026-03-02 10:16:13,2026-03-02 11:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,45.1,0.379,BetMGM,POINTS_TOTAL,47.5,0,106.39 +2026-03-23 12:26:00,2026-03-23 15:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.2,1,116.37 +2026-03-09 10:27:00,2026-03-10 23:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.2,1,100.0 +2026-04-01 15:12:58,2026-04-01 14:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,224.9,0.611,BetMGM,POINTS_TOTAL,225.6,0,100.0 +2026-03-05 13:57:00,2026-03-07 05:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,117.28 +2026-03-08 22:10:00,2026-03-11 14:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.4,1,100.0 +2026-03-06 06:54:00,2026-03-07 07:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,7.2,1,122.23 +2026-04-10 20:37:19,2026-04-10 22:00:00,NHL,New York Rangers,Florida Panthers,1.3,0.0,0.224,Fanduel,POINTS_SPREAD,1.9,0,113.53 +2026-04-13 20:08:24,2026-04-13 19:00:00,NHL,Toronto Maple Leafs,New York Rangers,1.2,0.0,0.63,Fanduel,POINTS_SPREAD,1.1,0,108.7 +2026-02-23 08:23:00,2026-02-25 13:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.96 +2026-04-17 12:44:00,2026-04-19 04:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.5,1,125.45 +2026-03-29 23:16:00,2026-03-30 18:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,1,100.5 +2026-04-18 19:19:00,2026-04-21 11:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,1,100.4 +2026-04-06 22:32:00,2026-04-07 10:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,108.49 +2026-03-19 01:47:00,2026-03-19 12:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-10 15:43:00,2026-04-12 06:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.7,0,112.34 +2026-03-09 21:05:00,2026-03-10 08:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,1,124.87 +2026-02-21 12:05:00,2026-02-22 20:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,0,100.0 +2026-04-07 15:21:00,2026-04-08 13:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.6,0,100.0 +2026-03-15 14:32:00,2026-03-16 02:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,119.08 +2026-03-12 12:34:00,2026-03-13 04:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,241.3,0,100.0 +2026-03-05 05:53:54,2026-03-05 06:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,-3.7,0.0,0.355,Fanduel,POINTS_SPREAD,2.1,1,113.52 +2026-03-11 13:10:00,2026-03-14 12:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,110.62 +2026-02-21 19:06:00,2026-02-24 02:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,1,107.89 +2026-03-26 21:22:00,2026-03-27 00:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.3,1,138.32 +2026-04-08 21:02:00,2026-04-09 13:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,154.08 +2026-03-22 07:53:00,2026-03-23 05:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,44.7,0,117.62 +2026-02-24 17:30:00,2026-02-27 08:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-29 00:30:00,2026-03-31 11:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-06 06:10:00,2026-03-07 14:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.3,0,137.23 +2026-04-18 08:38:00,2026-04-19 08:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,19.3,0,122.66 +2026-03-10 19:56:00,2026-03-10 22:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,159.71 +2026-04-16 19:31:19,2026-04-16 21:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.074,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-28 20:12:00,2026-03-03 00:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.7,1,113.86 +2026-03-03 22:42:00,2026-03-04 19:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-07 01:56:00,2026-03-09 22:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,1,121.44 +2026-02-20 21:54:50,2026-02-20 23:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.088,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-24 06:12:00,2026-03-24 07:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,123.22 +2026-03-08 15:30:26,2026-03-08 13:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.908,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-15 01:34:00,2026-03-17 23:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,103.07 +2026-03-17 17:15:00,2026-03-20 06:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,135.64 +2026-03-19 10:16:00,2026-03-19 18:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.2,0,100.0 +2026-04-15 15:59:15,2026-04-15 16:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.507,Fanduel,MONEYLINE,0.0,NA,125.9 +2026-03-24 09:22:02,2026-03-24 09:00:00,NHL,Colorado Avalanche,Boston Bruins,1.7,0.0,0.428,BetMGM,POINTS_SPREAD,2.7,1,111.89 +2026-04-07 18:27:00,2026-04-09 21:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-23 11:37:00,2026-02-24 08:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-16 15:32:49,2026-04-16 13:00:00,NFL,Baltimore Ravens,Miami Dolphins,5.3,0.0,0.949,BetMGM,POINTS_SPREAD,0.5,0,139.14 +2026-04-10 17:42:00,2026-04-12 08:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,155.49 +2026-03-24 10:12:00,2026-03-25 01:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,28.8,0,117.33 +2026-02-21 21:58:00,2026-02-22 19:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,192.31 +2026-04-05 08:04:03,2026-04-05 10:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,45.3,0.067,Fanduel,POINTS_TOTAL,44.5,0,114.47 +2026-03-08 10:02:00,2026-03-08 16:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,9.4,1,101.29 +2026-04-14 10:05:00,2026-04-16 20:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,173.02 +2026-04-01 05:23:00,2026-04-03 00:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,155.42 +2026-02-26 02:36:00,2026-02-26 21:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,217.3,1,100.0 +2026-04-10 11:12:44,2026-04-10 10:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.793,BetMGM,MONEYLINE,0.0,NA,144.74 +2026-03-30 18:26:00,2026-03-31 13:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,117.36 +2026-03-26 04:16:00,2026-03-28 13:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,233.3,0,100.0 +2026-03-01 13:53:31,2026-03-01 14:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.714,BetMGM,MONEYLINE,0.0,NA,121.24 +2026-04-14 05:35:00,2026-04-15 09:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-31 22:18:00,2026-04-02 12:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,160.15 +2026-02-21 01:43:00,2026-02-23 19:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,53.6,1,120.78 +2026-04-18 00:44:02,2026-04-18 00:00:00,NHL,Carolina Hurricanes,New York Rangers,-1.7,0.0,0.428,Fanduel,POINTS_SPREAD,0.2,0,101.37 +2026-03-26 18:53:00,2026-03-28 08:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,116.04 +2026-04-13 23:21:25,2026-04-14 01:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,-4.7,0.0,0.219,Fanduel,POINTS_SPREAD,2.6,1,131.92 +2026-03-09 17:00:00,2026-03-11 20:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,138.29 +2026-04-10 22:29:42,2026-04-10 23:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.165,Fanduel,MONEYLINE,0.0,NA,112.74 +2026-02-21 02:41:00,2026-02-23 14:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,133.65 +2026-03-20 00:59:00,2026-03-21 11:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,100.0 +2026-03-09 09:32:20,2026-03-09 10:00:00,NBA,Dallas Mavericks,Miami Heat,-1.9,0.0,0.413,Fanduel,POINTS_SPREAD,2.9,1,127.57 +2026-03-09 06:24:00,2026-03-10 17:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.4,1,100.0 +2026-04-19 15:37:00,2026-04-20 00:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-20 07:32:00,2026-03-23 03:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,217.0,0,129.16 +2026-04-15 01:54:00,2026-04-16 09:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,116.57 +2026-04-16 01:35:00,2026-04-16 09:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.8,1,129.37 +2026-04-07 03:56:00,2026-04-09 12:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,115.15 +2026-02-23 18:21:00,2026-02-24 19:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.64 +2026-04-05 06:43:00,2026-04-06 14:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,153.11 +2026-02-22 15:11:00,2026-02-22 18:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,134.31 +2026-03-29 08:08:00,2026-03-30 21:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,45.4,0,124.88 +2026-04-05 00:41:14,2026-04-05 02:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.268,BetMGM,MONEYLINE,0.0,NA,144.02 +2026-02-20 18:16:00,2026-02-22 21:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.0,0,100.0 +2026-04-03 11:45:00,2026-04-03 19:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.9,0,100.0 +2026-03-08 12:04:00,2026-03-09 03:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,1,136.58 +2026-03-05 18:53:00,2026-03-06 15:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,111.6 +2026-03-27 18:28:00,2026-03-30 14:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.5,0,100.0 +2026-04-13 12:59:00,2026-04-14 02:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,30.5,1,100.0 +2026-02-20 04:50:00,2026-02-20 22:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,35.5,0,121.25 +2026-03-23 11:58:00,2026-03-26 05:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,48.5,1,101.33 +2026-04-17 01:45:50,2026-04-17 01:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,9.8,0.638,BetMGM,POINTS_TOTAL,7.9,1,100.0 +2026-03-21 10:43:00,2026-03-22 18:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,6.3,0,100.0 +2026-02-25 15:36:00,2026-02-28 03:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,1,100.0 +2026-02-19 09:28:00,2026-02-21 07:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,1,127.27 +2026-03-30 17:55:00,2026-03-31 13:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,0,100.0 +2026-02-23 10:23:00,2026-02-25 03:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,240.5,0,109.55 +2026-03-19 18:32:00,2026-03-22 12:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,224.8,1,111.98 +2026-03-30 08:01:06,2026-03-30 07:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.1,0.0,0.895,BetMGM,POINTS_SPREAD,1.1,1,101.73 +2026-03-08 15:52:00,2026-03-10 23:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,160.22 +2026-03-29 23:54:45,2026-03-30 01:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.8,0.0,0.332,Fanduel,POINTS_SPREAD,0.5,0,106.18 +2026-02-20 23:00:00,2026-02-22 00:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,5.6,0,100.0 +2026-04-08 18:44:00,2026-04-10 03:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,104.6 +2026-03-15 17:21:00,2026-03-16 00:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,6.6,1,125.4 +2026-04-20 00:00:31,2026-04-20 00:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,3.5,0.764,BetMGM,POINTS_TOTAL,3.5,1,119.45 +2026-04-13 12:02:45,2026-04-13 11:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,35.3,0.932,Fanduel,POINTS_TOTAL,30.8,1,100.0 +2026-04-02 21:43:37,2026-04-02 19:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,2.6,0.0,0.959,Fanduel,POINTS_SPREAD,0.3,1,106.27 +2026-03-31 20:12:00,2026-04-01 10:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,0,102.77 +2026-03-27 12:32:00,2026-03-30 07:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,100.57 +2026-04-06 21:27:00,2026-04-07 10:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,163.09 +2026-03-13 23:19:00,2026-03-16 02:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.6,1,101.32 +2026-03-19 19:52:33,2026-03-19 18:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,36.6,0.942,Fanduel,POINTS_TOTAL,34.6,0,117.49 +2026-03-26 11:27:00,2026-03-28 08:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,150.32 +2026-04-16 11:01:00,2026-04-19 10:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,0,125.76 +2026-03-08 01:26:00,2026-03-11 01:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,134.81 +2026-03-31 15:11:00,2026-03-31 18:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,144.59 +2026-03-31 00:05:00,2026-04-02 04:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,219.6,0,100.76 +2026-04-04 18:22:00,2026-04-04 16:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,4.0,0.9,Fanduel,POINTS_TOTAL,3.6,1,103.91 +2026-03-04 19:01:00,2026-03-05 16:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.0,1,100.0 +2026-04-17 04:35:00,2026-04-19 08:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,145.26 +2026-03-05 01:17:00,2026-03-05 11:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,115.56 +2026-02-28 02:25:00,2026-03-01 12:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,112.32 +2026-03-17 06:35:00,2026-03-19 11:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,139.9 +2026-04-05 08:04:00,2026-04-08 07:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,169.92 +2026-03-26 15:29:54,2026-03-26 15:00:00,NBA,Phoenix Suns,Golden State Warriors,-3.2,0.0,0.755,BetMGM,POINTS_SPREAD,0.4,1,131.23 +2026-04-11 16:24:50,2026-04-11 14:00:00,NBA,Milwaukee Bucks,Golden State Warriors,-1.9,0.0,0.888,Fanduel,POINTS_SPREAD,0.1,1,134.57 +2026-04-03 15:25:00,2026-04-06 08:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,154.04 +2026-04-18 07:00:00,2026-04-20 12:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,113.18 +2026-04-21 11:07:58,2026-04-21 12:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.161,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-14 18:06:00,2026-03-14 19:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,43.3,0.35,Fanduel,POINTS_TOTAL,40.2,0,122.95 +2026-04-17 01:46:24,2026-04-17 03:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,217.3,0.23,Fanduel,POINTS_TOTAL,217.0,1,128.0 +2026-04-20 19:57:00,2026-04-20 21:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-03 08:37:00,2026-03-03 18:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,138.23 +2026-03-10 01:44:27,2026-03-10 03:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,3.5,0.147,Fanduel,POINTS_TOTAL,5.5,0,102.36 +2026-03-16 05:24:44,2026-03-16 05:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,13.6,0.593,BetMGM,POINTS_TOTAL,11.7,1,100.0 +2026-03-21 14:16:00,2026-03-23 06:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,29.5,0,118.64 +2026-04-02 19:31:00,2026-04-03 00:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,101.42 +2026-04-11 01:43:00,2026-04-13 01:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,10.9,1,112.03 +2026-04-17 13:09:00,2026-04-20 01:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,109.47 +2026-03-04 18:24:00,2026-03-04 21:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.9,1,124.83 +2026-04-04 10:17:00,2026-04-05 22:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,127.7 +2026-03-06 20:54:00,2026-03-09 09:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.8,0,124.1 +2026-03-28 10:28:43,2026-03-28 10:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.204,BetMGM,MONEYLINE,0.0,NA,145.36 +2026-03-28 19:00:00,2026-03-30 19:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.33 +2026-04-15 03:20:00,2026-04-15 07:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,253.3,1,100.0 +2026-03-30 00:22:00,2026-04-01 01:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-09 12:44:00,2026-04-10 10:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,29.8,1,114.84 +2026-03-20 21:27:37,2026-03-20 23:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,240.6,0.259,Fanduel,POINTS_TOTAL,238.5,0,100.0 +2026-02-18 23:10:00,2026-02-21 18:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-26 14:35:00,2026-03-29 06:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,232.2,1,101.79 +2026-03-16 04:48:28,2026-03-16 04:00:00,NFL,Detroit Lions,Miami Dolphins,0.5,0.0,0.436,BetMGM,POINTS_SPREAD,0.0,1,100.0 +2026-03-16 16:52:00,2026-03-19 08:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,162.36 +2026-03-11 17:04:00,2026-03-11 23:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,150.19 +2026-02-24 01:51:00,2026-02-25 20:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,143.93 +2026-04-15 07:22:00,2026-04-15 12:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.3,0,100.0 +2026-04-07 01:21:56,2026-04-07 01:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,-0.3,0.0,0.233,Fanduel,POINTS_SPREAD,0.6,1,111.66 +2026-03-10 05:19:00,2026-03-12 00:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.9,1,107.09 +2026-03-12 02:21:00,2026-03-12 05:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,132.36 +2026-04-04 03:43:00,2026-04-04 18:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,131.25 +2026-04-18 17:09:55,2026-04-18 18:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,3.5,0.294,Fanduel,POINTS_TOTAL,3.5,1,108.96 +2026-03-30 03:13:00,2026-03-31 00:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,13.0,0,123.18 +2026-04-02 05:15:57,2026-04-02 05:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.672,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-20 05:50:00,2026-04-20 20:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,158.69 +2026-02-27 23:41:56,2026-02-28 00:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,226.8,0.483,BetMGM,POINTS_TOTAL,228.5,0,107.88 +2026-04-05 09:42:00,2026-04-06 19:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,58.4,1,112.84 +2026-03-07 08:16:28,2026-03-07 09:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,58.3,0.186,Fanduel,POINTS_TOTAL,60.4,0,100.0 +2026-04-17 05:16:00,2026-04-19 10:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,0,114.87 +2026-04-03 09:33:00,2026-04-04 11:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,7.1,1,126.62 +2026-02-23 19:16:00,2026-02-26 03:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,112.03 +2026-04-08 05:55:07,2026-04-08 07:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,216.9,0.234,Fanduel,POINTS_TOTAL,222.3,1,131.44 +2026-03-21 19:10:00,2026-03-23 09:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,0,136.81 +2026-03-03 15:12:45,2026-03-03 15:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,2.3,0.0,0.332,Fanduel,POINTS_SPREAD,2.6,1,100.0 +2026-03-27 12:17:34,2026-03-27 13:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.181,BetMGM,MONEYLINE,0.0,NA,153.0 +2026-04-13 13:37:00,2026-04-13 15:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.7,1,141.5 +2026-03-08 18:51:00,2026-03-10 03:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-23 19:50:00,2026-02-26 03:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,0,100.0 +2026-03-19 15:52:00,2026-03-21 14:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.5,1,131.14 +2026-03-21 16:41:43,2026-03-21 18:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.104,BetMGM,MONEYLINE,0.0,NA,140.88 +2026-04-11 19:24:37,2026-04-11 20:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,-1.0,0.0,0.109,BetMGM,POINTS_SPREAD,1.4,0,100.0 +2026-03-24 07:11:12,2026-03-24 07:00:00,NBA,Miami Heat,Boston Celtics,0.0,249.2,0.84,BetMGM,POINTS_TOTAL,251.7,1,110.39 +2026-02-22 05:30:33,2026-02-22 04:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.942,Fanduel,MONEYLINE,0.0,NA,112.19 +2026-03-29 22:26:00,2026-03-30 21:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,105.09 +2026-04-02 00:07:32,2026-04-02 01:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,4.1,0.0,0.403,Fanduel,POINTS_SPREAD,0.8,1,102.45 +2026-03-22 19:36:00,2026-03-24 21:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,37.9,1,109.41 +2026-04-13 02:42:30,2026-04-13 02:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,241.6,0.275,BetMGM,POINTS_TOTAL,239.7,1,100.0 +2026-04-03 00:46:50,2026-04-03 01:00:00,NBA,Miami Heat,Phoenix Suns,0.0,236.3,0.538,BetMGM,POINTS_TOTAL,236.6,0,109.55 +2026-04-01 06:26:04,2026-04-01 07:00:00,NFL,Dallas Cowboys,San Francisco 49ers,-1.5,0.0,0.456,Fanduel,POINTS_SPREAD,3.4,1,100.0 +2026-03-31 09:17:31,2026-03-31 10:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,-3.6,0.0,0.114,Fanduel,POINTS_SPREAD,3.1,0,104.26 +2026-02-17 19:48:00,2026-02-20 12:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,42.7,1,117.85 +2026-03-13 09:45:55,2026-03-13 09:00:00,NHL,Florida Panthers,Carolina Hurricanes,4.4,0.0,0.944,BetMGM,POINTS_SPREAD,2.4,1,100.0 +2026-02-20 13:29:00,2026-02-21 09:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,1,109.88 +2026-03-17 21:41:25,2026-03-17 20:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.919,Fanduel,MONEYLINE,0.0,NA,135.19 +2026-02-25 13:51:00,2026-02-27 00:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,152.28 +2026-02-23 19:34:43,2026-02-23 20:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,-1.5,0.0,0.104,Fanduel,POINTS_SPREAD,1.7,1,111.05 +2026-03-29 15:59:00,2026-03-30 19:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,1,114.61 +2026-02-26 18:19:00,2026-02-27 03:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,1,141.04 +2026-04-07 17:52:12,2026-04-07 17:00:00,NBA,Boston Celtics,Milwaukee Bucks,-3.4,0.0,0.94,Fanduel,POINTS_SPREAD,3.4,0,100.0 +2026-04-19 11:06:22,2026-04-19 11:00:00,NHL,Edmonton Oilers,Boston Bruins,-1.7,0.0,0.341,Fanduel,POINTS_SPREAD,1.9,1,109.87 +2026-03-10 18:44:00,2026-03-13 16:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.6,1,135.39 +2026-03-23 15:00:00,2026-03-24 10:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,1,100.0 +2026-02-26 16:18:00,2026-02-28 16:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,123.33 +2026-03-19 19:25:16,2026-03-19 20:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.046,Fanduel,MONEYLINE,0.0,NA,129.02 +2026-04-03 21:04:49,2026-04-03 20:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.849,Fanduel,MONEYLINE,0.0,NA,114.91 +2026-04-14 16:03:22,2026-04-14 15:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,3.5,0.391,BetMGM,POINTS_TOTAL,4.6,1,101.0 +2026-03-10 09:26:00,2026-03-12 01:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,5.5,0,104.84 +2026-04-10 19:35:00,2026-04-12 21:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,227.8,1,106.49 +2026-03-02 22:37:00,2026-03-05 20:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,0,142.4 +2026-03-16 22:25:49,2026-03-17 00:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.049,BetMGM,MONEYLINE,0.0,NA,125.77 +2026-04-02 04:18:19,2026-04-02 06:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,62.4,0.124,Fanduel,POINTS_TOTAL,62.3,0,102.12 +2026-03-29 11:11:19,2026-03-29 11:00:00,NHL,New York Rangers,Edmonton Oilers,-0.2,0.0,0.624,Fanduel,POINTS_SPREAD,1.0,0,114.09 +2026-04-17 03:47:42,2026-04-17 02:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.715,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-20 21:07:20,2026-04-20 20:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,3.5,0.913,Fanduel,POINTS_TOTAL,3.5,0,115.71 +2026-03-30 05:28:00,2026-03-31 04:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,29.8,1,125.44 +2026-04-13 11:25:00,2026-04-15 22:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,1,100.0 +2026-04-02 17:35:00,2026-04-03 05:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,12.1,0,116.21 +2026-02-22 12:44:52,2026-02-22 12:00:00,NFL,Kansas City Chiefs,Miami Dolphins,9.1,0.0,0.916,Fanduel,POINTS_SPREAD,2.4,0,144.93 +2026-03-06 22:17:00,2026-03-08 22:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-15 19:09:00,2026-04-15 21:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,213.6,0,103.35 +2026-03-23 19:13:12,2026-03-23 20:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,-3.9,0.0,0.34,Fanduel,POINTS_SPREAD,3.0,1,114.61 +2026-03-15 22:49:00,2026-03-17 07:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,0,108.14 +2026-04-08 09:51:00,2026-04-11 05:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,172.61 +2026-03-04 18:54:00,2026-03-06 05:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,173.89 +2026-04-14 02:52:00,2026-04-16 15:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.9,1,124.22 +2026-04-18 14:32:00,2026-04-19 22:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,0,100.0 +2026-04-16 20:34:00,2026-04-17 23:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,111.09 +2026-03-13 10:34:00,2026-03-13 19:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,116.64 +2026-03-27 21:14:00,2026-03-28 17:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,4.3,1,105.85 +2026-04-12 01:24:00,2026-04-13 01:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.0,0,117.33 +2026-03-07 21:48:00,2026-03-08 11:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.7,1,116.44 +2026-04-11 17:43:00,2026-04-13 15:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,1,125.47 +2026-04-14 21:27:13,2026-04-14 21:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,228.8,0.779,Fanduel,POINTS_TOTAL,223.3,0,134.42 +2026-03-12 12:27:55,2026-03-12 13:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,219.2,0.594,Fanduel,POINTS_TOTAL,217.4,1,103.95 +2026-03-14 21:25:24,2026-03-14 20:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.63,Fanduel,MONEYLINE,0.0,NA,111.25 +2026-03-17 14:28:00,2026-03-19 05:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,146.8 +2026-04-20 22:50:13,2026-04-21 00:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.3,0.0,0.329,BetMGM,POINTS_SPREAD,2.9,0,112.32 +2026-02-26 12:48:00,2026-02-28 18:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,106.04 +2026-03-01 11:22:00,2026-03-03 07:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,50.5,0,117.51 +2026-02-27 20:06:00,2026-03-02 18:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,9.3,0,100.96 +2026-03-07 07:07:00,2026-03-09 23:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,119.41 +2026-04-09 08:32:45,2026-04-09 09:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,3.5,0.032,Fanduel,POINTS_TOTAL,3.5,0,124.96 +2026-03-04 13:37:00,2026-03-06 19:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,221.0,0,118.05 +2026-03-03 21:45:00,2026-03-05 04:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,22.2,0,112.49 +2026-04-17 12:17:00,2026-04-19 05:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.3,0,129.97 +2026-02-25 20:24:00,2026-02-26 13:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.8,1,100.0 +2026-04-04 18:35:00,2026-04-07 14:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,8.6,1,124.61 +2026-03-19 16:55:00,2026-03-21 20:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,131.87 +2026-03-20 19:44:00,2026-03-21 11:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,126.74 +2026-04-02 17:17:00,2026-04-02 18:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.0,1,100.0 +2026-03-14 05:47:00,2026-03-17 00:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,148.55 +2026-02-28 05:10:00,2026-02-28 13:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.6,0,122.04 +2026-03-31 11:59:06,2026-03-31 11:00:00,NHL,Carolina Hurricanes,Boston Bruins,2.1,0.0,0.945,BetMGM,POINTS_SPREAD,0.5,1,103.96 +2026-04-03 06:01:00,2026-04-04 05:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,32.8,1,105.61 +2026-04-13 07:51:00,2026-04-14 23:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,1,100.0 +2026-03-24 22:55:00,2026-03-26 02:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,0,106.09 +2026-02-24 09:05:00,2026-02-27 00:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,115.73 +2026-03-07 11:53:00,2026-03-09 00:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,105.48 +2026-03-25 07:33:00,2026-03-25 20:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,1,114.04 +2026-04-09 11:09:00,2026-04-09 15:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,194.91 +2026-04-13 08:42:00,2026-04-15 02:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,53.2,0,112.61 +2026-03-10 09:30:31,2026-03-10 09:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.514,Fanduel,MONEYLINE,0.0,NA,106.17 +2026-03-22 04:02:06,2026-03-22 03:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.495,BetMGM,MONEYLINE,0.0,NA,129.86 +2026-04-02 21:55:00,2026-04-03 19:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,32.3,1,102.68 +2026-03-04 23:18:00,2026-03-07 19:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,216.9,0,131.27 +2026-03-23 11:37:02,2026-03-23 12:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.078,Fanduel,MONEYLINE,0.0,NA,145.84 +2026-04-13 17:34:02,2026-04-13 19:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.278,BetMGM,MONEYLINE,0.0,NA,159.74 +2026-04-18 04:29:22,2026-04-18 05:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,40.8,0.341,Fanduel,POINTS_TOTAL,41.5,1,112.33 +2026-03-09 03:17:00,2026-03-10 07:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,111.52 +2026-03-25 10:27:00,2026-03-27 16:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,46.4,0,116.55 +2026-02-25 08:11:00,2026-02-25 17:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,0,107.88 +2026-03-17 07:51:00,2026-03-18 04:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,152.2 +2026-02-19 21:57:00,2026-02-20 16:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,110.17 +2026-02-22 22:15:00,2026-02-25 17:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,119.4 +2026-04-13 09:50:00,2026-04-15 18:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,50.0,1,129.79 +2026-03-15 21:37:04,2026-03-15 23:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.206,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-25 05:55:00,2026-02-26 09:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.9,1,112.35 +2026-04-04 09:09:12,2026-04-04 09:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.29,Fanduel,MONEYLINE,0.0,NA,143.32 +2026-03-20 05:05:45,2026-03-20 06:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.182,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-23 12:50:00,2026-02-24 02:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,107.83 +2026-04-19 03:59:49,2026-04-19 03:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,49.3,0.649,BetMGM,POINTS_TOTAL,53.4,1,108.75 +2026-04-03 23:04:00,2026-04-06 01:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,229.1,1,109.41 +2026-02-18 13:24:00,2026-02-20 23:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,113.64 +2026-03-23 11:14:08,2026-03-23 11:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.623,BetMGM,MONEYLINE,0.0,NA,109.28 +2026-04-18 06:51:00,2026-04-19 19:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,1,100.0 +2026-04-15 04:42:00,2026-04-16 17:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,150.84 +2026-03-05 19:01:02,2026-03-05 19:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.328,BetMGM,MONEYLINE,0.0,NA,106.91 +2026-03-15 05:08:22,2026-03-15 05:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,1.9,0.0,0.141,Fanduel,POINTS_SPREAD,0.6,1,108.56 +2026-03-27 09:52:00,2026-03-29 14:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,0,111.89 +2026-02-27 08:04:00,2026-03-02 02:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,134.99 +2026-03-06 13:11:00,2026-03-06 23:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,231.4,1,100.0 +2026-02-21 05:52:25,2026-02-21 07:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.369,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-02 08:50:40,2026-03-02 09:00:00,NFL,Detroit Lions,Miami Dolphins,0.9,0.0,0.276,Fanduel,POINTS_SPREAD,0.2,0,118.86 +2026-03-20 23:26:43,2026-03-21 01:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.104,BetMGM,MONEYLINE,0.0,NA,116.57 +2026-02-21 03:20:00,2026-02-23 13:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,6.1,1,107.44 +2026-03-07 11:55:49,2026-03-07 14:00:00,NHL,New York Rangers,Boston Bruins,0.0,12.0,0.049,BetMGM,POINTS_TOTAL,13.6,0,101.59 +2026-02-25 11:34:56,2026-02-25 12:00:00,NHL,New York Rangers,Florida Panthers,0.0,13.6,0.583,Fanduel,POINTS_TOTAL,10.2,0,125.53 +2026-03-22 19:12:26,2026-03-22 20:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,3.0,0.0,0.208,BetMGM,POINTS_SPREAD,2.0,1,100.0 +2026-03-06 07:24:00,2026-03-07 02:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.2,0,100.0 +2026-04-03 15:26:08,2026-04-03 14:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,35.8,0.673,Fanduel,POINTS_TOTAL,27.3,1,100.0 +2026-03-11 12:19:00,2026-03-13 17:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,1,100.0 +2026-03-01 19:12:00,2026-03-01 22:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,9.3,1,123.55 +2026-02-19 06:27:00,2026-02-21 05:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-12 19:41:00,2026-04-14 21:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.9,0,100.0 +2026-02-23 13:20:00,2026-02-24 14:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,18.0,0,133.8 +2026-03-03 09:08:00,2026-03-03 22:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,5.1,0,115.14 +2026-04-17 04:43:00,2026-04-18 05:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,30.1,1,100.0 +2026-03-18 09:51:00,2026-03-20 05:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,0,100.0 +2026-02-27 10:08:00,2026-02-28 02:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,163.62 +2026-03-26 13:24:00,2026-03-26 16:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,1,123.84 +2026-04-20 07:29:31,2026-04-20 08:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.464,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-20 05:30:00,2026-03-20 18:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.9,1,100.0 +2026-02-24 02:42:56,2026-02-24 03:00:00,NHL,Edmonton Oilers,New York Rangers,-2.7,0.0,0.533,BetMGM,POINTS_SPREAD,4.7,1,125.13 +2026-02-23 06:04:00,2026-02-25 18:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.9,0,100.0 +2026-03-09 20:45:43,2026-03-09 19:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.704,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-03 19:06:00,2026-04-06 03:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,1,100.0 +2026-03-20 16:41:19,2026-03-20 15:00:00,NHL,Vegas Golden Knights,New York Rangers,1.2,0.0,0.624,BetMGM,POINTS_SPREAD,1.6,1,116.26 +2026-03-15 08:30:00,2026-03-17 14:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,116.01 +2026-04-17 21:54:00,2026-04-18 01:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,238.9,0,114.08 +2026-03-15 17:18:00,2026-03-16 03:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,6.3,1,100.0 +2026-03-22 09:00:51,2026-03-22 08:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,6.4,0.777,Fanduel,POINTS_TOTAL,3.5,1,100.0 +2026-03-08 16:10:00,2026-03-11 06:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,1,100.0 +2026-03-12 16:03:00,2026-03-15 01:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.0,0,111.55 +2026-04-03 00:11:00,2026-04-03 12:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,48.6,1,108.43 +2026-03-31 20:20:00,2026-04-02 08:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,180.18 +2026-02-20 02:37:00,2026-02-21 01:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,43.1,1,100.0 +2026-04-14 04:14:00,2026-04-15 14:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,0,100.0 +2026-03-12 09:37:00,2026-03-14 16:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,233.3,1,117.97 +2026-04-03 18:42:00,2026-04-05 19:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,1,104.75 +2026-03-07 04:38:00,2026-03-07 13:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,53.1,0,100.0 +2026-03-05 13:58:00,2026-03-07 08:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,127.51 +2026-03-27 05:52:10,2026-03-27 04:00:00,NFL,Baltimore Ravens,San Francisco 49ers,1.8,0.0,0.851,BetMGM,POINTS_SPREAD,0.0,0,127.53 +2026-04-18 03:37:00,2026-04-20 10:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,233.8,1,122.62 +2026-03-04 07:36:09,2026-03-04 07:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,224.4,0.462,BetMGM,POINTS_TOTAL,224.7,1,103.91 +2026-03-07 05:19:08,2026-03-07 05:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.323,Fanduel,MONEYLINE,0.0,NA,133.41 +2026-03-21 14:49:04,2026-03-21 14:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.956,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-30 11:45:22,2026-03-30 10:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,2.3,0.0,0.591,BetMGM,POINTS_SPREAD,1.3,0,131.69 +2026-03-13 10:54:07,2026-03-13 09:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.884,Fanduel,MONEYLINE,0.0,NA,115.83 +2026-04-12 08:10:25,2026-04-12 08:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.569,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-15 12:27:00,2026-04-17 15:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,110.22 +2026-03-06 06:38:00,2026-03-08 23:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,104.73 +2026-03-16 04:36:00,2026-03-19 02:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,0,119.46 +2026-02-27 01:15:10,2026-02-27 00:00:00,NHL,Boston Bruins,Florida Panthers,0.0,3.5,0.801,BetMGM,POINTS_TOTAL,3.5,0,111.95 +2026-04-12 02:20:00,2026-04-12 08:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,0,100.0 +2026-04-20 14:45:00,2026-04-21 07:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,129.63 +2026-03-21 20:27:01,2026-03-21 20:00:00,NBA,Milwaukee Bucks,Boston Celtics,2.5,0.0,0.339,Fanduel,POINTS_SPREAD,1.1,0,125.52 +2026-04-21 01:27:00,2026-04-21 04:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,56.8,1,131.51 +2026-03-12 10:38:00,2026-03-15 06:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,152.25 +2026-03-11 07:23:27,2026-03-11 07:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,10.3,0.747,Fanduel,POINTS_TOTAL,9.0,1,121.76 +2026-03-16 14:05:12,2026-03-16 15:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,-5.4,0.0,0.34,Fanduel,POINTS_SPREAD,1.4,0,100.0 +2026-03-24 00:16:00,2026-03-26 07:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,9.8,1,103.33 +2026-02-21 16:02:03,2026-02-21 16:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,56.4,0.767,BetMGM,POINTS_TOTAL,56.8,0,114.75 +2026-03-21 14:01:00,2026-03-23 22:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,232.3,0,100.0 +2026-03-14 00:04:00,2026-03-16 01:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,232.0,1,131.65 +2026-03-17 14:02:00,2026-03-20 01:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,104.25 +2026-04-03 04:58:00,2026-04-03 20:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,135.52 +2026-03-23 05:33:00,2026-03-25 14:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,227.9,1,112.96 +2026-04-07 04:41:00,2026-04-08 07:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.3,0,123.49 +2026-04-12 07:01:00,2026-04-13 20:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,0,101.61 +2026-02-22 16:02:00,2026-02-24 19:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.1,0,113.18 +2026-03-20 20:40:00,2026-03-22 23:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,135.53 +2026-04-05 06:30:00,2026-04-06 06:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-25 05:20:13,2026-03-25 06:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,2.9,0.0,0.129,BetMGM,POINTS_SPREAD,2.2,1,100.0 +2026-03-04 07:11:22,2026-03-04 07:00:00,NBA,Phoenix Suns,Boston Celtics,-4.1,0.0,0.091,Fanduel,POINTS_SPREAD,0.5,0,100.0 +2026-03-01 03:10:00,2026-03-03 20:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,7.1,1,106.14 +2026-02-19 07:36:00,2026-02-21 19:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,1,113.27 +2026-04-11 04:47:00,2026-04-14 01:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.1,0,129.76 +2026-03-01 13:46:00,2026-03-02 00:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,61.1,1,121.68 +2026-04-11 05:07:20,2026-04-11 05:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,35.0,0.213,BetMGM,POINTS_TOTAL,32.9,1,100.0 +2026-03-13 15:05:00,2026-03-16 11:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,228.7,1,113.69 +2026-03-16 00:51:06,2026-03-16 01:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.245,BetMGM,MONEYLINE,0.0,NA,130.6 +2026-03-02 05:33:00,2026-03-02 16:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,108.65 +2026-04-12 15:24:00,2026-04-15 14:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,1,113.63 +2026-03-31 09:36:00,2026-03-31 18:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,146.91 +2026-02-25 22:45:00,2026-02-26 13:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,161.58 +2026-03-06 02:08:00,2026-03-08 03:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.3,1,122.24 +2026-03-03 11:50:00,2026-03-05 19:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,42.3,0,119.53 +2026-03-24 05:30:00,2026-03-24 14:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.2,1,124.85 +2026-03-07 19:18:58,2026-03-07 19:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,3.5,0.711,BetMGM,POINTS_TOTAL,3.5,1,100.0 +2026-03-25 06:19:00,2026-03-26 23:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,8.4,1,113.33 +2026-03-10 13:26:16,2026-03-10 13:00:00,NBA,Los Angeles Lakers,Golden State Warriors,4.4,0.0,0.196,Fanduel,POINTS_SPREAD,1.7,1,100.0 +2026-04-07 10:25:00,2026-04-07 15:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.6,1,112.49 +2026-03-05 03:16:01,2026-03-05 02:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.489,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-18 04:45:00,2026-04-19 15:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,137.18 +2026-04-15 08:19:31,2026-04-15 08:00:00,NHL,Toronto Maple Leafs,Boston Bruins,-1.5,0.0,0.464,Fanduel,POINTS_SPREAD,2.0,0,107.46 +2026-04-11 11:51:00,2026-04-13 14:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,218.3,1,113.35 +2026-03-06 20:29:00,2026-03-08 10:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.2,0,119.74 +2026-03-05 14:41:00,2026-03-08 09:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,113.52 +2026-03-31 08:27:24,2026-03-31 06:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.93,Fanduel,MONEYLINE,0.0,NA,173.74 +2026-04-05 20:36:00,2026-04-08 14:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.9,1,100.33 +2026-02-20 10:24:00,2026-02-21 16:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-15 18:37:54,2026-04-15 17:00:00,NFL,Buffalo Bills,Miami Dolphins,2.5,0.0,0.805,BetMGM,POINTS_SPREAD,4.5,1,116.44 +2026-03-02 15:09:00,2026-03-04 17:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,0,125.17 +2026-04-01 19:15:16,2026-04-01 19:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.796,Fanduel,MONEYLINE,0.0,NA,117.01 +2026-03-03 14:03:00,2026-03-05 23:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-16 11:36:00,2026-04-19 10:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-10 05:13:32,2026-03-10 05:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,4.1,0.0,0.703,BetMGM,POINTS_SPREAD,1.5,1,100.0 +2026-03-07 17:01:00,2026-03-08 07:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-23 08:21:18,2026-03-23 08:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.685,BetMGM,MONEYLINE,0.0,NA,131.8 +2026-03-11 17:14:30,2026-03-11 16:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.425,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-27 05:57:00,2026-02-28 11:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,35.7,0,125.11 +2026-02-23 06:23:00,2026-02-25 21:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,19.6,0,123.21 +2026-02-28 00:55:00,2026-03-01 09:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.3,1,100.0 +2026-03-14 02:36:00,2026-03-15 16:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,137.77 +2026-04-05 08:59:58,2026-04-05 07:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.711,Fanduel,MONEYLINE,0.0,NA,119.06 +2026-03-21 19:17:00,2026-03-23 16:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,150.16 +2026-03-18 10:23:00,2026-03-19 14:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,51.9,0,100.0 +2026-04-14 14:13:00,2026-04-15 13:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,1,110.69 +2026-03-17 16:45:00,2026-03-18 09:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,228.8,1,114.93 +2026-03-27 00:35:00,2026-03-28 04:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.9,0,104.99 +2026-03-13 00:55:31,2026-03-13 01:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.664,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-18 16:45:00,2026-02-20 20:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,114.95 +2026-04-13 10:29:00,2026-04-14 01:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,229.0,0,104.23 +2026-02-28 21:12:00,2026-03-02 19:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-09 04:18:00,2026-03-11 20:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,1,108.45 +2026-04-03 02:57:00,2026-04-04 23:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,136.86 +2026-04-05 03:07:00,2026-04-07 05:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,39.7,1,100.0 +2026-04-18 03:27:00,2026-04-20 13:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,143.83 +2026-03-08 15:10:00,2026-03-10 14:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,115.81 +2026-04-17 13:03:30,2026-04-17 14:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,3.5,0.275,BetMGM,POINTS_TOTAL,3.5,1,109.77 +2026-03-25 18:04:40,2026-03-25 17:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.876,BetMGM,MONEYLINE,0.0,NA,140.23 +2026-02-22 02:48:31,2026-02-22 04:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.264,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-27 00:52:00,2026-02-27 01:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,17.7,0,103.94 +2026-03-05 10:21:40,2026-03-05 10:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.576,Fanduel,MONEYLINE,0.0,NA,164.92 +2026-04-12 03:29:00,2026-04-14 03:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,16.5,0,100.0 +2026-04-13 20:56:00,2026-04-15 15:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,122.42 +2026-02-28 02:12:01,2026-02-28 02:00:00,NBA,Denver Nuggets,Dallas Mavericks,-1.0,0.0,0.139,BetMGM,POINTS_SPREAD,1.1,0,117.39 +2026-04-15 07:15:18,2026-04-15 07:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.735,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-06 03:46:00,2026-03-06 13:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,21.4,0,100.62 +2026-04-12 00:11:00,2026-04-13 09:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,1,100.0 +2026-03-17 17:31:00,2026-03-18 15:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,231.0,1,104.29 +2026-03-22 10:17:00,2026-03-25 04:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,226.0,0,100.0 +2026-04-04 23:32:00,2026-04-05 23:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,100.0 +2026-03-07 14:42:00,2026-03-08 14:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,0,108.58 +2026-04-20 12:07:21,2026-04-20 11:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.702,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-28 16:09:00,2026-03-30 17:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,9.4,1,111.58 +2026-03-04 02:52:00,2026-03-06 12:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,20.3,0,100.0 +2026-03-16 18:31:00,2026-03-17 23:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-27 17:02:00,2026-03-29 18:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,0,110.52 +2026-03-21 07:06:02,2026-03-21 06:00:00,NHL,Florida Panthers,Boston Bruins,0.6,0.0,0.378,BetMGM,POINTS_SPREAD,2.6,1,100.0 +2026-04-08 01:33:21,2026-04-08 01:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,51.6,0.752,BetMGM,POINTS_TOTAL,48.6,0,117.57 +2026-04-15 01:09:00,2026-04-15 05:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.0,1,115.53 +2026-02-26 23:50:00,2026-02-28 16:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.7,0,110.06 +2026-04-02 11:53:00,2026-04-04 04:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,230.7,1,106.49 +2026-04-20 14:29:12,2026-04-20 15:00:00,NBA,Boston Celtics,Los Angeles Lakers,4.4,0.0,0.54,Fanduel,POINTS_SPREAD,1.0,0,123.39 +2026-04-18 15:34:54,2026-04-18 15:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.655,BetMGM,MONEYLINE,0.0,NA,136.43 +2026-04-16 20:06:00,2026-04-18 21:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,111.23 +2026-02-27 01:24:00,2026-02-28 03:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,1,109.7 +2026-03-07 09:48:00,2026-03-09 23:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,7.5,0,100.0 +2026-04-12 18:42:21,2026-04-12 18:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.752,BetMGM,MONEYLINE,0.0,NA,118.27 +2026-03-27 07:51:00,2026-03-27 23:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,26.3,0,113.53 +2026-02-27 03:51:00,2026-03-01 20:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,1,118.93 +2026-04-20 14:05:58,2026-04-20 14:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.711,Fanduel,MONEYLINE,0.0,NA,122.0 +2026-03-12 04:00:36,2026-03-12 04:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.47,Fanduel,MONEYLINE,0.0,NA,144.98 +2026-03-31 14:30:00,2026-04-01 04:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,49.7,0,100.0 +2026-04-05 20:19:39,2026-04-05 19:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,224.9,0.787,Fanduel,POINTS_TOTAL,233.4,0,100.0 +2026-04-20 10:29:00,2026-04-21 12:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,0,119.85 +2026-02-23 13:18:15,2026-02-23 11:00:00,NFL,Buffalo Bills,San Francisco 49ers,-3.8,0.0,0.857,Fanduel,POINTS_SPREAD,1.6,0,100.0 +2026-03-06 03:31:00,2026-03-06 10:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,235.3,1,110.14 +2026-02-19 04:23:00,2026-02-21 08:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,204.5,1,100.74 +2026-04-18 09:23:00,2026-04-20 06:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,12.5,1,106.02 +2026-03-04 16:24:00,2026-03-05 00:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.9,1,100.0 +2026-03-16 15:23:31,2026-03-16 16:00:00,NFL,Detroit Lions,Kansas City Chiefs,-3.7,0.0,0.314,BetMGM,POINTS_SPREAD,1.3,1,134.41 +2026-03-13 19:03:04,2026-03-13 20:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,3.5,0.106,Fanduel,POINTS_TOTAL,5.0,1,106.69 +2026-03-05 09:02:39,2026-03-05 10:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.137,Fanduel,MONEYLINE,0.0,NA,100.25 +2026-02-23 19:32:00,2026-02-24 05:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.0,1,120.34 +2026-02-19 11:06:00,2026-02-20 13:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,0,104.99 +2026-03-01 09:01:00,2026-03-02 22:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,39.9,1,100.0 +2026-02-21 14:28:10,2026-02-21 13:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.801,Fanduel,MONEYLINE,0.0,NA,115.97 +2026-02-28 17:41:00,2026-03-02 00:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-12 17:03:00,2026-03-12 21:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,60.9,1,115.37 +2026-03-24 19:24:00,2026-03-25 06:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,223.2,0,132.41 +2026-03-02 12:42:00,2026-03-04 18:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,135.55 +2026-03-31 15:36:00,2026-04-02 00:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.7,0,106.26 +2026-03-06 21:18:00,2026-03-07 08:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-12 03:39:00,2026-04-12 08:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,233.1,1,129.06 +2026-03-24 13:54:10,2026-03-24 14:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,3.5,0.101,Fanduel,POINTS_TOTAL,6.7,0,114.02 +2026-03-24 16:08:00,2026-03-27 10:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,30.0,0,127.1 +2026-03-16 19:45:00,2026-03-17 03:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,180.86 +2026-02-26 07:43:08,2026-02-26 09:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,18.6,0.073,BetMGM,POINTS_TOTAL,22.9,0,103.09 +2026-04-15 16:37:00,2026-04-16 01:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,215.4,0,116.68 +2026-04-11 00:58:00,2026-04-13 19:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.9,0,114.56 +2026-04-01 20:10:00,2026-04-03 17:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,105.08 +2026-04-17 13:13:00,2026-04-19 01:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,54.4,1,117.89 +2026-03-02 21:40:00,2026-03-05 00:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,126.06 +2026-03-07 22:28:38,2026-03-07 22:00:00,NBA,Golden State Warriors,Milwaukee Bucks,-0.3,0.0,0.698,BetMGM,POINTS_SPREAD,5.4,1,133.08 +2026-03-11 09:52:37,2026-03-11 10:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.709,Fanduel,MONEYLINE,0.0,NA,129.38 +2026-04-02 19:06:26,2026-04-02 20:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,233.3,0.458,Fanduel,POINTS_TOTAL,232.0,0,117.15 +2026-02-24 10:25:06,2026-02-24 12:00:00,NFL,Dallas Cowboys,Buffalo Bills,1.2,0.0,0.045,BetMGM,POINTS_SPREAD,0.4,1,119.91 +2026-02-28 13:34:51,2026-02-28 12:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.877,Fanduel,MONEYLINE,0.0,NA,123.42 +2026-02-28 11:03:00,2026-02-28 16:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.2,1,100.0 +2026-03-28 18:56:27,2026-03-28 19:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,37.8,0.197,BetMGM,POINTS_TOTAL,33.3,0,107.12 +2026-03-20 08:20:40,2026-03-20 09:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,40.1,0.176,Fanduel,POINTS_TOTAL,33.9,1,100.0 +2026-03-07 19:32:44,2026-03-07 19:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.643,Fanduel,MONEYLINE,0.0,NA,118.32 +2026-03-09 08:08:00,2026-03-10 02:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,33.8,0,104.32 +2026-02-20 23:08:00,2026-02-23 04:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.0,1,100.0 +2026-04-03 12:50:52,2026-04-03 13:00:00,NHL,Colorado Avalanche,Boston Bruins,1.1,0.0,0.416,BetMGM,POINTS_SPREAD,2.5,1,100.0 +2026-04-11 03:12:20,2026-04-11 03:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.813,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-06 08:26:00,2026-04-07 02:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,57.5,1,129.37 +2026-03-02 09:12:00,2026-03-04 03:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,128.25 +2026-04-03 19:13:00,2026-04-06 04:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,229.9,1,100.0 +2026-04-18 18:50:00,2026-04-18 20:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,106.18 +2026-03-23 18:00:00,2026-03-24 23:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,1,122.99 +2026-04-10 15:11:00,2026-04-12 17:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-21 13:46:00,2026-02-23 02:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-29 12:10:00,2026-03-30 14:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,121.89 +2026-03-21 10:43:18,2026-03-21 11:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,1.5,0.0,0.585,Fanduel,POINTS_SPREAD,0.3,0,125.22 +2026-04-04 07:17:00,2026-04-04 16:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,12.9,0,114.98 +2026-04-02 01:48:00,2026-04-04 20:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.8,0,110.95 +2026-03-02 20:41:18,2026-03-02 22:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,-2.2,0.0,0.135,BetMGM,POINTS_SPREAD,2.5,1,106.58 +2026-03-06 07:35:00,2026-03-07 13:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-11 04:54:00,2026-04-12 06:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,6.4,1,114.99 +2026-03-10 15:57:00,2026-03-11 08:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,1,100.0 +2026-03-19 16:44:00,2026-03-21 11:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,246.8,0,100.0 +2026-04-02 19:04:30,2026-04-02 19:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.425,BetMGM,MONEYLINE,0.0,NA,125.46 +2026-04-04 06:59:00,2026-04-07 00:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,7.7,1,126.67 +2026-04-16 06:47:09,2026-04-16 06:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,-1.4,0.0,0.712,BetMGM,POINTS_SPREAD,1.5,0,105.89 +2026-02-22 23:37:40,2026-02-22 22:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.726,Fanduel,MONEYLINE,0.0,NA,109.94 +2026-03-22 03:30:00,2026-03-24 00:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,213.4,1,112.26 +2026-03-09 11:08:09,2026-03-09 11:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,1.2,0.0,0.462,Fanduel,POINTS_SPREAD,1.4,1,100.0 +2026-03-07 11:50:00,2026-03-09 14:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-18 00:05:00,2026-04-20 04:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,134.52 +2026-04-04 14:43:00,2026-04-05 11:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,1,128.69 +2026-03-07 19:01:00,2026-03-07 21:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,105.47 +2026-03-25 13:48:18,2026-03-25 14:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.035,BetMGM,MONEYLINE,0.0,NA,154.88 +2026-03-10 01:07:00,2026-03-10 21:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,24.9,1,120.72 +2026-03-23 07:50:00,2026-03-23 09:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.7,0,108.77 +2026-04-03 03:41:57,2026-04-03 05:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.222,Fanduel,MONEYLINE,0.0,NA,167.74 +2026-03-26 21:52:00,2026-03-28 21:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.0,1,100.0 +2026-02-27 03:55:00,2026-03-01 20:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,36.0,1,114.51 +2026-03-30 13:20:08,2026-03-30 13:00:00,NHL,Carolina Hurricanes,Boston Bruins,3.5,0.0,0.723,Fanduel,POINTS_SPREAD,1.2,0,127.04 +2026-03-14 07:57:00,2026-03-16 08:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,8.9,1,100.0 +2026-04-01 22:15:00,2026-04-02 09:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,0,129.67 +2026-04-12 01:22:00,2026-04-14 11:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,114.43 +2026-03-21 18:26:00,2026-03-24 13:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,101.29 +2026-03-01 17:25:00,2026-03-02 01:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,1,110.07 +2026-03-03 16:41:00,2026-03-04 00:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.8,1,131.97 +2026-04-06 14:21:00,2026-04-08 08:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,39.8,0,131.92 +2026-04-16 09:32:00,2026-04-16 17:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-06 07:03:00,2026-04-07 11:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,37.9,0,126.87 +2026-02-27 07:29:00,2026-02-28 14:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,45.7,0,103.07 +2026-03-19 13:26:36,2026-03-19 13:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,210.4,0.92,BetMGM,POINTS_TOTAL,213.9,1,114.27 +2026-03-01 14:59:00,2026-03-02 18:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.1,0,125.44 +2026-04-02 03:12:00,2026-04-03 09:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,229.1,1,116.81 +2026-03-03 11:40:00,2026-03-04 12:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.5,1,112.86 +2026-03-04 17:04:28,2026-03-04 18:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,222.7,0.086,BetMGM,POINTS_TOTAL,219.9,1,111.32 +2026-04-03 13:41:00,2026-04-04 19:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,0,100.0 +2026-03-22 03:37:00,2026-03-24 21:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,139.6 +2026-02-20 10:28:00,2026-02-20 12:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,5.2,1,112.81 +2026-03-14 13:31:00,2026-03-15 16:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,1,110.44 +2026-04-18 19:39:00,2026-04-20 16:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.5,1,101.14 +2026-03-26 00:09:21,2026-03-26 01:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,229.7,0.252,BetMGM,POINTS_TOTAL,229.1,1,105.38 +2026-04-19 04:49:00,2026-04-19 13:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,182.39 +2026-02-28 18:15:00,2026-03-02 03:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,17.2,0,127.46 +2026-03-27 22:13:00,2026-03-29 03:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,220.3,0,124.98 +2026-04-06 12:08:00,2026-04-07 20:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,133.98 +2026-04-18 08:25:19,2026-04-18 09:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.224,BetMGM,MONEYLINE,0.0,NA,155.9 +2026-02-25 10:33:00,2026-02-28 00:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.7,1,122.17 +2026-02-20 12:35:00,2026-02-23 07:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,116.21 +2026-03-05 09:37:27,2026-03-05 10:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.547,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-26 00:10:58,2026-03-26 01:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.1,0.0,0.161,BetMGM,POINTS_SPREAD,0.9,0,100.0 +2026-02-19 18:06:00,2026-02-21 11:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,10.0,1,100.0 +2026-02-25 20:00:00,2026-02-26 00:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,35.6,0,121.39 +2026-04-01 13:13:00,2026-04-04 02:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,124.66 +2026-02-23 09:53:33,2026-02-23 09:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.492,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-05 12:21:00,2026-04-07 08:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,100.0 +2026-04-04 16:38:00,2026-04-06 16:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,222.4,1,112.49 +2026-02-25 11:02:00,2026-02-27 18:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,121.99 +2026-02-22 01:15:00,2026-02-24 01:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,0,100.0 +2026-04-04 00:12:00,2026-04-04 09:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-15 23:23:39,2026-03-16 00:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,11.6,0.537,BetMGM,POINTS_TOTAL,11.6,1,100.0 +2026-02-28 16:05:48,2026-02-28 16:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,228.4,0.41,BetMGM,POINTS_TOTAL,229.2,1,111.28 +2026-04-15 21:54:00,2026-04-16 05:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,219.3,0,127.47 +2026-02-22 19:44:00,2026-02-24 23:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,129.71 +2026-03-21 20:28:00,2026-03-24 07:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,223.7,1,108.06 +2026-03-07 21:07:00,2026-03-08 18:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.0,1,102.71 +2026-04-18 03:56:00,2026-04-19 03:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.3,0,100.0 +2026-03-06 09:30:51,2026-03-06 08:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.527,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-17 13:19:00,2026-03-19 19:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,226.6,1,106.52 +2026-04-07 13:47:46,2026-04-07 14:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,3.5,0.621,BetMGM,POINTS_TOTAL,3.9,0,116.27 +2026-03-15 02:16:00,2026-03-15 15:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,1,100.0 +2026-04-14 07:55:00,2026-04-15 14:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.2,0,100.0 +2026-04-09 09:29:02,2026-04-09 09:00:00,NBA,Phoenix Suns,Miami Heat,0.0,200.0,0.428,Fanduel,POINTS_TOTAL,200.4,0,103.9 +2026-03-10 04:33:33,2026-03-10 03:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.642,BetMGM,MONEYLINE,0.0,NA,137.19 +2026-03-31 04:06:00,2026-04-02 21:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,35.5,1,102.2 +2026-04-05 02:34:00,2026-04-08 02:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-30 14:55:18,2026-03-30 16:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,42.5,0.285,BetMGM,POINTS_TOTAL,45.6,0,104.62 +2026-03-04 17:08:00,2026-03-05 05:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,1,114.12 +2026-03-31 00:46:43,2026-03-31 00:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.804,BetMGM,MONEYLINE,0.0,NA,129.38 +2026-03-22 14:52:00,2026-03-23 04:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,1,108.99 +2026-02-27 05:08:00,2026-03-01 23:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.6,1,125.52 +2026-03-10 09:58:00,2026-03-10 15:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,9.6,0,100.0 +2026-04-09 14:43:00,2026-04-12 05:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,0,102.37 +2026-02-24 23:50:50,2026-02-25 00:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.488,Fanduel,MONEYLINE,0.0,NA,107.24 +2026-03-13 23:58:00,2026-03-14 20:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-19 11:30:00,2026-03-20 10:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.5,0,100.0 +2026-03-24 00:29:48,2026-03-24 00:00:00,NBA,Los Angeles Lakers,Miami Heat,0.3,0.0,0.66,Fanduel,POINTS_SPREAD,4.9,1,141.7 +2026-03-13 03:50:00,2026-03-14 13:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,217.9,1,100.0 +2026-03-02 06:55:00,2026-03-03 08:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,107.49 +2026-04-14 21:53:00,2026-04-16 15:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,5.0,1,117.76 +2026-03-07 06:28:00,2026-03-09 17:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,1,128.74 +2026-02-26 19:13:42,2026-02-26 18:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,10.7,0.715,BetMGM,POINTS_TOTAL,12.9,0,101.02 +2026-03-16 22:59:48,2026-03-16 22:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.61,BetMGM,MONEYLINE,0.0,NA,146.55 +2026-02-19 19:52:00,2026-02-22 07:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,47.1,0,109.45 +2026-03-04 01:31:00,2026-03-05 13:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,154.86 +2026-03-01 07:58:00,2026-03-01 13:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,42.4,0,122.42 +2026-04-18 02:49:00,2026-04-20 01:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,241.7,0,104.3 +2026-03-16 17:08:00,2026-03-17 12:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,226.3,1,108.25 +2026-03-31 02:19:00,2026-04-02 14:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.8,1,125.97 +2026-04-20 16:00:00,2026-04-20 21:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,1,108.36 +2026-03-27 10:33:00,2026-03-29 13:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,1,113.63 +2026-03-16 19:15:00,2026-03-17 06:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,1,100.0 +2026-04-05 23:06:14,2026-04-05 23:00:00,NHL,Vegas Golden Knights,Boston Bruins,-1.7,0.0,0.268,BetMGM,POINTS_SPREAD,3.9,1,100.0 +2026-03-15 19:11:31,2026-03-15 18:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,-0.5,0.0,0.564,Fanduel,POINTS_SPREAD,1.3,0,102.2 +2026-03-03 23:06:00,2026-03-06 06:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,0,122.06 +2026-03-17 03:47:43,2026-03-17 04:00:00,NHL,Florida Panthers,Colorado Avalanche,-0.9,0.0,0.054,Fanduel,POINTS_SPREAD,0.7,1,117.83 +2026-03-28 08:46:00,2026-03-29 09:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-05 20:35:00,2026-03-06 02:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-27 14:03:00,2026-03-29 15:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,149.39 +2026-02-25 05:33:52,2026-02-25 04:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.816,BetMGM,MONEYLINE,0.0,NA,172.03 +2026-03-23 20:43:48,2026-03-23 21:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.11,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-30 01:45:00,2026-03-30 11:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-26 15:57:00,2026-02-27 21:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,1,118.43 +2026-03-07 10:46:00,2026-03-09 04:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,38.1,1,100.0 +2026-03-24 16:06:00,2026-03-27 04:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,14.6,0,121.86 +2026-03-16 09:59:03,2026-03-16 11:00:00,NHL,Edmonton Oilers,Boston Bruins,-2.6,0.0,0.317,BetMGM,POINTS_SPREAD,2.2,0,100.0 +2026-02-21 03:48:00,2026-02-21 21:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,0,122.76 +2026-03-18 01:15:00,2026-03-19 05:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,60.9,1,124.3 +2026-02-26 21:47:00,2026-02-28 02:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,210.1,1,100.0 +2026-03-02 21:45:00,2026-03-05 07:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,109.54 +2026-02-25 13:00:00,2026-02-27 17:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,1,104.36 +2026-04-02 06:12:00,2026-04-02 16:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,26.1,0,117.23 +2026-04-08 15:24:01,2026-04-08 17:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.239,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-03 06:03:00,2026-03-05 22:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,250.2,1,124.1 +2026-03-31 15:25:21,2026-03-31 17:00:00,NHL,Florida Panthers,Boston Bruins,0.0,3.5,0.052,BetMGM,POINTS_TOTAL,3.5,0,100.0 +2026-04-10 06:04:00,2026-04-10 22:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,215.0,1,121.03 +2026-02-27 19:15:00,2026-02-28 18:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,138.14 +2026-02-27 16:02:00,2026-03-02 00:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-27 19:31:00,2026-03-02 06:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,144.44 +2026-04-18 03:09:42,2026-04-18 05:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,1.1,0.0,0.065,BetMGM,POINTS_SPREAD,0.4,0,111.36 +2026-04-02 20:44:00,2026-04-03 13:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,0,100.0 +2026-02-28 16:44:00,2026-03-02 19:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,137.99 +2026-03-19 00:42:00,2026-03-21 07:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-29 00:12:04,2026-03-29 02:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.106,BetMGM,MONEYLINE,0.0,NA,151.71 +2026-04-13 22:26:00,2026-04-15 12:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,237.0,1,107.81 +2026-02-20 02:02:00,2026-02-21 13:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-18 01:04:00,2026-03-18 04:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,1,109.41 +2026-04-08 21:07:00,2026-04-11 21:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,149.23 +2026-04-18 09:55:52,2026-04-18 09:00:00,NBA,Golden State Warriors,Boston Celtics,-0.4,0.0,0.616,BetMGM,POINTS_SPREAD,0.6,0,100.0 +2026-04-05 17:15:00,2026-04-06 03:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,214.5,0,100.0 +2026-03-26 23:43:50,2026-03-26 22:00:00,NFL,Buffalo Bills,Detroit Lions,4.6,0.0,0.688,BetMGM,POINTS_SPREAD,5.5,0,105.33 +2026-04-05 01:47:00,2026-04-06 11:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,50.7,0,109.07 +2026-03-31 12:54:20,2026-03-31 11:00:00,NBA,Golden State Warriors,Dallas Mavericks,4.5,0.0,0.863,BetMGM,POINTS_SPREAD,2.9,1,100.0 +2026-03-01 08:42:00,2026-03-02 01:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,43.7,1,122.41 +2026-03-12 18:19:22,2026-03-12 18:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,240.2,0.841,BetMGM,POINTS_TOTAL,242.7,0,100.0 +2026-04-10 02:12:00,2026-04-12 22:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,176.13 +2026-04-09 16:02:39,2026-04-09 17:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.8,0.0,0.037,BetMGM,POINTS_SPREAD,1.3,0,125.83 +2026-04-18 14:35:00,2026-04-18 21:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-25 18:38:00,2026-03-26 04:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,101.9 +2026-03-01 11:19:00,2026-03-03 20:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.0,1,100.0 +2026-04-04 22:50:00,2026-04-07 14:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,137.11 +2026-03-23 07:33:40,2026-03-23 08:00:00,NFL,Miami Dolphins,Kansas City Chiefs,-4.3,0.0,0.526,BetMGM,POINTS_SPREAD,1.9,1,163.71 +2026-02-22 17:04:54,2026-02-22 15:00:00,NHL,Toronto Maple Leafs,Florida Panthers,-0.1,0.0,0.855,Fanduel,POINTS_SPREAD,1.2,0,100.0 +2026-03-15 16:20:00,2026-03-17 11:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,227.8,0,112.7 +2026-04-15 23:56:00,2026-04-17 10:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,33.4,1,100.0 +2026-03-27 21:23:00,2026-03-30 13:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,114.38 +2026-03-29 06:02:00,2026-03-31 05:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,136.91 +2026-03-12 19:42:19,2026-03-12 19:00:00,NFL,Philadelphia Eagles,Detroit Lions,-0.2,0.0,0.874,Fanduel,POINTS_SPREAD,1.0,0,100.0 +2026-03-08 08:53:00,2026-03-09 01:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.8,0,114.41 +2026-04-01 20:56:00,2026-04-03 10:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,47.3,0,100.0 +2026-03-19 08:59:00,2026-03-21 21:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,0,100.0 +2026-03-25 10:52:00,2026-03-26 12:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,140.31 +2026-03-14 05:39:00,2026-03-14 15:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,1,102.55 +2026-04-05 03:29:00,2026-04-06 04:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,1,100.0 +2026-03-20 11:46:00,2026-03-20 16:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,1,106.8 +2026-03-01 16:12:00,2026-03-02 04:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,102.56 +2026-02-22 01:12:00,2026-02-24 12:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,130.05 +2026-02-19 16:09:00,2026-02-21 16:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.8,1,114.57 +2026-04-01 20:13:00,2026-04-02 23:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,103.71 +2026-04-17 03:36:51,2026-04-17 04:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,242.6,0.077,Fanduel,POINTS_TOTAL,240.6,1,122.77 +2026-03-07 21:57:55,2026-03-07 21:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.594,Fanduel,MONEYLINE,0.0,NA,155.4 +2026-04-05 16:40:40,2026-04-05 15:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,7.3,0.576,BetMGM,POINTS_TOTAL,6.4,0,109.36 +2026-04-11 13:27:00,2026-04-13 13:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.5,1,102.41 +2026-03-15 07:52:37,2026-03-15 08:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,3.5,0.309,Fanduel,POINTS_TOTAL,4.0,0,107.89 +2026-02-26 05:46:00,2026-02-26 19:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,1,116.85 +2026-04-04 18:13:00,2026-04-07 08:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,208.9,1,126.04 +2026-03-14 11:00:00,2026-03-15 17:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,111.92 +2026-03-27 20:14:00,2026-03-30 14:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,44.4,1,113.03 +2026-04-19 02:01:00,2026-04-19 13:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,216.2,1,100.0 +2026-03-18 02:36:44,2026-03-18 02:00:00,NHL,Boston Bruins,Florida Panthers,-2.7,0.0,0.693,BetMGM,POINTS_SPREAD,0.9,1,139.64 +2026-03-23 16:36:00,2026-03-25 12:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-28 20:56:00,2026-02-28 23:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,41.2,0,100.0 +2026-03-18 15:25:19,2026-03-18 14:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.724,Fanduel,MONEYLINE,0.0,NA,139.17 +2026-04-03 14:32:56,2026-04-03 14:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,49.4,0.633,Fanduel,POINTS_TOTAL,46.5,0,111.15 +2026-02-27 21:28:00,2026-03-02 19:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,111.29 +2026-03-12 12:14:18,2026-03-12 14:00:00,NBA,Boston Celtics,Denver Nuggets,1.3,0.0,0.185,BetMGM,POINTS_SPREAD,0.6,1,100.0 +2026-03-31 15:19:00,2026-04-01 05:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,5.8,1,107.0 +2026-04-20 08:27:01,2026-04-20 06:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.839,BetMGM,MONEYLINE,0.0,NA,164.48 +2026-03-15 16:10:00,2026-03-18 01:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,100.0 +2026-03-27 21:09:00,2026-03-30 16:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-05 16:38:00,2026-03-06 12:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,133.94 +2026-03-31 23:52:00,2026-04-03 15:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.2,1,100.0 +2026-04-04 08:17:00,2026-04-04 20:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,236.1,0,103.95 +2026-02-27 15:59:00,2026-02-28 21:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-12 12:17:00,2026-03-14 08:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,9.4,1,110.44 +2026-03-26 16:49:43,2026-03-26 18:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.304,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-15 00:07:00,2026-04-16 19:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,38.9,0,101.36 +2026-02-20 04:10:00,2026-02-21 23:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,1,144.85 +2026-04-17 08:05:00,2026-04-20 01:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,1,100.0 +2026-03-20 09:04:00,2026-03-21 18:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,14.6,0,108.72 +2026-04-08 01:31:37,2026-04-08 02:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.109,BetMGM,MONEYLINE,0.0,NA,149.25 +2026-04-04 06:59:38,2026-04-04 07:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.4,0.0,0.548,BetMGM,POINTS_SPREAD,1.8,1,118.64 +2026-04-12 02:23:00,2026-04-14 23:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,114.05 +2026-03-02 13:32:01,2026-03-02 12:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,229.4,0.539,Fanduel,POINTS_TOTAL,227.4,1,112.2 +2026-04-08 18:27:00,2026-04-09 08:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,119.14 +2026-03-08 04:53:00,2026-03-08 07:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,138.92 +2026-02-26 12:41:54,2026-02-26 12:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,52.6,0.405,Fanduel,POINTS_TOTAL,55.5,1,148.88 +2026-04-10 14:16:00,2026-04-12 10:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.3,0,109.79 +2026-03-03 20:05:48,2026-03-03 20:00:00,NBA,Miami Heat,Los Angeles Lakers,-0.8,0.0,0.71,Fanduel,POINTS_SPREAD,0.6,0,113.69 +2026-03-26 20:36:46,2026-03-26 20:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.721,BetMGM,MONEYLINE,0.0,NA,112.24 +2026-04-15 00:52:00,2026-04-15 03:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.6,0,110.72 +2026-04-20 17:32:00,2026-04-20 19:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,43.1,0,141.57 +2026-04-20 14:18:00,2026-04-21 12:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.5,0,109.43 +2026-03-07 16:52:00,2026-03-07 17:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.5,Fanduel,MONEYLINE,0.0,NA,107.87 +2026-03-26 02:29:00,2026-03-26 11:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,0,116.98 +2026-03-07 03:40:51,2026-03-07 05:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,20.3,0.127,Fanduel,POINTS_TOTAL,11.5,1,100.12 +2026-03-08 03:28:00,2026-03-10 02:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,1,114.28 +2026-03-26 06:29:00,2026-03-26 14:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,121.42 +2026-03-23 13:37:00,2026-03-26 00:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,48.1,1,100.0 +2026-02-25 09:04:00,2026-02-26 23:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,211.2,0,102.77 +2026-03-14 23:24:00,2026-03-15 03:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,44.2,0,100.0 +2026-04-10 10:37:00,2026-04-11 05:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,0,118.79 +2026-03-12 05:32:00,2026-03-12 21:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,225.5,1,125.26 +2026-03-10 02:23:00,2026-03-11 23:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,126.97 +2026-03-02 04:35:00,2026-03-04 05:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.5,0,100.0 +2026-04-05 14:18:00,2026-04-07 06:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,123.14 +2026-04-04 12:02:00,2026-04-06 03:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,46.8,0,103.42 +2026-04-04 07:17:00,2026-04-05 05:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.0,1,100.0 +2026-03-19 03:49:24,2026-03-19 03:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,231.8,0.28,Fanduel,POINTS_TOTAL,233.2,1,119.74 +2026-03-24 11:09:31,2026-03-24 10:00:00,NHL,Vegas Golden Knights,Boston Bruins,-4.1,0.0,0.914,BetMGM,POINTS_SPREAD,0.1,0,100.0 +2026-03-07 15:51:00,2026-03-07 16:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-14 02:57:00,2026-03-16 20:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,236.6,0,110.19 +2026-04-03 06:01:00,2026-04-04 07:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,33.8,0,104.02 +2026-03-19 08:24:55,2026-03-19 09:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.044,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-12 07:42:00,2026-04-13 18:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,105.39 +2026-04-01 22:43:00,2026-04-02 13:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,128.56 +2026-04-02 21:31:00,2026-04-05 00:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,33.6,0,110.23 +2026-03-15 19:53:00,2026-03-16 10:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,107.38 +2026-03-15 03:06:00,2026-03-16 07:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,123.14 +2026-03-21 03:54:43,2026-03-21 02:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,15.3,0.904,BetMGM,POINTS_TOTAL,16.2,1,122.27 +2026-04-16 04:30:00,2026-04-16 11:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,1,100.0 +2026-03-12 23:53:00,2026-03-13 15:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,138.38 +2026-04-18 02:38:00,2026-04-20 23:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,1,107.46 +2026-03-16 22:53:00,2026-03-18 13:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,0,123.29 +2026-03-13 08:01:00,2026-03-15 03:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,230.7,0,114.55 +2026-03-22 07:54:00,2026-03-23 19:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-19 02:26:00,2026-02-20 23:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,214.4,0,108.19 +2026-03-29 06:15:48,2026-03-29 05:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,4.8,0.51,Fanduel,POINTS_TOTAL,4.8,1,101.12 +2026-04-03 19:35:00,2026-04-06 07:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,1,121.12 +2026-04-12 21:36:00,2026-04-15 01:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,144.8 +2026-03-06 13:22:00,2026-03-07 05:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,131.43 +2026-02-20 03:16:00,2026-02-23 00:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,0,104.18 +2026-04-03 20:45:06,2026-04-03 21:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,-3.5,0.0,0.345,BetMGM,POINTS_SPREAD,4.9,1,125.39 +2026-02-28 10:19:00,2026-03-01 20:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,1,100.0 +2026-02-20 07:04:00,2026-02-21 16:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,0,106.06 +2026-03-10 13:14:00,2026-03-12 10:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-08 18:40:00,2026-03-10 02:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,108.09 +2026-03-25 03:59:00,2026-03-28 01:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.4,0,113.01 +2026-03-13 17:26:00,2026-03-16 00:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,0,116.7 +2026-03-27 21:28:09,2026-03-27 21:00:00,NBA,Golden State Warriors,Miami Heat,0.0,222.0,0.812,BetMGM,POINTS_TOTAL,222.5,0,103.3 +2026-02-24 18:25:00,2026-02-25 21:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,104.75 +2026-04-05 05:25:43,2026-04-05 04:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,33.4,0.954,Fanduel,POINTS_TOTAL,24.0,0,131.27 +2026-04-18 22:00:00,2026-04-21 00:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,1,108.04 +2026-03-28 10:53:00,2026-03-30 10:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,117.75 +2026-03-10 19:38:00,2026-03-11 22:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,32.2,0,103.83 +2026-03-14 10:21:36,2026-03-14 09:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,44.7,0.62,Fanduel,POINTS_TOTAL,41.6,0,122.99 +2026-03-26 03:47:00,2026-03-26 16:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,47.3,0,118.53 +2026-03-24 22:26:00,2026-03-27 10:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,1,120.51 +2026-04-19 21:04:21,2026-04-19 20:00:00,NHL,New York Rangers,Boston Bruins,0.0,10.9,0.452,BetMGM,POINTS_TOTAL,8.2,1,100.0 +2026-04-16 17:27:00,2026-04-18 11:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,1,116.63 +2026-03-03 11:21:00,2026-03-03 19:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,5.8,1,146.61 +2026-04-09 00:32:00,2026-04-10 05:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-11 19:00:00,2026-04-14 10:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,100.0 +2026-03-05 11:29:00,2026-03-05 23:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,15.5,0,117.29 +2026-03-29 21:22:00,2026-03-31 19:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,33.7,1,111.87 +2026-02-23 10:53:46,2026-02-23 11:00:00,NFL,Buffalo Bills,Detroit Lions,-0.6,0.0,0.271,BetMGM,POINTS_SPREAD,2.4,1,100.0 +2026-04-13 05:24:06,2026-04-13 06:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,231.6,0.545,Fanduel,POINTS_TOTAL,235.9,0,100.0 +2026-04-18 08:26:00,2026-04-19 12:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-18 08:16:00,2026-02-21 02:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.7,0,100.0 +2026-03-02 13:51:28,2026-03-02 14:00:00,NFL,Buffalo Bills,Kansas City Chiefs,-1.2,0.0,0.236,Fanduel,POINTS_SPREAD,4.3,1,141.71 +2026-03-07 10:10:49,2026-03-07 11:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,221.2,0.099,BetMGM,POINTS_TOTAL,225.2,1,103.36 +2026-04-12 07:35:57,2026-04-12 08:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.372,Fanduel,MONEYLINE,0.0,NA,121.65 +2026-04-04 13:27:00,2026-04-06 21:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,5.4,1,116.88 +2026-02-27 07:02:00,2026-02-28 15:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,56.6,1,100.0 +2026-03-14 07:14:00,2026-03-14 21:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,0,131.64 +2026-02-18 01:10:00,2026-02-21 00:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.9,0,116.1 +2026-02-21 15:41:19,2026-02-21 16:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,12.5,0.474,BetMGM,POINTS_TOTAL,16.1,1,113.73 +2026-03-21 03:34:44,2026-03-21 04:00:00,NFL,Baltimore Ravens,Buffalo Bills,3.2,0.0,0.443,BetMGM,POINTS_SPREAD,0.9,0,121.66 +2026-03-24 22:32:00,2026-03-27 01:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,150.49 +2026-04-01 12:59:00,2026-04-03 08:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,61.8,1,129.41 +2026-04-19 11:09:00,2026-04-21 06:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-26 04:41:24,2026-02-26 06:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.33,BetMGM,MONEYLINE,0.0,NA,116.98 +2026-03-07 07:35:00,2026-03-08 23:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,27.1,1,102.63 +2026-02-19 15:08:00,2026-02-20 15:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,105.34 +2026-03-26 03:03:00,2026-03-27 12:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,175.22 +2026-04-11 11:02:00,2026-04-12 06:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,128.74 +2026-03-14 08:30:00,2026-03-16 01:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.4,0,100.0 +2026-03-03 13:28:58,2026-03-03 12:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,1.9,0.0,0.511,Fanduel,POINTS_SPREAD,3.5,1,123.06 +2026-03-05 03:13:52,2026-03-05 01:00:00,NBA,Boston Celtics,Los Angeles Lakers,3.6,0.0,0.916,Fanduel,POINTS_SPREAD,1.0,1,106.58 +2026-03-10 06:48:00,2026-03-10 18:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,43.4,1,112.34 +2026-04-01 23:26:00,2026-04-04 21:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,101.77 +2026-04-19 02:55:00,2026-04-19 14:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,1,100.0 +2026-03-14 03:06:44,2026-03-14 04:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.193,Fanduel,MONEYLINE,0.0,NA,138.67 +2026-03-08 02:08:00,2026-03-10 14:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.1,1,103.73 +2026-02-26 15:37:00,2026-02-28 11:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,123.12 +2026-04-05 09:11:00,2026-04-07 01:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,232.7,0,102.06 +2026-02-21 12:42:00,2026-02-23 13:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,109.74 +2026-03-05 10:19:08,2026-03-05 09:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,44.8,0.473,BetMGM,POINTS_TOTAL,42.9,1,103.93 +2026-04-10 04:33:00,2026-04-13 02:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,38.0,0,126.37 +2026-02-28 23:12:00,2026-03-02 18:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,111.24 +2026-03-23 23:19:02,2026-03-24 00:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.128,BetMGM,MONEYLINE,0.0,NA,113.02 +2026-04-12 00:06:00,2026-04-14 02:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,104.02 +2026-03-10 06:51:00,2026-03-12 13:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,239.2,0,107.59 +2026-04-11 10:22:00,2026-04-13 18:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,132.04 +2026-04-18 14:30:43,2026-04-18 13:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.754,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-18 05:09:01,2026-03-18 05:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.239,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-20 20:59:00,2026-03-21 20:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,218.4,0,107.99 +2026-03-31 12:58:00,2026-04-01 04:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,0,100.0 +2026-04-14 04:18:00,2026-04-16 16:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,1,117.4 +2026-04-12 10:19:18,2026-04-12 10:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.885,Fanduel,MONEYLINE,0.0,NA,131.09 +2026-02-24 12:14:10,2026-02-24 13:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,220.5,0.201,Fanduel,POINTS_TOTAL,218.0,1,102.58 +2026-03-27 12:26:00,2026-03-30 08:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,0,107.86 +2026-04-10 01:46:00,2026-04-10 19:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,0,122.72 +2026-03-31 16:31:00,2026-04-03 12:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,182.93 +2026-03-29 08:20:00,2026-03-29 13:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,35.8,0,111.11 +2026-02-26 22:29:00,2026-02-28 23:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.58 +2026-03-15 02:41:00,2026-03-17 09:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,22.2,0,100.0 +2026-03-26 11:43:00,2026-03-27 23:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,223.8,0,126.44 +2026-04-03 18:06:00,2026-04-05 06:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.9,1,100.51 +2026-04-17 09:28:00,2026-04-17 16:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,28.3,1,100.0 +2026-04-10 15:22:32,2026-04-10 16:00:00,NBA,Boston Celtics,Phoenix Suns,0.5,0.0,0.153,Fanduel,POINTS_SPREAD,3.3,0,100.0 +2026-04-07 20:32:40,2026-04-07 21:00:00,NBA,Miami Heat,Milwaukee Bucks,-0.3,0.0,0.426,Fanduel,POINTS_SPREAD,4.7,0,122.55 +2026-04-06 22:58:21,2026-04-06 23:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,4.3,0.0,0.402,BetMGM,POINTS_SPREAD,0.1,0,119.06 +2026-03-18 04:06:19,2026-03-18 03:00:00,NHL,New York Rangers,Carolina Hurricanes,2.3,0.0,0.624,BetMGM,POINTS_SPREAD,0.2,1,110.85 +2026-04-07 11:44:40,2026-04-07 11:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,24.8,0.926,Fanduel,POINTS_TOTAL,27.9,0,100.0 +2026-03-07 12:05:00,2026-03-07 19:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,12.2,1,100.0 +2026-03-26 09:36:00,2026-03-27 00:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,35.4,1,100.0 +2026-03-26 08:46:16,2026-03-26 08:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,53.5,0.746,Fanduel,POINTS_TOTAL,57.3,0,100.0 +2026-03-19 01:24:00,2026-03-19 22:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,127.04 +2026-02-24 14:45:00,2026-02-25 08:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,166.0 +2026-02-27 14:02:00,2026-03-01 04:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,144.26 +2026-04-05 23:20:40,2026-04-05 22:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.776,Fanduel,MONEYLINE,0.0,NA,136.46 +2026-04-15 04:25:39,2026-04-15 06:00:00,NFL,San Francisco 49ers,Dallas Cowboys,7.8,0.0,0.037,BetMGM,POINTS_SPREAD,1.9,0,123.27 +2026-02-18 16:06:00,2026-02-21 14:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,209.3,1,128.09 +2026-04-09 18:59:00,2026-04-12 01:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,238.0,0,118.98 +2026-04-03 07:55:19,2026-04-03 07:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.624,BetMGM,MONEYLINE,0.0,NA,142.1 +2026-04-18 21:24:00,2026-04-19 23:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,48.4,1,119.05 +2026-03-04 14:24:50,2026-03-04 13:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,61.2,0.588,BetMGM,POINTS_TOTAL,64.1,1,109.1 +2026-03-22 16:14:00,2026-03-23 06:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,138.14 +2026-04-13 23:13:00,2026-04-15 09:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,109.63 +2026-02-27 08:02:28,2026-02-27 09:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.086,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-04 15:25:43,2026-03-04 15:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.604,BetMGM,MONEYLINE,0.0,NA,158.2 +2026-04-11 11:22:00,2026-04-12 17:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.0,1,116.71 +2026-04-13 13:21:00,2026-04-15 11:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.0,1,133.11 +2026-03-18 15:02:38,2026-03-18 16:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.248,BetMGM,MONEYLINE,0.0,NA,166.81 +2026-04-18 04:16:00,2026-04-19 12:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,1,114.53 +2026-04-11 02:58:00,2026-04-11 09:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,120.43 +2026-02-23 20:38:00,2026-02-24 04:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,130.23 +2026-04-04 10:57:36,2026-04-04 11:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.52,Fanduel,MONEYLINE,0.0,NA,162.37 +2026-03-20 09:55:00,2026-03-22 12:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,1,110.4 +2026-03-16 07:51:43,2026-03-16 08:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,36.2,0.204,BetMGM,POINTS_TOTAL,36.5,1,100.0 +2026-03-30 03:31:00,2026-03-30 20:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,37.5,1,103.09 +2026-04-06 10:25:00,2026-04-07 06:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,1,100.0 +2026-02-27 11:20:00,2026-03-01 06:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,110.04 +2026-04-12 13:40:00,2026-04-13 04:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,29.7,1,126.2 +2026-04-15 17:31:00,2026-04-16 19:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.7,1,100.0 +2026-03-30 17:34:20,2026-03-30 16:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,3.5,0.713,Fanduel,POINTS_TOTAL,4.4,0,110.54 +2026-03-26 07:01:00,2026-03-27 11:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,126.6 +2026-02-23 04:15:00,2026-02-26 04:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,50.7,0,100.0 +2026-03-08 15:58:13,2026-03-08 16:00:00,NFL,Detroit Lions,Dallas Cowboys,-0.1,0.0,0.129,Fanduel,POINTS_SPREAD,2.1,0,108.17 +2026-03-27 17:04:32,2026-03-27 15:00:00,NBA,Dallas Mavericks,Miami Heat,3.1,0.0,0.853,Fanduel,POINTS_SPREAD,1.2,0,112.78 +2026-04-01 07:51:00,2026-04-01 11:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,114.51 +2026-03-28 18:39:00,2026-03-29 12:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,107.24 +2026-03-29 05:18:00,2026-03-30 01:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,227.3,1,112.4 +2026-03-10 16:23:00,2026-03-12 01:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,49.6,0,100.0 +2026-03-09 07:44:00,2026-03-12 03:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.2,0,100.0 +2026-03-18 12:18:36,2026-03-18 13:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,3.5,0.17,BetMGM,POINTS_TOTAL,5.7,1,105.4 +2026-03-23 02:43:00,2026-03-24 17:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,1,100.0 +2026-03-17 23:07:00,2026-03-19 09:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.6,1,100.0 +2026-04-04 16:46:00,2026-04-05 04:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,133.28 +2026-03-21 09:33:00,2026-03-22 21:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,55.0,1,101.28 +2026-02-20 16:07:00,2026-02-21 23:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-16 09:31:00,2026-03-18 06:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,1,100.0 +2026-03-14 13:06:00,2026-03-15 19:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,1,100.0 +2026-04-12 07:29:36,2026-04-12 07:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,208.5,0.47,Fanduel,POINTS_TOTAL,204.0,1,105.62 +2026-03-27 04:26:00,2026-03-29 18:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,0,100.0 +2026-02-20 16:48:00,2026-02-22 06:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,10.8,1,103.24 +2026-03-03 19:24:00,2026-03-06 19:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,35.1,0,127.63 +2026-03-26 20:33:18,2026-03-26 19:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,3.5,0.735,BetMGM,POINTS_TOTAL,3.5,1,100.0 +2026-04-08 06:38:00,2026-04-10 20:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,1,132.8 +2026-04-04 02:22:00,2026-04-05 17:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.0,1,140.7 +2026-03-14 08:17:00,2026-03-15 13:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,25.1,1,100.0 +2026-03-29 03:48:12,2026-03-29 05:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.14,BetMGM,MONEYLINE,0.0,NA,141.32 +2026-03-19 00:27:00,2026-03-21 09:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,58.2,0,104.89 +2026-03-23 08:05:00,2026-03-24 18:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-23 10:34:00,2026-03-26 00:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,190.94 +2026-03-26 00:55:00,2026-03-26 21:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,0,100.0 +2026-04-16 18:54:00,2026-04-17 19:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,142.24 +2026-03-15 17:02:00,2026-03-18 06:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,129.72 +2026-04-20 02:12:00,2026-04-21 08:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,50.3,0,100.0 +2026-03-17 08:14:00,2026-03-17 19:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,118.74 +2026-03-12 01:45:00,2026-03-12 22:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,130.47 +2026-04-09 09:52:49,2026-04-09 11:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.249,BetMGM,MONEYLINE,0.0,NA,143.29 +2026-03-14 16:30:00,2026-03-17 02:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,136.3 +2026-03-12 14:39:15,2026-03-12 15:00:00,NBA,Denver Nuggets,Milwaukee Bucks,1.9,0.0,0.607,Fanduel,POINTS_SPREAD,4.1,0,102.11 +2026-04-16 00:58:00,2026-04-18 21:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,10.4,0,127.98 +2026-03-13 12:57:00,2026-03-15 06:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.7,0,137.7 +2026-04-12 09:29:00,2026-04-12 11:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,50.9,1,115.61 +2026-03-30 01:16:00,2026-04-01 10:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,0,136.8 +2026-04-07 18:00:00,2026-04-08 02:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-21 21:43:30,2026-03-21 21:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.475,BetMGM,MONEYLINE,0.0,NA,122.62 +2026-03-25 23:08:00,2026-03-28 01:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,0,115.93 +2026-02-21 23:29:00,2026-02-24 17:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,37.9,0,118.06 +2026-03-08 03:51:00,2026-03-10 21:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,161.44 +2026-04-01 09:44:15,2026-04-01 11:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,223.5,0.107,Fanduel,POINTS_TOTAL,222.1,1,108.34 +2026-03-16 21:52:00,2026-03-18 17:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,0,100.0 +2026-02-25 08:44:00,2026-02-27 10:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-24 10:35:00,2026-02-25 21:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,127.31 +2026-04-04 17:45:00,2026-04-06 18:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,0,113.59 +2026-03-15 22:33:00,2026-03-16 09:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,214.3,0,107.71 +2026-02-21 20:50:00,2026-02-23 03:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,100.0 +2026-03-01 12:38:00,2026-03-03 16:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,212.6,0,124.07 +2026-03-31 07:25:00,2026-04-01 20:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,222.4,0,100.0 +2026-03-01 11:13:00,2026-03-04 09:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-15 04:47:00,2026-04-16 08:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,169.0 +2026-03-12 20:09:00,2026-03-13 22:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,0,100.0 +2026-03-11 16:46:00,2026-03-12 21:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-01 11:55:00,2026-03-01 13:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,180.5 +2026-03-29 19:31:57,2026-03-29 18:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,7.0,0.822,BetMGM,POINTS_TOTAL,3.5,0,100.0 +2026-02-27 08:59:54,2026-02-27 08:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,3.5,0.455,Fanduel,POINTS_TOTAL,3.5,1,114.83 +2026-04-12 20:19:00,2026-04-15 09:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,123.86 +2026-03-17 18:17:00,2026-03-19 03:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,218.9,0,132.72 +2026-04-04 18:52:37,2026-04-04 19:00:00,NBA,Milwaukee Bucks,Boston Celtics,-3.3,0.0,0.359,Fanduel,POINTS_SPREAD,0.1,0,100.0 +2026-04-10 09:28:12,2026-04-10 09:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,33.3,0.29,Fanduel,POINTS_TOTAL,29.9,1,111.62 +2026-03-05 01:01:00,2026-03-06 21:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,224.1,1,119.04 +2026-04-16 21:11:00,2026-04-17 23:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,0,119.75 +2026-03-17 23:21:00,2026-03-19 13:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,237.1,0,107.56 +2026-02-24 16:00:00,2026-02-25 00:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,153.63 +2026-03-05 03:29:40,2026-03-05 05:00:00,NHL,Florida Panthers,Edmonton Oilers,-0.4,0.0,0.076,BetMGM,POINTS_SPREAD,0.5,1,100.0 +2026-02-19 15:08:00,2026-02-20 19:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,1,100.0 +2026-03-02 21:01:00,2026-03-05 06:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,108.09 +2026-03-24 11:29:00,2026-03-25 13:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,232.9,0,100.0 +2026-03-22 22:37:00,2026-03-25 13:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,158.48 +2026-03-27 03:06:00,2026-03-27 10:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-10 11:31:00,2026-03-10 22:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,115.28 +2026-04-03 20:48:00,2026-04-04 11:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,223.8,0,112.22 +2026-02-20 15:47:43,2026-02-20 16:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,47.9,0.304,Fanduel,POINTS_TOTAL,44.7,0,115.67 +2026-03-26 03:02:00,2026-03-28 22:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,36.5,1,113.53 +2026-04-03 15:35:00,2026-04-04 05:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.26 +2026-04-13 08:19:00,2026-04-16 05:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,1,100.0 +2026-03-06 00:25:00,2026-03-07 01:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.0,1,125.04 +2026-02-24 21:25:56,2026-02-24 23:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.233,Fanduel,MONEYLINE,0.0,NA,101.82 +2026-03-25 18:19:00,2026-03-26 05:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,8.6,1,100.0 +2026-04-01 12:36:24,2026-04-01 11:00:00,NBA,Golden State Warriors,Denver Nuggets,1.3,0.0,0.73,BetMGM,POINTS_SPREAD,2.8,1,100.0 +2026-04-07 15:14:16,2026-04-07 15:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.246,BetMGM,MONEYLINE,0.0,NA,123.35 +2026-03-07 17:05:32,2026-03-07 18:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.053,Fanduel,MONEYLINE,0.0,NA,165.26 +2026-03-04 12:14:25,2026-03-04 12:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,36.8,0.319,Fanduel,POINTS_TOTAL,39.6,1,136.68 +2026-03-25 18:08:16,2026-03-25 17:00:00,NBA,Dallas Mavericks,Miami Heat,6.0,0.0,0.696,Fanduel,POINTS_SPREAD,0.4,1,100.0 +2026-03-06 22:35:00,2026-03-09 06:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-12 13:01:00,2026-04-12 16:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,49.8,0,120.13 +2026-03-28 08:33:00,2026-03-28 16:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,238.1,1,121.44 +2026-03-11 09:17:00,2026-03-13 23:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,25.2,1,113.32 +2026-03-18 02:58:39,2026-03-18 04:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.7,0.0,0.037,BetMGM,POINTS_SPREAD,2.1,0,108.53 +2026-03-06 09:14:00,2026-03-06 18:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,1,132.69 +2026-02-25 09:00:00,2026-02-26 11:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,148.12 +2026-03-30 15:31:00,2026-04-01 22:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,155.19 +2026-03-17 20:50:00,2026-03-20 20:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,0,123.7 +2026-02-20 08:53:00,2026-02-20 23:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,41.3,0,104.72 +2026-02-20 14:08:00,2026-02-23 11:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.3,0,108.55 +2026-04-14 01:37:00,2026-04-14 18:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,100.0 +2026-03-01 11:58:16,2026-03-01 11:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.796,BetMGM,MONEYLINE,0.0,NA,115.89 +2026-03-29 03:07:00,2026-03-30 08:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,112.55 +2026-03-15 12:17:02,2026-03-15 13:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,3.5,0.228,BetMGM,POINTS_TOTAL,6.4,1,105.31 +2026-04-10 09:43:32,2026-04-10 11:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,15.7,0.253,BetMGM,POINTS_TOTAL,23.2,1,117.97 +2026-04-09 15:24:00,2026-04-09 18:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,105.63 +2026-02-22 04:49:25,2026-02-22 04:00:00,NBA,Golden State Warriors,Milwaukee Bucks,-1.7,0.0,0.569,BetMGM,POINTS_SPREAD,2.8,0,108.13 +2026-03-10 11:49:00,2026-03-11 07:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,228.7,0,105.94 +2026-04-17 01:41:45,2026-04-17 02:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,19.5,0.632,Fanduel,POINTS_TOTAL,16.3,1,103.28 +2026-03-26 00:30:15,2026-03-26 02:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.207,Fanduel,MONEYLINE,0.0,NA,131.11 +2026-03-18 21:49:55,2026-03-18 23:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.094,Fanduel,MONEYLINE,0.0,NA,150.19 +2026-03-26 06:02:00,2026-03-28 18:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,208.3,0,136.37 +2026-04-06 02:23:00,2026-04-06 07:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,122.99 +2026-03-03 11:52:44,2026-03-03 13:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,11.8,0.393,BetMGM,POINTS_TOTAL,16.7,1,104.93 +2026-04-15 23:56:00,2026-04-18 19:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,0,127.48 +2026-03-22 03:31:00,2026-03-23 00:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,1,110.17 +2026-04-05 15:17:00,2026-04-06 01:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,148.93 +2026-03-31 08:00:00,2026-04-02 01:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,122.53 +2026-03-24 10:35:06,2026-03-24 12:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.095,Fanduel,MONEYLINE,0.0,NA,147.74 +2026-02-19 07:11:00,2026-02-21 08:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,119.19 +2026-03-23 14:18:00,2026-03-24 21:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-05 01:15:08,2026-04-05 00:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,37.6,0.673,BetMGM,POINTS_TOTAL,41.2,1,114.73 +2026-03-18 20:51:00,2026-03-19 02:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,123.84 +2026-03-08 12:36:52,2026-03-08 12:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.766,Fanduel,MONEYLINE,0.0,NA,113.07 +2026-03-21 00:24:00,2026-03-22 03:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,45.2,1,107.56 +2026-03-24 09:40:00,2026-03-24 12:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,127.9 +2026-03-12 21:04:00,2026-03-13 07:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,239.9,1,125.22 +2026-03-16 23:22:00,2026-03-17 06:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.6,0,124.51 +2026-03-04 15:06:00,2026-03-05 20:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,4.1,1,120.99 +2026-02-28 10:49:00,2026-02-28 11:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.5,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-06 10:30:00,2026-04-08 15:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,143.22 +2026-04-14 07:12:00,2026-04-16 01:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.9,1,111.2 +2026-02-25 23:30:28,2026-02-26 00:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.7,0.0,0.336,Fanduel,POINTS_SPREAD,0.9,1,100.05 +2026-04-08 00:06:31,2026-04-07 23:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.914,Fanduel,MONEYLINE,0.0,NA,158.84 +2026-03-30 15:39:00,2026-03-31 10:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,102.39 +2026-04-06 23:32:00,2026-04-08 16:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,144.42 +2026-03-31 07:02:07,2026-03-31 06:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,42.9,0.834,BetMGM,POINTS_TOTAL,47.0,0,103.74 +2026-04-10 07:22:00,2026-04-12 21:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,104.64 +2026-04-14 15:26:00,2026-04-15 07:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,0,145.01 +2026-04-11 13:37:00,2026-04-13 23:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,47.6,0,131.99 +2026-03-26 09:21:00,2026-03-28 12:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,1,136.69 +2026-02-22 04:15:00,2026-02-22 19:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,1,100.0 +2026-03-08 03:15:45,2026-03-08 01:00:00,NFL,Detroit Lions,Dallas Cowboys,0.8,0.0,0.832,BetMGM,POINTS_SPREAD,1.9,0,126.73 +2026-03-07 06:17:06,2026-03-07 06:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,16.8,0.495,BetMGM,POINTS_TOTAL,18.1,1,106.33 +2026-03-01 16:32:14,2026-03-01 18:00:00,NBA,Miami Heat,Phoenix Suns,0.4,0.0,0.068,BetMGM,POINTS_SPREAD,2.0,0,101.3 +2026-03-09 08:16:00,2026-03-11 16:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,120.97 +2026-02-28 23:34:49,2026-03-01 01:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,3.5,0.049,BetMGM,POINTS_TOTAL,5.6,0,109.82 +2026-04-19 05:35:00,2026-04-20 10:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,111.72 +2026-04-12 04:58:00,2026-04-12 17:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,128.95 +2026-04-01 17:11:00,2026-04-04 08:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,210.8,0,133.48 +2026-04-01 02:40:00,2026-04-01 14:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.9,1,100.0 +2026-03-19 15:51:00,2026-03-22 11:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,125.88 +2026-03-10 17:26:00,2026-03-13 16:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,9.1,0,107.11 +2026-03-26 03:13:00,2026-03-26 15:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,166.67 +2026-04-06 12:14:00,2026-04-07 14:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.7,0,125.23 +2026-02-25 05:24:00,2026-02-25 16:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,34.9,1,114.02 +2026-03-22 14:47:00,2026-03-24 10:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-14 10:06:00,2026-03-14 20:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,162.46 +2026-04-03 05:35:51,2026-04-03 05:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.877,Fanduel,MONEYLINE,0.0,NA,119.67 +2026-02-28 18:46:57,2026-02-28 19:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.222,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-04 05:33:00,2026-04-05 13:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,116.65 +2026-02-23 23:18:19,2026-02-23 23:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.824,Fanduel,MONEYLINE,0.0,NA,105.34 +2026-03-03 07:34:00,2026-03-05 22:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,0,100.0 +2026-04-21 02:37:57,2026-04-21 02:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.572,Fanduel,MONEYLINE,0.0,NA,124.0 +2026-03-20 16:39:00,2026-03-20 18:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,133.21 +2026-03-28 19:41:00,2026-03-30 18:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,100.54 +2026-03-28 22:34:28,2026-03-28 22:00:00,NBA,Milwaukee Bucks,Miami Heat,1.2,0.0,0.936,BetMGM,POINTS_SPREAD,0.8,0,100.0 +2026-03-16 21:21:00,2026-03-17 00:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,0,100.0 +2026-03-30 09:15:00,2026-04-02 08:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,1,100.0 +2026-03-13 21:57:00,2026-03-15 19:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-13 09:17:52,2026-03-13 09:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,51.2,0.416,BetMGM,POINTS_TOTAL,55.3,0,100.0 +2026-03-01 05:39:00,2026-03-02 19:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,0,100.0 +2026-03-27 02:07:00,2026-03-29 09:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,0,100.0 +2026-04-14 16:49:00,2026-04-14 21:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,163.75 +2026-02-21 12:37:00,2026-02-23 13:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,114.27 +2026-04-07 14:23:00,2026-04-08 00:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,144.0 +2026-03-22 20:38:00,2026-03-23 07:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,1,101.21 +2026-03-25 21:24:00,2026-03-27 04:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,0,100.0 +2026-02-20 23:53:00,2026-02-22 20:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,0,119.4 +2026-04-03 22:37:00,2026-04-05 11:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,0,113.36 +2026-02-21 00:37:57,2026-02-21 02:00:00,NBA,Boston Celtics,Milwaukee Bucks,-1.0,0.0,0.122,Fanduel,POINTS_SPREAD,4.9,0,100.0 +2026-03-03 07:36:00,2026-03-04 02:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,219.6,0,109.0 +2026-03-14 07:23:08,2026-03-14 06:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,53.8,0.923,Fanduel,POINTS_TOTAL,56.7,0,122.11 +2026-02-26 01:58:00,2026-02-28 06:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,21.5,0,104.68 +2026-03-16 14:11:00,2026-03-19 06:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.9,0,102.42 +2026-02-28 20:48:45,2026-02-28 21:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.132,Fanduel,MONEYLINE,0.0,NA,115.34 +2026-03-28 15:07:00,2026-03-31 08:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,224.6,1,100.57 +2026-04-18 19:40:00,2026-04-19 18:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,130.52 +2026-03-19 09:43:45,2026-03-19 08:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.932,BetMGM,MONEYLINE,0.0,NA,124.73 +2026-03-24 13:44:00,2026-03-27 00:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.2,1,110.24 +2026-04-02 15:16:00,2026-04-02 22:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,144.07 +2026-03-22 03:12:02,2026-03-22 03:00:00,NFL,Detroit Lions,San Francisco 49ers,-2.4,0.0,0.328,BetMGM,POINTS_SPREAD,4.6,1,100.0 +2026-04-06 08:48:52,2026-04-06 08:00:00,NBA,Golden State Warriors,Boston Celtics,-1.5,0.0,0.316,BetMGM,POINTS_SPREAD,2.0,0,109.42 +2026-02-23 12:14:30,2026-02-23 12:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,13.1,0.125,Fanduel,POINTS_TOTAL,8.3,1,100.92 +2026-03-28 15:59:00,2026-03-29 19:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,0,116.67 +2026-03-07 06:35:00,2026-03-08 09:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,40.8,1,100.0 +2026-04-07 16:05:00,2026-04-10 06:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.6,0,143.91 +2026-03-15 10:57:31,2026-03-15 11:00:00,NFL,Kansas City Chiefs,Miami Dolphins,3.1,0.0,0.314,Fanduel,POINTS_SPREAD,4.4,1,127.83 +2026-03-19 01:35:00,2026-03-21 04:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,150.51 +2026-04-15 05:30:00,2026-04-17 12:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,210.8,1,113.87 +2026-02-20 05:40:00,2026-02-20 18:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-17 04:51:00,2026-03-19 22:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,1,110.28 +2026-03-10 03:02:00,2026-03-12 04:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,139.73 +2026-02-25 17:16:32,2026-02-25 15:00:00,NFL,Baltimore Ravens,Dallas Cowboys,2.8,0.0,0.803,BetMGM,POINTS_SPREAD,3.3,1,112.05 +2026-03-16 23:41:24,2026-03-16 23:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,32.3,0.48,BetMGM,POINTS_TOTAL,33.7,1,100.0 +2026-03-04 03:46:00,2026-03-05 12:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,113.88 +2026-03-21 20:28:20,2026-03-21 20:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.463,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-04 03:02:00,2026-03-05 19:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,130.4 +2026-04-17 16:43:08,2026-04-17 17:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,38.2,0.273,Fanduel,POINTS_TOTAL,38.5,1,100.0 +2026-04-07 03:28:00,2026-04-09 08:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,108.97 +2026-03-13 09:51:00,2026-03-15 01:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,144.06 +2026-04-17 04:30:51,2026-04-17 06:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.177,Fanduel,MONEYLINE,0.0,NA,163.44 +2026-03-27 22:03:00,2026-03-29 21:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,230.5,1,100.02 +2026-03-23 19:42:00,2026-03-25 20:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,153.88 +2026-03-10 07:24:00,2026-03-10 23:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,1,104.3 +2026-03-15 23:29:00,2026-03-16 13:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.8,1,108.17 +2026-03-01 09:50:00,2026-03-01 15:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,8.3,0,106.86 +2026-04-01 14:53:00,2026-04-03 12:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,154.8 +2026-04-03 19:07:00,2026-04-05 12:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,49.6,0,107.78 +2026-03-15 08:20:00,2026-03-15 16:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,7.3,1,110.6 +2026-03-07 23:43:00,2026-03-09 15:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,224.6,1,119.63 +2026-02-25 02:56:00,2026-02-26 02:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,31.6,0,111.57 +2026-03-20 06:11:00,2026-03-22 07:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-30 13:08:40,2026-03-30 11:00:00,NFL,Buffalo Bills,Baltimore Ravens,-1.5,0.0,0.776,Fanduel,POINTS_SPREAD,0.5,1,106.94 +2026-04-21 11:23:00,2026-04-21 12:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,135.59 +2026-04-19 10:35:00,2026-04-20 07:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,243.1,0,100.0 +2026-04-08 01:16:00,2026-04-10 20:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-16 15:39:46,2026-03-16 16:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.071,Fanduel,MONEYLINE,0.0,NA,167.64 +2026-04-11 17:59:37,2026-04-11 17:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,66.6,0.709,Fanduel,POINTS_TOTAL,71.9,1,114.57 +2026-03-23 09:42:00,2026-03-23 23:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.8,1,100.0 +2026-03-23 19:11:00,2026-03-25 12:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,104.65 +2026-03-01 02:21:57,2026-03-01 01:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,57.3,0.622,BetMGM,POINTS_TOTAL,60.8,1,108.08 +2026-03-06 23:34:00,2026-03-07 21:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,134.96 +2026-03-17 19:11:00,2026-03-17 20:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,4.6,0.0,0.35,Fanduel,POINTS_SPREAD,0.7,1,100.0 +2026-03-27 18:47:00,2026-03-29 13:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,116.33 +2026-04-08 05:21:00,2026-04-10 17:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,42.9,1,100.0 +2026-02-25 10:06:28,2026-02-25 09:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,8.1,0.786,Fanduel,POINTS_TOTAL,15.9,0,105.77 +2026-02-27 03:13:00,2026-02-28 19:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,134.31 +2026-03-16 12:03:00,2026-03-18 18:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,56.1,1,107.22 +2026-03-20 17:13:00,2026-03-22 21:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,1,100.0 +2026-02-28 11:00:00,2026-03-01 22:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,114.41 +2026-03-18 13:07:00,2026-03-18 15:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,0,100.0 +2026-04-14 03:24:00,2026-04-14 08:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,43.2,0,115.63 +2026-02-22 07:31:00,2026-02-24 05:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,12.4,1,111.94 +2026-02-24 08:18:48,2026-02-24 10:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,40.2,0.11,Fanduel,POINTS_TOTAL,34.8,1,100.0 +2026-03-26 09:23:00,2026-03-28 04:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.9,1,129.38 +2026-04-08 16:56:00,2026-04-11 08:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-16 02:55:00,2026-04-18 08:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,114.71 +2026-03-25 07:10:58,2026-03-25 06:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.811,Fanduel,MONEYLINE,0.0,NA,169.5 +2026-03-08 19:48:00,2026-03-11 06:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-14 14:01:12,2026-04-14 13:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,-3.9,0.0,0.84,BetMGM,POINTS_SPREAD,0.2,1,134.23 +2026-04-05 22:38:00,2026-04-05 23:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,131.05 +2026-03-08 09:43:00,2026-03-10 17:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,0,100.0 +2026-03-21 23:52:00,2026-03-23 02:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,1,104.42 +2026-02-21 15:11:00,2026-02-22 02:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,39.6,0,108.96 +2026-03-23 12:16:00,2026-03-25 22:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-20 16:47:00,2026-03-22 18:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-24 07:57:00,2026-03-25 09:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,1,100.0 +2026-03-01 03:28:00,2026-03-03 03:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,139.83 +2026-02-28 17:16:27,2026-02-28 17:00:00,NFL,San Francisco 49ers,Dallas Cowboys,10.4,0.0,0.497,Fanduel,POINTS_SPREAD,1.0,1,100.0 +2026-04-16 12:06:00,2026-04-18 00:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,0,109.78 +2026-02-27 01:45:00,2026-03-01 19:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,1,103.52 +2026-03-30 05:40:00,2026-03-31 04:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,9.5,1,114.53 +2026-04-08 11:07:00,2026-04-09 19:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.58 +2026-03-29 17:23:00,2026-03-29 22:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,215.4,0,104.38 +2026-03-12 20:05:36,2026-03-12 20:00:00,NHL,Florida Panthers,Vegas Golden Knights,1.9,0.0,0.37,Fanduel,POINTS_SPREAD,3.3,1,102.89 +2026-03-01 15:50:00,2026-03-03 19:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.9,1,128.5 +2026-03-16 06:58:00,2026-03-16 14:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,47.9,1,108.21 +2026-02-23 20:25:00,2026-02-26 04:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-28 01:30:37,2026-03-28 02:00:00,NBA,Dallas Mavericks,Denver Nuggets,2.0,0.0,0.259,Fanduel,POINTS_SPREAD,0.6,1,100.0 +2026-02-21 15:09:00,2026-02-21 18:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.2,1,103.25 +2026-03-13 21:09:00,2026-03-14 16:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,29.5,0,121.84 +2026-04-13 17:05:00,2026-04-14 10:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,142.92 +2026-04-17 09:21:00,2026-04-20 03:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,0,100.0 +2026-04-19 07:48:00,2026-04-21 00:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,120.24 +2026-04-16 15:49:00,2026-04-17 01:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,0,135.63 +2026-03-07 14:57:00,2026-03-09 23:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.7,1,108.4 +2026-04-12 19:55:00,2026-04-13 07:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,59.6,0,100.0 +2026-04-11 23:28:00,2026-04-12 08:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,125.25 +2026-03-25 05:36:00,2026-03-25 10:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,148.43 +2026-04-05 01:16:03,2026-04-05 01:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,38.0,0.867,Fanduel,POINTS_TOTAL,33.0,1,100.0 +2026-04-20 18:34:20,2026-04-20 18:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.663,BetMGM,MONEYLINE,0.0,NA,138.11 +2026-03-26 15:50:00,2026-03-27 04:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,7.2,0,110.56 +2026-03-21 12:16:00,2026-03-23 23:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.0,1,147.83 +2026-04-18 20:21:00,2026-04-19 02:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,124.08 +2026-03-18 09:59:00,2026-03-19 16:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.9,1,104.1 +2026-04-05 10:12:00,2026-04-06 06:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,5.8,0,115.1 +2026-03-24 20:26:00,2026-03-27 04:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,1,130.73 +2026-04-08 10:41:43,2026-04-08 10:00:00,NFL,San Francisco 49ers,Baltimore Ravens,2.7,0.0,0.454,Fanduel,POINTS_SPREAD,0.2,0,123.38 +2026-03-15 03:21:07,2026-03-15 03:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,14.9,0.534,BetMGM,POINTS_TOTAL,12.9,0,100.0 +2026-02-21 11:20:00,2026-02-23 04:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.6,1,124.18 +2026-02-20 19:42:00,2026-02-22 14:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,61.2,0,118.74 +2026-03-30 01:52:16,2026-03-30 02:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.146,BetMGM,MONEYLINE,0.0,NA,114.48 +2026-04-08 15:43:00,2026-04-09 05:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,223.0,1,100.0 +2026-02-27 21:02:00,2026-02-28 02:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,15.6,1,100.0 +2026-02-24 05:13:00,2026-02-26 01:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,133.97 +2026-02-20 07:15:00,2026-02-22 19:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.3,0,100.0 +2026-02-28 05:08:31,2026-02-28 04:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.9,0.0,0.814,Fanduel,POINTS_SPREAD,0.5,1,107.78 +2026-04-19 16:02:00,2026-04-20 01:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,186.78 +2026-04-19 00:39:00,2026-04-20 21:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,1,117.7 +2026-03-21 09:53:07,2026-03-21 11:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.184,BetMGM,MONEYLINE,0.0,NA,131.58 +2026-04-15 19:08:00,2026-04-17 04:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.5,1,110.84 +2026-03-27 23:24:00,2026-03-29 16:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,6.4,0,117.05 +2026-03-18 23:28:00,2026-03-19 18:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,203.8,0,110.4 +2026-03-07 10:46:00,2026-03-08 16:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,218.0,0,112.81 +2026-03-23 01:54:00,2026-03-24 02:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,177.23 +2026-02-23 10:48:00,2026-02-24 16:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,30.9,0,120.79 +2026-04-04 09:03:00,2026-04-05 19:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,246.4,1,122.93 +2026-02-24 20:45:55,2026-02-24 21:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,11.0,0.294,BetMGM,POINTS_TOTAL,9.5,0,113.8 +2026-04-10 16:33:00,2026-04-11 05:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,234.7,1,100.19 +2026-02-23 12:54:00,2026-02-25 02:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.9,0,100.0 +2026-03-12 04:11:00,2026-03-14 17:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,49.0,1,100.0 +2026-03-02 22:42:36,2026-03-02 23:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,13.6,0.07,BetMGM,POINTS_TOTAL,11.4,1,108.65 +2026-04-03 16:38:00,2026-04-05 08:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,105.74 +2026-03-29 10:18:00,2026-03-29 12:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,19.7,1,100.0 +2026-04-07 05:36:00,2026-04-09 20:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-15 23:53:00,2026-03-17 07:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,224.4,0,112.22 +2026-03-09 00:31:00,2026-03-10 05:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,51.1,1,129.53 +2026-03-04 19:30:00,2026-03-06 13:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.9,0,100.0 +2026-03-06 03:47:00,2026-03-06 23:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,0,124.21 +2026-04-05 12:36:00,2026-04-07 08:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,145.17 +2026-03-30 18:01:15,2026-03-30 18:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,37.3,0.657,Fanduel,POINTS_TOTAL,33.3,0,109.59 +2026-04-18 00:10:00,2026-04-18 03:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,109.28 +2026-03-18 08:25:00,2026-03-19 20:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,139.49 +2026-04-18 23:21:00,2026-04-20 21:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,116.58 +2026-04-06 05:21:00,2026-04-07 08:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,18.4,0,100.0 +2026-03-03 14:41:21,2026-03-03 14:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,221.4,0.502,Fanduel,POINTS_TOTAL,219.5,1,122.35 +2026-04-14 14:01:00,2026-04-16 11:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.9,1,113.37 +2026-02-23 00:12:54,2026-02-22 22:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.955,BetMGM,MONEYLINE,0.0,NA,112.83 +2026-04-16 05:47:00,2026-04-19 04:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-07 20:41:00,2026-04-10 06:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,48.4,0,111.31 +2026-03-08 15:37:00,2026-03-08 18:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,119.54 +2026-02-22 18:08:00,2026-02-23 20:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,54.7,1,127.46 +2026-04-10 20:10:03,2026-04-10 21:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.267,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-17 18:23:00,2026-04-18 17:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,198.41 +2026-04-09 06:23:00,2026-04-10 01:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,13.1,0,100.0 +2026-04-10 05:33:00,2026-04-11 01:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,0,106.54 +2026-02-28 05:59:00,2026-03-02 22:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,109.41 +2026-03-22 06:09:39,2026-03-22 04:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.887,Fanduel,MONEYLINE,0.0,NA,122.7 +2026-04-09 02:11:00,2026-04-09 06:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,0,110.52 +2026-03-31 11:17:27,2026-03-31 09:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,16.2,0.947,BetMGM,POINTS_TOTAL,22.9,0,101.29 +2026-03-18 11:03:00,2026-03-19 21:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,100.0 +2026-04-20 18:48:56,2026-04-20 18:00:00,NBA,Denver Nuggets,Miami Heat,2.0,0.0,0.683,BetMGM,POINTS_SPREAD,1.6,0,112.54 +2026-03-16 04:33:00,2026-03-17 06:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,1,100.0 +2026-03-26 01:55:00,2026-03-26 15:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,1,120.2 +2026-03-07 06:06:00,2026-03-07 13:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,112.92 +2026-03-14 11:30:27,2026-03-14 12:00:00,NHL,Colorado Avalanche,Edmonton Oilers,1.1,0.0,0.347,Fanduel,POINTS_SPREAD,0.6,1,100.0 +2026-04-20 09:48:00,2026-04-21 05:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,1,101.53 +2026-04-05 07:23:48,2026-04-05 07:00:00,NFL,San Francisco 49ers,Baltimore Ravens,-5.8,0.0,0.61,Fanduel,POINTS_SPREAD,4.5,1,190.0 +2026-04-08 04:24:00,2026-04-09 22:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,8.2,0,115.45 +2026-03-06 12:21:12,2026-03-06 12:00:00,NBA,Golden State Warriors,Boston Celtics,-3.2,0.0,0.84,Fanduel,POINTS_SPREAD,4.2,1,127.73 +2026-02-22 22:36:00,2026-02-24 15:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,132.69 +2026-04-13 07:56:00,2026-04-15 05:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,168.14 +2026-03-02 11:08:00,2026-03-05 04:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,142.81 +2026-03-17 03:02:00,2026-03-19 10:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,141.06 +2026-02-27 15:55:48,2026-02-27 16:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.56,Fanduel,MONEYLINE,0.0,NA,123.34 +2026-03-19 01:31:08,2026-03-19 01:00:00,NFL,San Francisco 49ers,Baltimore Ravens,-2.2,0.0,0.423,BetMGM,POINTS_SPREAD,0.5,1,120.42 +2026-02-22 13:54:00,2026-02-25 00:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,173.43 +2026-03-19 22:18:00,2026-03-20 12:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,64.3,1,115.06 +2026-04-04 00:17:00,2026-04-06 03:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,107.53 +2026-03-28 10:19:00,2026-03-29 06:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,54.0,1,119.69 +2026-04-02 14:16:00,2026-04-03 17:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,1,100.0 +2026-03-26 05:31:44,2026-03-26 04:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,227.1,0.693,BetMGM,POINTS_TOTAL,226.7,0,108.82 +2026-04-08 21:29:00,2026-04-10 20:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,159.46 +2026-03-10 16:06:00,2026-03-11 08:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,0,100.0 +2026-04-16 23:41:00,2026-04-19 06:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.0,1,118.87 +2026-02-23 15:21:00,2026-02-25 04:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,1,117.23 +2026-04-15 16:09:00,2026-04-17 04:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,0,100.0 +2026-04-20 05:49:32,2026-04-20 05:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,234.9,0.653,Fanduel,POINTS_TOTAL,237.3,1,126.91 +2026-04-05 15:11:43,2026-04-05 16:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.304,BetMGM,MONEYLINE,0.0,NA,146.06 +2026-03-27 08:28:00,2026-03-29 20:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.6,1,114.19 +2026-03-02 01:18:00,2026-03-02 06:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,102.68 +2026-03-19 05:02:00,2026-03-19 22:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,127.63 +2026-04-03 02:09:00,2026-04-03 02:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.15,BetMGM,MONEYLINE,0.0,NA,121.4 +2026-04-15 19:37:00,2026-04-18 09:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,46.2,0,100.0 +2026-04-08 17:09:00,2026-04-10 11:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.3,1,136.24 +2026-04-19 12:48:00,2026-04-20 22:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,113.75 +2026-02-21 11:48:00,2026-02-23 20:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,5.2,1,100.0 +2026-04-08 05:19:00,2026-04-08 19:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,32.0,1,107.01 +2026-03-22 01:03:00,2026-03-24 19:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,105.37 +2026-04-04 16:37:00,2026-04-04 19:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,1,134.67 +2026-03-14 03:04:19,2026-03-14 04:00:00,NFL,Miami Dolphins,Detroit Lions,1.6,0.0,0.074,BetMGM,POINTS_SPREAD,2.8,1,100.0 +2026-04-03 12:49:00,2026-04-05 23:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,121.92 +2026-03-22 03:05:00,2026-03-24 13:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,155.88 +2026-03-21 03:08:38,2026-03-21 03:00:00,NHL,Florida Panthers,Carolina Hurricanes,2.2,0.0,0.798,Fanduel,POINTS_SPREAD,3.5,0,100.0 +2026-03-29 21:04:00,2026-03-30 08:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,0,100.0 +2026-03-01 14:11:28,2026-03-01 16:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.036,Fanduel,MONEYLINE,0.0,NA,160.2 +2026-04-10 15:03:00,2026-04-12 19:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,40.2,1,105.57 +2026-03-10 21:34:00,2026-03-11 02:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,235.1,1,100.0 +2026-02-28 18:15:37,2026-02-28 17:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.659,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-18 07:24:00,2026-04-20 07:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,5.3,0,100.0 +2026-03-28 04:34:56,2026-03-28 05:00:00,NBA,Golden State Warriors,Los Angeles Lakers,1.5,0.0,0.183,BetMGM,POINTS_SPREAD,1.2,1,100.0 +2026-03-19 07:00:00,2026-03-21 20:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,102.12 +2026-03-01 06:51:00,2026-03-02 10:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,0,161.11 +2026-03-03 08:43:00,2026-03-03 15:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-13 10:46:00,2026-04-15 14:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,4.8,1,102.23 +2026-03-19 09:47:31,2026-03-19 10:00:00,NFL,Philadelphia Eagles,Buffalo Bills,6.7,0.0,0.514,Fanduel,POINTS_SPREAD,3.2,0,120.98 +2026-03-05 12:33:00,2026-03-07 06:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,209.6,1,100.0 +2026-03-30 05:43:00,2026-04-02 03:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,235.2,0,107.15 +2026-04-17 07:15:00,2026-04-18 04:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,1,104.92 +2026-04-03 18:24:04,2026-04-03 18:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.206,BetMGM,MONEYLINE,0.0,NA,145.07 +2026-04-19 19:07:00,2026-04-21 06:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,130.06 +2026-04-20 07:20:00,2026-04-20 22:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.5,0,131.15 +2026-03-09 23:14:00,2026-03-12 15:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,207.3,1,100.0 +2026-02-25 05:17:44,2026-02-25 04:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.443,Fanduel,MONEYLINE,0.0,NA,138.45 +2026-04-04 17:01:16,2026-04-04 16:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,217.1,0.946,BetMGM,POINTS_TOTAL,215.0,0,112.28 +2026-02-23 14:14:00,2026-02-24 22:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,0,100.0 +2026-04-04 19:42:00,2026-04-05 22:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,7.4,0,110.97 +2026-02-28 21:48:00,2026-03-02 03:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,118.8 +2026-03-05 11:28:00,2026-03-08 02:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,137.85 +2026-03-18 23:57:00,2026-03-20 01:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-19 02:34:57,2026-04-19 01:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,38.6,0.672,BetMGM,POINTS_TOTAL,41.2,1,117.78 +2026-03-24 00:47:24,2026-03-24 01:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,219.2,0.23,BetMGM,POINTS_TOTAL,216.1,0,100.27 +2026-03-15 20:52:00,2026-03-17 06:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-18 18:57:00,2026-03-19 02:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-27 01:20:34,2026-02-27 00:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,-2.0,0.0,0.831,Fanduel,POINTS_SPREAD,1.5,1,103.17 +2026-04-06 08:43:00,2026-04-08 01:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,4.9,1,102.8 +2026-03-06 04:28:00,2026-03-06 06:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,44.8,1,120.16 +2026-03-10 15:28:20,2026-03-10 14:00:00,NFL,Detroit Lions,Miami Dolphins,-0.2,0.0,0.663,Fanduel,POINTS_SPREAD,2.1,0,119.52 +2026-04-11 11:35:00,2026-04-12 02:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.5,0,117.75 +2026-04-18 02:33:00,2026-04-20 02:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,0,117.4 +2026-03-26 17:25:46,2026-03-26 18:00:00,NBA,Miami Heat,Denver Nuggets,0.0,234.1,0.421,Fanduel,POINTS_TOTAL,241.9,0,100.0 +2026-03-29 17:05:18,2026-03-29 16:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,11.6,0.585,Fanduel,POINTS_TOTAL,12.0,1,112.61 +2026-03-11 05:11:07,2026-03-11 06:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.334,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-26 01:12:00,2026-02-27 00:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,129.73 +2026-02-21 14:41:00,2026-02-23 04:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,134.69 +2026-03-17 00:12:00,2026-03-19 22:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.04 +2026-02-26 21:24:18,2026-02-26 23:00:00,NBA,Golden State Warriors,Boston Celtics,-2.5,0.0,0.185,Fanduel,POINTS_SPREAD,1.6,0,105.33 +2026-04-10 07:38:00,2026-04-13 03:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.3,0,100.0 +2026-04-08 11:53:00,2026-04-09 19:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,57.0,1,111.52 +2026-03-10 07:53:00,2026-03-12 02:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,226.3,1,119.72 +2026-04-05 10:27:00,2026-04-08 00:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-31 21:47:46,2026-03-31 21:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.821,Fanduel,MONEYLINE,0.0,NA,117.72 +2026-04-08 14:16:00,2026-04-09 10:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.8,1,105.11 +2026-03-16 15:34:00,2026-03-18 00:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.3,1,121.59 +2026-03-14 14:23:00,2026-03-16 08:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,1,100.0 +2026-04-11 19:44:00,2026-04-14 04:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,241.0,0,102.24 +2026-03-30 03:42:00,2026-03-30 23:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,140.87 +2026-03-13 11:28:00,2026-03-15 16:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,114.68 +2026-03-30 05:58:00,2026-03-31 18:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,122.89 +2026-03-04 02:35:44,2026-03-04 03:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.493,Fanduel,MONEYLINE,0.0,NA,122.12 +2026-02-28 15:33:00,2026-03-03 02:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.8,0,115.24 +2026-02-23 01:36:25,2026-02-23 03:00:00,NFL,Baltimore Ravens,San Francisco 49ers,1.3,0.0,0.269,Fanduel,POINTS_SPREAD,0.8,0,114.51 +2026-04-03 11:12:48,2026-04-03 12:00:00,NFL,Detroit Lions,Miami Dolphins,-2.5,0.0,0.46,Fanduel,POINTS_SPREAD,0.0,0,125.62 +2026-04-14 21:18:00,2026-04-16 09:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,12.8,1,125.33 +2026-03-26 19:51:00,2026-03-27 11:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,12.2,0,117.1 +2026-03-22 11:22:00,2026-03-22 19:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.0,1,104.01 +2026-04-17 22:24:08,2026-04-17 22:00:00,NHL,Vegas Golden Knights,Boston Bruins,-3.8,0.0,0.223,BetMGM,POINTS_SPREAD,2.0,1,121.2 +2026-02-17 16:38:00,2026-02-20 14:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,54.4,1,111.73 +2026-02-26 22:01:00,2026-02-28 04:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,1,100.0 +2026-04-20 11:49:08,2026-04-20 12:00:00,NBA,Dallas Mavericks,Boston Celtics,1.3,0.0,0.523,BetMGM,POINTS_SPREAD,2.2,0,117.16 +2026-03-30 23:08:26,2026-03-31 00:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.308,Fanduel,MONEYLINE,0.0,NA,149.66 +2026-03-18 04:29:15,2026-03-18 04:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.357,Fanduel,MONEYLINE,0.0,NA,131.55 +2026-04-04 06:16:00,2026-04-04 07:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.45,BetMGM,MONEYLINE,0.0,NA,108.99 +2026-03-23 17:53:51,2026-03-23 17:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,3.5,0.627,BetMGM,POINTS_TOTAL,3.5,1,106.4 +2026-02-28 08:50:00,2026-03-02 06:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,31.6,1,110.83 +2026-03-24 20:14:32,2026-03-24 19:00:00,NHL,Vegas Golden Knights,New York Rangers,1.7,0.0,0.803,Fanduel,POINTS_SPREAD,0.1,1,100.0 +2026-02-23 01:53:00,2026-02-23 14:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-13 03:09:00,2026-04-15 15:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,0,100.0 +2026-04-03 15:56:00,2026-04-04 08:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,66.7,0,100.0 +2026-02-28 09:36:00,2026-03-01 15:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,123.03 +2026-04-09 07:28:16,2026-04-09 08:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,216.3,0.396,BetMGM,POINTS_TOTAL,213.2,0,116.05 +2026-02-24 21:40:00,2026-02-26 23:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-12 08:02:00,2026-03-13 01:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,208.0,1,100.0 +2026-03-23 21:00:00,2026-03-24 16:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.07 +2026-03-16 01:33:00,2026-03-16 22:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,155.04 +2026-04-19 00:19:00,2026-04-20 01:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,1,125.25 +2026-04-11 18:40:00,2026-04-14 16:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,64.1,1,123.9 +2026-02-21 20:50:00,2026-02-23 03:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,124.17 +2026-03-14 23:41:00,2026-03-15 19:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,7.2,1,109.81 +2026-04-19 02:02:00,2026-04-20 08:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,129.46 +2026-03-22 20:17:00,2026-03-25 00:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,0,114.53 +2026-02-21 22:42:33,2026-02-21 23:00:00,NBA,Golden State Warriors,Denver Nuggets,-4.2,0.0,0.342,Fanduel,POINTS_SPREAD,4.6,0,100.0 +2026-03-03 00:33:00,2026-03-03 06:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,0,102.59 +2026-03-05 00:36:00,2026-03-06 22:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,175.39 +2026-02-20 07:30:00,2026-02-21 17:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,109.25 +2026-04-19 19:23:00,2026-04-20 03:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.6 +2026-04-13 09:44:46,2026-04-13 11:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.121,Fanduel,MONEYLINE,0.0,NA,121.87 +2026-03-20 01:49:00,2026-03-20 22:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,0,100.0 +2026-04-17 19:47:43,2026-04-17 19:00:00,NHL,New York Rangers,Florida Panthers,-3.5,0.0,0.554,Fanduel,POINTS_SPREAD,0.3,0,104.19 +2026-03-15 18:54:16,2026-03-15 17:00:00,NHL,Colorado Avalanche,Boston Bruins,1.7,0.0,0.846,Fanduel,POINTS_SPREAD,1.1,0,121.1 +2026-03-25 02:00:00,2026-03-27 21:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,1,107.15 +2026-02-23 08:19:14,2026-02-23 07:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,38.1,0.918,BetMGM,POINTS_TOTAL,40.3,1,103.52 +2026-02-22 06:37:00,2026-02-23 20:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,127.24 +2026-03-27 00:09:00,2026-03-29 17:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-22 21:01:00,2026-03-24 06:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,0,100.0 +2026-03-08 23:14:00,2026-03-10 07:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,6.4,0,100.0 +2026-03-13 17:39:00,2026-03-14 13:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.6,0,104.06 +2026-03-07 05:35:07,2026-03-07 05:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.534,Fanduel,MONEYLINE,0.0,NA,122.89 +2026-03-22 19:20:00,2026-03-25 18:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,115.39 +2026-04-05 22:39:00,2026-04-08 13:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.3,0,127.19 +2026-04-12 08:00:00,2026-04-13 22:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.2,0,100.0 +2026-03-03 02:37:00,2026-03-06 02:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,237.3,1,105.6 +2026-02-24 15:58:24,2026-02-24 16:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,216.2,0.28,Fanduel,POINTS_TOTAL,213.6,1,125.28 +2026-02-18 21:19:00,2026-02-21 08:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,36.2,1,126.97 +2026-03-26 04:27:00,2026-03-28 11:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,0,137.76 +2026-03-23 11:45:16,2026-03-23 12:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.546,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-13 21:26:00,2026-04-15 20:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,43.4,1,107.4 +2026-04-07 05:26:31,2026-04-07 07:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,44.0,0.114,Fanduel,POINTS_TOTAL,39.6,0,118.42 +2026-04-13 09:42:00,2026-04-13 19:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,0,100.0 +2026-03-29 21:16:00,2026-03-30 12:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.7,0,133.22 +2026-03-24 12:15:00,2026-03-24 23:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,154.73 +2026-02-23 02:56:07,2026-02-23 03:00:00,NFL,San Francisco 49ers,Dallas Cowboys,-0.4,0.0,0.234,BetMGM,POINTS_SPREAD,4.6,0,100.0 +2026-02-27 03:15:00,2026-03-01 19:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,231.4,0,104.22 +2026-03-21 11:27:00,2026-03-21 20:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,13.2,0,103.45 +2026-04-17 23:00:00,2026-04-19 00:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,236.7,1,106.99 +2026-03-20 18:35:00,2026-03-21 14:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,0,100.0 +2026-03-15 20:15:46,2026-03-15 22:00:00,NBA,Miami Heat,Boston Celtics,-0.3,0.0,0.171,BetMGM,POINTS_SPREAD,5.6,0,125.08 +2026-04-19 18:36:00,2026-04-20 00:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,57.6,0,118.68 +2026-04-09 00:34:00,2026-04-11 06:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-09 15:46:00,2026-03-11 09:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.6,0,159.94 +2026-03-03 23:16:21,2026-03-03 22:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.602,Fanduel,MONEYLINE,0.0,NA,124.92 +2026-04-11 01:46:00,2026-04-11 03:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,40.8,0,100.0 +2026-04-11 06:23:00,2026-04-12 11:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,9.4,0,100.0 +2026-03-27 01:01:00,2026-03-28 04:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.9,0,100.0 +2026-04-08 09:51:00,2026-04-10 12:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,153.66 +2026-03-26 06:07:00,2026-03-28 06:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.7,1,101.09 +2026-03-07 23:31:00,2026-03-10 10:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,0,114.76 +2026-04-06 06:10:00,2026-04-08 13:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,1,132.66 +2026-03-19 06:41:00,2026-03-21 04:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,157.85 +2026-03-29 06:08:00,2026-04-01 02:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,46.6,1,104.53 +2026-03-03 18:48:00,2026-03-05 20:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,114.41 +2026-02-23 23:17:00,2026-02-25 10:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,242.8,1,118.79 +2026-03-26 23:41:00,2026-03-28 02:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.6,0,118.63 +2026-03-26 13:53:00,2026-03-28 22:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.3,0,100.0 +2026-04-11 06:54:00,2026-04-12 07:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,1,103.85 +2026-03-06 05:07:00,2026-03-07 03:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-04 09:29:50,2026-03-04 07:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,234.2,0.938,BetMGM,POINTS_TOTAL,226.8,0,136.94 +2026-04-01 04:24:00,2026-04-02 16:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,224.7,0,100.0 +2026-04-13 09:57:26,2026-04-13 11:00:00,NBA,Miami Heat,Los Angeles Lakers,-0.2,0.0,0.308,BetMGM,POINTS_SPREAD,1.6,0,118.31 +2026-04-12 16:20:00,2026-04-13 00:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.7,1,112.19 +2026-02-28 18:57:12,2026-02-28 18:00:00,NFL,Miami Dolphins,Baltimore Ravens,-1.7,0.0,0.84,BetMGM,POINTS_SPREAD,2.1,0,121.92 +2026-02-27 03:32:06,2026-02-27 03:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.495,BetMGM,MONEYLINE,0.0,NA,123.53 +2026-02-21 16:38:00,2026-02-23 08:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,125.57 +2026-04-02 23:54:00,2026-04-03 03:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,107.85 +2026-03-06 06:00:00,2026-03-06 08:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,104.01 +2026-03-25 14:05:10,2026-03-25 13:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,220.5,0.501,BetMGM,POINTS_TOTAL,221.6,0,100.94 +2026-02-23 22:09:00,2026-02-26 05:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,1,127.18 +2026-03-03 10:44:00,2026-03-04 06:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,222.5,1,111.61 +2026-03-25 06:50:00,2026-03-27 20:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,1,100.0 +2026-03-01 12:39:54,2026-03-01 13:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,238.7,0.605,BetMGM,POINTS_TOTAL,245.4,0,100.0 +2026-04-02 04:43:00,2026-04-03 10:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,1,100.0 +2026-03-26 08:09:00,2026-03-29 00:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,1,100.0 +2026-03-16 16:21:22,2026-03-16 14:00:00,NHL,New York Rangers,Edmonton Oilers,-1.4,0.0,0.891,BetMGM,POINTS_SPREAD,1.5,1,132.44 +2026-02-25 00:12:00,2026-02-27 07:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,113.84 +2026-03-02 12:21:15,2026-03-02 12:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,244.2,0.707,Fanduel,POINTS_TOTAL,241.0,0,114.6 +2026-03-20 01:36:15,2026-03-20 00:00:00,NBA,Phoenix Suns,Dallas Mavericks,-1.2,0.0,0.957,Fanduel,POINTS_SPREAD,2.5,1,112.19 +2026-04-02 09:30:00,2026-04-02 17:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,110.48 +2026-03-18 12:13:10,2026-03-18 14:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,1.2,0.0,0.051,Fanduel,POINTS_SPREAD,2.2,1,127.77 +2026-04-10 08:25:20,2026-04-10 08:00:00,NHL,Vegas Golden Knights,Florida Panthers,-0.7,0.0,0.313,Fanduel,POINTS_SPREAD,1.4,0,100.0 +2026-03-06 17:12:00,2026-03-07 14:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,0,128.63 +2026-04-14 17:46:00,2026-04-16 22:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-29 08:32:00,2026-04-01 02:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,111.4 +2026-03-30 18:05:00,2026-04-01 23:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,122.98 +2026-04-04 14:19:00,2026-04-05 22:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,4.3,1,113.3 +2026-03-27 15:39:00,2026-03-28 16:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.9,0,100.0 +2026-04-19 22:29:00,2026-04-20 11:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,131.31 +2026-04-05 04:37:09,2026-04-05 02:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,55.3,0.912,BetMGM,POINTS_TOTAL,54.1,1,108.27 +2026-04-09 04:32:49,2026-04-09 05:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,226.6,0.149,BetMGM,POINTS_TOTAL,225.0,1,100.0 +2026-03-06 05:36:00,2026-03-08 05:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,0,100.46 +2026-03-07 05:39:00,2026-03-09 02:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.8,1,108.86 +2026-03-21 11:48:00,2026-03-23 09:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.4,1,133.21 +2026-03-21 05:59:04,2026-03-21 04:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.706,BetMGM,MONEYLINE,0.0,NA,170.02 +2026-03-26 08:38:00,2026-03-27 03:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,120.39 +2026-03-31 01:19:00,2026-04-01 10:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.8,1,100.0 +2026-04-04 22:33:49,2026-04-04 20:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,-2.1,0.0,0.949,BetMGM,POINTS_SPREAD,2.4,0,100.0 +2026-03-09 06:16:00,2026-03-09 19:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,222.0,1,119.3 +2026-03-24 09:37:00,2026-03-26 13:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,18.7,1,117.11 +2026-02-23 08:45:00,2026-02-25 16:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.9,1,138.45 +2026-04-15 14:47:31,2026-04-15 14:00:00,NBA,Boston Celtics,Los Angeles Lakers,2.1,0.0,0.664,Fanduel,POINTS_SPREAD,0.1,1,100.0 +2026-03-28 02:30:00,2026-03-29 11:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,0,100.0 +2026-03-20 07:13:00,2026-03-20 21:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.9,0,132.8 +2026-03-29 13:58:31,2026-03-29 14:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,3.5,0.214,Fanduel,POINTS_TOTAL,3.5,1,121.65 +2026-03-22 17:55:00,2026-03-23 13:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,23.4,1,108.91 +2026-03-07 23:20:00,2026-03-08 22:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,245.4,0,100.0 +2026-04-01 16:21:31,2026-04-01 14:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.4,0.0,0.914,BetMGM,POINTS_SPREAD,1.4,1,107.37 +2026-04-17 22:55:00,2026-04-20 00:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,111.69 +2026-03-08 10:56:51,2026-03-08 12:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.327,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-08 08:40:39,2026-04-08 07:00:00,NBA,Miami Heat,Denver Nuggets,-2.9,0.0,0.737,Fanduel,POINTS_SPREAD,2.7,0,100.0 +2026-03-13 21:31:00,2026-03-15 08:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,0,100.0 +2026-02-26 23:39:00,2026-03-01 10:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,0,157.61 +2026-02-28 12:22:56,2026-02-28 12:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.333,BetMGM,MONEYLINE,0.0,NA,161.34 +2026-02-18 07:32:00,2026-02-21 07:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,116.09 +2026-03-08 03:19:00,2026-03-10 07:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,9.9,1,121.22 +2026-03-31 12:24:00,2026-04-01 09:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.3,1,108.27 +2026-03-03 12:04:00,2026-03-03 12:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.6,BetMGM,MONEYLINE,0.0,NA,102.24 +2026-02-23 17:25:22,2026-02-23 16:00:00,NBA,Denver Nuggets,Miami Heat,0.0,232.4,0.541,Fanduel,POINTS_TOTAL,233.2,0,111.77 +2026-04-16 17:54:00,2026-04-17 22:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,5.2,0,100.0 +2026-02-23 20:47:33,2026-02-23 20:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,39.1,0.442,BetMGM,POINTS_TOTAL,43.1,0,100.0 +2026-04-07 17:34:30,2026-04-07 18:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,3.5,0.075,Fanduel,POINTS_TOTAL,6.9,1,128.96 +2026-04-07 07:29:37,2026-04-07 06:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,33.5,0.509,Fanduel,POINTS_TOTAL,35.4,1,103.93 +2026-03-11 17:52:00,2026-03-12 03:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,1,106.5 +2026-04-04 13:46:00,2026-04-05 17:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-23 22:57:28,2026-02-23 21:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,239.9,0.836,BetMGM,POINTS_TOTAL,235.6,0,119.08 +2026-03-19 14:31:10,2026-03-19 12:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,1.8,0.0,0.901,Fanduel,POINTS_SPREAD,3.0,1,110.28 +2026-02-19 13:32:00,2026-02-21 19:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,1,104.68 +2026-04-12 17:36:55,2026-04-12 19:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,224.4,0.144,Fanduel,POINTS_TOTAL,220.5,1,107.13 +2026-04-19 00:26:32,2026-04-19 00:00:00,NBA,Phoenix Suns,Los Angeles Lakers,5.9,0.0,0.403,Fanduel,POINTS_SPREAD,2.9,1,118.18 +2026-02-23 02:15:00,2026-02-24 23:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,59.0,0,107.41 +2026-04-02 12:58:00,2026-04-03 21:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,233.2,1,100.04 +2026-04-20 18:06:15,2026-04-20 18:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,12.0,0.207,BetMGM,POINTS_TOTAL,6.6,1,100.0 +2026-03-03 19:36:21,2026-03-03 18:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,7.8,0.902,Fanduel,POINTS_TOTAL,3.6,0,120.73 +2026-02-21 11:20:00,2026-02-22 08:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,115.5 +2026-03-16 18:00:08,2026-03-16 17:00:00,NHL,Boston Bruins,Colorado Avalanche,-0.9,0.0,0.873,Fanduel,POINTS_SPREAD,1.2,0,100.0 +2026-03-01 07:58:00,2026-03-03 02:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,0,106.54 +2026-03-10 18:42:00,2026-03-13 07:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,200.3,0,115.14 +2026-03-13 13:50:00,2026-03-15 00:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,130.92 +2026-02-26 10:35:37,2026-02-26 08:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.959,Fanduel,MONEYLINE,0.0,NA,140.43 +2026-04-08 00:42:00,2026-04-10 06:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,5.3,0,107.06 +2026-03-18 20:21:00,2026-03-21 15:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.1,0,107.73 +2026-03-01 00:11:00,2026-03-01 14:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,33.1,1,100.0 +2026-02-25 06:37:00,2026-02-26 11:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,228.7,0,100.0 +2026-02-26 18:05:00,2026-03-01 07:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,219.1,0,100.0 +2026-03-23 04:31:00,2026-03-26 03:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,1,100.0 +2026-04-12 23:43:00,2026-04-15 02:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,213.7,0,100.0 +2026-03-12 10:52:00,2026-03-13 11:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,1,126.85 +2026-04-21 02:14:00,2026-04-21 10:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.7,1,111.95 +2026-03-12 02:00:00,2026-03-14 16:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,1,125.71 +2026-02-21 02:42:20,2026-02-21 03:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.363,Fanduel,MONEYLINE,0.0,NA,123.93 +2026-04-13 20:05:00,2026-04-15 00:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,58.8,0,115.98 +2026-03-03 13:26:36,2026-03-03 13:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.17,BetMGM,MONEYLINE,0.0,NA,145.82 +2026-03-27 21:47:00,2026-03-29 07:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,220.6,0,100.0 +2026-03-21 05:35:00,2026-03-23 21:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,43.8,1,120.95 +2026-03-13 10:35:43,2026-03-13 12:00:00,NBA,Phoenix Suns,Miami Heat,0.0,228.7,0.054,Fanduel,POINTS_TOTAL,231.0,0,114.62 +2026-04-13 05:34:00,2026-04-15 04:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,1,116.8 +2026-02-24 22:29:32,2026-02-24 23:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,250.0,0.253,BetMGM,POINTS_TOTAL,246.3,1,101.2 +2026-04-11 12:13:00,2026-04-12 21:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,0,100.0 +2026-03-18 05:47:00,2026-03-20 19:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,160.11 +2026-04-18 13:41:00,2026-04-21 00:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,138.73 +2026-03-18 19:48:34,2026-03-18 19:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,7.1,0.0,0.731,Fanduel,POINTS_SPREAD,3.3,0,117.87 +2026-02-21 19:14:00,2026-02-23 19:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,174.96 +2026-04-13 06:12:00,2026-04-14 14:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,138.83 +2026-03-29 10:55:00,2026-03-31 07:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,70.1,0,108.13 +2026-03-03 05:41:00,2026-03-04 09:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,8.2,1,128.47 +2026-03-19 01:19:02,2026-03-19 00:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,4.1,0.728,BetMGM,POINTS_TOTAL,3.5,1,116.07 +2026-02-19 20:17:00,2026-02-21 14:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,145.64 +2026-02-21 00:51:24,2026-02-21 01:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.53,Fanduel,MONEYLINE,0.0,NA,189.84 +2026-02-21 07:16:42,2026-02-21 07:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.515,Fanduel,MONEYLINE,0.0,NA,120.63 +2026-04-14 02:00:21,2026-04-14 00:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,47.6,0.702,BetMGM,POINTS_TOTAL,48.6,1,111.69 +2026-03-03 22:59:18,2026-03-03 23:00:00,NBA,Milwaukee Bucks,Golden State Warriors,6.5,0.0,0.485,BetMGM,POINTS_SPREAD,2.5,0,122.14 +2026-03-08 20:36:02,2026-03-08 21:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.228,BetMGM,MONEYLINE,0.0,NA,111.48 +2026-02-26 15:23:00,2026-02-28 15:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-28 21:01:00,2026-03-28 23:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.0,0,139.38 +2026-03-14 06:34:00,2026-03-17 03:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,51.5,1,115.58 +2026-04-08 11:02:37,2026-04-08 11:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,-0.8,0.0,0.159,Fanduel,POINTS_SPREAD,2.2,0,117.58 +2026-03-08 08:17:00,2026-03-10 09:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,45.3,1,114.46 +2026-03-03 11:04:00,2026-03-04 04:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,228.8,1,100.0 +2026-02-24 14:57:00,2026-02-25 10:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-07 03:51:00,2026-03-08 13:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,10.0,1,112.13 +2026-03-13 23:25:00,2026-03-15 06:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,4.1,0,102.39 +2026-03-18 00:33:00,2026-03-20 14:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,1,100.0 +2026-03-25 05:44:00,2026-03-25 23:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,104.82 +2026-03-13 02:38:00,2026-03-14 12:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,112.38 +2026-04-12 17:49:52,2026-04-12 18:00:00,NBA,Phoenix Suns,Boston Celtics,-2.0,0.0,0.066,Fanduel,POINTS_SPREAD,2.5,0,114.6 +2026-03-08 01:41:25,2026-03-08 01:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,-3.2,0.0,0.519,Fanduel,POINTS_SPREAD,2.5,0,100.0 +2026-04-12 23:58:49,2026-04-12 23:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.849,Fanduel,MONEYLINE,0.0,NA,116.45 +2026-03-21 19:45:00,2026-03-23 01:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,38.9,0,100.0 +2026-03-13 20:33:27,2026-03-13 22:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,58.8,0.047,Fanduel,POINTS_TOTAL,63.5,1,124.51 +2026-03-16 07:13:00,2026-03-18 22:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,0,111.72 +2026-03-05 13:12:33,2026-03-05 15:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,1.1,0.0,0.042,BetMGM,POINTS_SPREAD,2.1,1,100.0 +2026-03-06 20:24:39,2026-03-06 20:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,7.1,0.687,BetMGM,POINTS_TOTAL,13.4,1,114.95 +2026-03-19 15:23:00,2026-03-22 02:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,112.86 +2026-03-04 18:28:12,2026-03-04 18:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,14.8,0.54,Fanduel,POINTS_TOTAL,14.4,0,108.33 +2026-02-28 05:00:46,2026-02-28 03:00:00,NHL,Edmonton Oilers,Boston Bruins,-0.6,0.0,0.721,Fanduel,POINTS_SPREAD,3.0,1,100.95 +2026-04-19 06:21:27,2026-04-19 05:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.897,Fanduel,MONEYLINE,0.0,NA,120.07 +2026-03-07 00:30:00,2026-03-08 18:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.5,1,100.0 +2026-04-05 14:11:22,2026-04-05 14:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,44.4,0.241,BetMGM,POINTS_TOTAL,43.3,1,109.77 +2026-03-31 09:30:00,2026-04-02 12:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,47.7,1,122.0 +2026-03-14 07:11:00,2026-03-16 22:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,0,131.21 +2026-03-08 06:05:00,2026-03-09 01:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,227.8,1,128.03 +2026-03-29 22:16:15,2026-03-29 22:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.607,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-05 12:55:00,2026-04-07 12:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,112.08 +2026-03-29 23:05:00,2026-04-01 06:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,237.2,1,100.0 +2026-04-10 07:26:00,2026-04-12 09:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,114.39 +2026-03-04 16:13:07,2026-03-04 16:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,-0.8,0.0,0.384,BetMGM,POINTS_SPREAD,1.5,0,107.77 +2026-03-02 03:30:00,2026-03-03 01:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,225.1,0,102.95 +2026-03-26 04:43:00,2026-03-26 07:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-26 09:04:00,2026-03-26 22:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,110.27 +2026-04-01 23:08:00,2026-04-03 08:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,0,100.0 +2026-04-01 01:22:28,2026-04-01 02:00:00,NHL,Boston Bruins,Florida Panthers,0.0,10.2,0.136,Fanduel,POINTS_TOTAL,10.5,1,114.38 +2026-03-29 01:41:57,2026-03-29 03:00:00,NBA,Miami Heat,Dallas Mavericks,-3.4,0.0,0.172,BetMGM,POINTS_SPREAD,2.6,0,115.79 +2026-03-11 03:24:00,2026-03-11 11:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,229.0,0,105.01 +2026-04-11 23:40:26,2026-04-11 22:00:00,NHL,Edmonton Oilers,New York Rangers,6.8,0.0,0.958,BetMGM,POINTS_SPREAD,2.9,0,105.13 +2026-03-22 04:39:52,2026-03-22 04:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.766,Fanduel,MONEYLINE,0.0,NA,139.15 +2026-02-21 06:39:00,2026-02-21 21:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.4,0,126.14 +2026-04-04 19:01:00,2026-04-07 00:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-09 10:13:00,2026-04-10 14:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-04 21:17:51,2026-03-04 20:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.877,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-31 14:43:00,2026-04-02 13:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,42.7,1,100.0 +2026-04-03 21:02:00,2026-04-05 01:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,120.38 +2026-03-18 06:43:46,2026-03-18 05:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.621,BetMGM,MONEYLINE,0.0,NA,121.31 +2026-03-17 12:47:00,2026-03-19 13:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,223.1,0,106.29 +2026-04-07 15:17:00,2026-04-09 14:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,161.9 +2026-03-30 15:11:00,2026-03-31 09:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-08 07:09:58,2026-03-08 07:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,199.9,0.461,Fanduel,POINTS_TOTAL,199.8,1,127.39 +2026-03-09 20:53:00,2026-03-10 12:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,51.8,1,100.08 +2026-04-08 14:34:40,2026-04-08 12:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.876,Fanduel,MONEYLINE,0.0,NA,123.92 +2026-02-28 08:23:00,2026-03-03 07:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,230.8,1,112.22 +2026-04-04 06:53:00,2026-04-04 12:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,144.64 +2026-04-04 01:53:00,2026-04-07 01:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,0,100.0 +2026-03-18 13:29:00,2026-03-19 02:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.9,0,100.0 +2026-04-21 07:17:36,2026-04-21 07:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.62,BetMGM,MONEYLINE,0.0,NA,125.07 +2026-03-12 01:10:37,2026-03-12 01:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,-2.9,0.0,0.809,Fanduel,POINTS_SPREAD,1.5,0,100.0 +2026-04-19 07:16:00,2026-04-19 17:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,39.3,1,132.06 +2026-03-03 12:06:00,2026-03-04 10:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,162.1 +2026-04-18 18:30:30,2026-04-18 17:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.9,0.0,0.725,BetMGM,POINTS_SPREAD,1.6,0,125.44 +2026-03-09 15:51:00,2026-03-10 04:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,9.0,0,100.0 +2026-03-31 05:33:00,2026-03-31 10:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,216.7,1,100.0 +2026-04-11 20:03:02,2026-04-11 20:00:00,NHL,New York Rangers,Florida Panthers,1.1,0.0,0.278,BetMGM,POINTS_SPREAD,0.5,1,106.81 +2026-03-07 11:39:00,2026-03-09 18:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,1,100.0 +2026-03-13 17:15:00,2026-03-15 19:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.2,0,113.9 +2026-03-10 13:31:00,2026-03-11 08:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,35.4,1,112.24 +2026-02-25 12:45:00,2026-02-27 00:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,212.6,0,110.69 +2026-03-25 04:45:00,2026-03-27 23:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,133.29 +2026-03-14 13:57:14,2026-03-14 14:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.568,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-02 22:20:37,2026-03-02 23:00:00,NBA,Miami Heat,Milwaukee Bucks,-2.9,0.0,0.559,Fanduel,POINTS_SPREAD,0.6,0,100.0 +2026-03-31 05:29:00,2026-03-31 21:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.9,1,101.17 +2026-02-20 18:11:00,2026-02-22 15:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,45.2,1,125.22 +2026-04-14 03:24:00,2026-04-15 09:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.6,0,111.91 +2026-04-08 00:55:13,2026-04-08 01:00:00,NBA,Denver Nuggets,Milwaukee Bucks,-1.2,0.0,0.279,BetMGM,POINTS_SPREAD,3.7,0,100.0 +2026-04-06 13:21:00,2026-04-08 12:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,231.0,1,104.6 +2026-03-13 11:47:00,2026-03-16 11:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.5,0,112.56 +2026-03-31 04:24:00,2026-03-31 09:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-04 11:21:34,2026-03-04 10:00:00,NFL,Kansas City Chiefs,Detroit Lions,2.3,0.0,0.531,Fanduel,POINTS_SPREAD,3.6,1,107.01 +2026-04-10 23:30:00,2026-04-11 12:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,222.7,1,100.0 +2026-03-01 06:50:50,2026-03-01 08:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,-1.9,0.0,0.338,Fanduel,POINTS_SPREAD,1.4,1,123.73 +2026-03-30 16:58:00,2026-04-02 16:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.8,1,100.0 +2026-04-04 17:56:02,2026-04-04 17:00:00,NFL,Detroit Lions,Buffalo Bills,-4.3,0.0,0.328,Fanduel,POINTS_SPREAD,0.0,1,122.2 +2026-03-28 01:43:01,2026-03-28 01:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,230.9,0.439,BetMGM,POINTS_TOTAL,233.9,0,100.0 +2026-04-16 02:41:00,2026-04-18 13:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,37.4,1,100.0 +2026-04-05 02:19:00,2026-04-05 12:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,154.98 +2026-03-26 15:21:00,2026-03-26 19:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.3,1,129.79 +2026-04-10 18:23:00,2026-04-10 20:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,135.16 +2026-03-10 00:00:00,2026-03-10 13:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,215.6,1,100.0 +2026-04-18 23:30:31,2026-04-19 01:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,43.9,0.064,BetMGM,POINTS_TOTAL,48.1,1,100.0 +2026-04-10 05:35:00,2026-04-11 12:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,129.11 +2026-03-27 19:12:00,2026-03-30 17:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,126.65 +2026-03-31 05:04:00,2026-04-02 16:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,0,101.63 +2026-04-07 08:43:00,2026-04-08 11:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,108.14 +2026-02-25 00:25:25,2026-02-24 23:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.719,Fanduel,MONEYLINE,0.0,NA,134.6 +2026-03-19 14:59:00,2026-03-21 21:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,1,102.42 +2026-03-05 16:32:00,2026-03-08 08:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,137.42 +2026-04-12 20:52:00,2026-04-14 01:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,53.8,0,114.27 +2026-02-26 06:52:45,2026-02-26 07:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,10.9,0.182,BetMGM,POINTS_TOTAL,9.7,1,112.68 +2026-03-07 05:48:00,2026-03-09 19:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,54.3,0,124.67 +2026-03-25 16:00:00,2026-03-27 12:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,136.43 +2026-02-27 06:57:00,2026-02-27 11:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,47.3,1,112.07 +2026-03-29 17:25:24,2026-03-29 17:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,229.5,0.53,BetMGM,POINTS_TOTAL,233.5,0,100.0 +2026-02-23 19:35:00,2026-02-26 00:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,120.98 +2026-04-02 13:35:07,2026-04-02 14:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.334,Fanduel,MONEYLINE,0.0,NA,142.67 +2026-03-08 09:25:55,2026-03-08 09:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.644,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-10 06:57:00,2026-04-11 19:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.0,0,135.61 +2026-02-21 21:48:42,2026-02-21 21:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,236.1,0.615,BetMGM,POINTS_TOTAL,235.2,1,118.89 +2026-04-16 09:58:00,2026-04-19 08:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-25 07:59:00,2026-03-26 12:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.3,1,100.0 +2026-03-29 14:51:00,2026-03-30 23:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,0,133.45 +2026-04-15 15:22:00,2026-04-15 19:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,231.9,0,100.8 +2026-03-30 09:00:00,2026-04-01 10:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,40.0,1,108.85 +2026-03-16 04:13:00,2026-03-17 10:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,129.09 +2026-02-20 15:20:13,2026-02-20 14:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,213.6,0.729,BetMGM,POINTS_TOTAL,215.5,1,107.86 +2026-03-06 08:22:08,2026-03-06 07:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.5,0.0,0.623,BetMGM,POINTS_SPREAD,4.0,0,100.0 +2026-03-02 18:35:00,2026-03-04 04:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.1,1,110.74 +2026-03-17 18:28:38,2026-03-17 20:00:00,NFL,Buffalo Bills,Kansas City Chiefs,2.5,0.0,0.248,Fanduel,POINTS_SPREAD,0.1,1,100.0 +2026-04-18 19:46:50,2026-04-18 22:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.038,Fanduel,MONEYLINE,0.0,NA,153.08 +2026-04-06 17:49:00,2026-04-08 19:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,0,100.0 +2026-03-20 20:22:00,2026-03-23 19:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,235.9,0,100.01 +2026-03-04 23:09:03,2026-03-04 23:00:00,NHL,Florida Panthers,Carolina Hurricanes,1.5,0.0,0.667,BetMGM,POINTS_SPREAD,1.9,1,117.53 +2026-04-09 14:08:00,2026-04-12 06:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,106.28 +2026-02-20 12:16:00,2026-02-20 21:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-24 04:09:00,2026-02-25 00:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.1,0,132.24 +2026-04-18 05:01:00,2026-04-20 02:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,134.62 +2026-04-14 11:30:09,2026-04-14 10:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,245.5,0.762,Fanduel,POINTS_TOTAL,246.2,0,108.57 +2026-03-21 20:41:00,2026-03-24 03:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,40.3,0,120.57 +2026-03-30 16:42:00,2026-04-02 07:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,48.7,0,109.46 +2026-02-23 09:53:00,2026-02-24 10:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,21.2,1,125.99 +2026-04-12 01:06:00,2026-04-12 16:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-20 12:08:00,2026-03-22 11:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.7,0,112.15 +2026-03-22 06:17:48,2026-03-22 06:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,3.5,0.21,Fanduel,POINTS_TOTAL,3.7,0,113.84 +2026-04-16 20:42:50,2026-04-16 21:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.588,Fanduel,POINTS_SPREAD,1.2,0,100.0 +2026-04-19 17:33:00,2026-04-20 08:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,134.26 +2026-03-05 09:25:00,2026-03-06 02:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,224.3,0,100.7 +2026-03-30 10:03:00,2026-04-01 19:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,4.1,1,103.59 +2026-03-17 22:04:00,2026-03-20 03:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,235.4,1,102.21 +2026-03-02 14:20:20,2026-03-02 12:00:00,NFL,Dallas Cowboys,Baltimore Ravens,-1.9,0.0,0.913,Fanduel,POINTS_SPREAD,1.6,0,100.0 +2026-04-10 08:43:00,2026-04-10 21:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,120.27 +2026-02-23 11:47:00,2026-02-24 23:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,0,123.03 +2026-04-07 02:52:00,2026-04-09 01:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,0,100.0 +2026-03-25 21:21:46,2026-03-25 23:00:00,NFL,Detroit Lions,Baltimore Ravens,-5.2,0.0,0.221,Fanduel,POINTS_SPREAD,0.9,0,100.0 +2026-03-26 19:58:07,2026-03-26 21:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.034,BetMGM,MONEYLINE,0.0,NA,132.68 +2026-03-04 15:09:00,2026-03-04 23:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,229.2,0,100.0 +2026-04-14 14:35:31,2026-04-14 14:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.514,BetMGM,MONEYLINE,0.0,NA,108.96 +2026-03-11 13:44:00,2026-03-12 11:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,44.0,0,115.8 +2026-04-16 23:18:28,2026-04-17 00:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,16.1,0.536,BetMGM,POINTS_TOTAL,15.8,1,101.99 +2026-02-19 21:13:00,2026-02-21 08:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,36.0,1,110.02 +2026-04-01 02:26:00,2026-04-01 05:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,10.1,1,100.0 +2026-03-08 17:20:07,2026-03-08 17:00:00,NBA,Golden State Warriors,Dallas Mavericks,2.2,0.0,0.534,Fanduel,POINTS_SPREAD,0.8,0,135.05 +2026-03-23 23:21:00,2026-03-25 07:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.7,1,100.0 +2026-04-19 12:56:00,2026-04-19 14:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,7.5,1,111.55 +2026-03-21 20:24:00,2026-03-22 18:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,242.6,1,124.32 +2026-03-20 17:30:00,2026-03-21 04:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,231.5,1,109.78 +2026-03-18 13:04:00,2026-03-21 10:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.9,1,108.65 +2026-03-23 19:59:00,2026-03-24 11:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,133.31 +2026-04-10 05:27:00,2026-04-12 21:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,45.0,0,100.0 +2026-04-06 19:19:50,2026-04-06 20:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.538,Fanduel,MONEYLINE,0.0,NA,122.18 +2026-03-04 23:02:00,2026-03-06 19:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,127.6 +2026-03-07 20:20:56,2026-03-07 19:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,222.6,0.783,BetMGM,POINTS_TOTAL,224.2,0,100.0 +2026-03-20 22:05:00,2026-03-23 07:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-14 01:32:00,2026-03-14 16:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,126.32 +2026-02-24 07:16:00,2026-02-27 05:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,149.53 +2026-03-04 04:54:00,2026-03-04 11:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.4,0,129.72 +2026-04-21 06:47:22,2026-04-21 06:00:00,NBA,Miami Heat,Boston Celtics,0.0,220.6,0.291,Fanduel,POINTS_TOTAL,218.8,0,104.18 +2026-04-12 10:46:00,2026-04-12 12:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,0,100.0 +2026-03-02 20:36:46,2026-03-02 21:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.071,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-22 04:27:00,2026-02-22 12:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,118.57 +2026-03-30 18:26:28,2026-03-30 19:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.086,Fanduel,MONEYLINE,0.0,NA,152.58 +2026-03-04 13:30:24,2026-03-04 15:00:00,NHL,Boston Bruins,Florida Panthers,0.0,7.7,0.23,Fanduel,POINTS_TOTAL,7.2,0,123.17 +2026-03-05 18:48:14,2026-03-05 18:00:00,NBA,Phoenix Suns,Los Angeles Lakers,2.1,0.0,0.518,BetMGM,POINTS_SPREAD,3.4,1,101.23 +2026-03-11 03:49:34,2026-03-11 03:00:00,NBA,Dallas Mavericks,Boston Celtics,-6.9,0.0,0.381,BetMGM,POINTS_SPREAD,0.5,1,140.89 +2026-04-08 12:40:00,2026-04-09 23:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,159.32 +2026-03-04 23:46:01,2026-03-05 00:00:00,NFL,San Francisco 49ers,Dallas Cowboys,1.8,0.0,0.639,Fanduel,POINTS_SPREAD,3.9,0,128.99 +2026-02-27 22:50:00,2026-03-02 07:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-27 19:04:00,2026-03-29 13:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.2,1,100.0 +2026-04-04 05:31:57,2026-04-04 04:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.722,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-16 20:53:00,2026-03-18 06:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,228.7,1,107.95 +2026-04-17 23:53:00,2026-04-20 08:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,116.63 +2026-03-10 22:11:00,2026-03-12 08:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,219.1,0,114.39 +2026-04-02 07:55:00,2026-04-04 09:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-22 04:33:00,2026-02-23 10:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,1,100.0 +2026-04-15 00:55:00,2026-04-18 00:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,225.3,1,102.44 +2026-04-01 08:10:00,2026-04-03 20:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-14 11:26:10,2026-03-14 12:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.2,0.0,0.351,BetMGM,POINTS_SPREAD,0.2,0,105.08 +2026-04-17 04:23:00,2026-04-20 01:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,1,109.12 +2026-03-29 07:57:12,2026-03-29 08:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.29,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-07 12:59:00,2026-03-08 07:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,0,100.0 +2026-03-29 11:58:55,2026-03-29 11:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,223.2,0.544,BetMGM,POINTS_TOTAL,218.3,1,100.0 +2026-03-01 23:10:00,2026-03-02 12:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.3,0,100.0 +2026-03-17 08:35:12,2026-03-17 07:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,11.5,0.89,BetMGM,POINTS_TOTAL,13.0,0,106.44 +2026-04-16 11:18:15,2026-04-16 10:00:00,NBA,Boston Celtics,Miami Heat,0.0,226.5,0.607,Fanduel,POINTS_TOTAL,225.6,1,106.39 +2026-04-02 09:15:00,2026-04-02 17:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,143.89 +2026-03-28 17:55:00,2026-03-31 00:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,1,100.0 +2026-03-21 12:40:56,2026-03-21 14:00:00,NFL,San Francisco 49ers,Miami Dolphins,2.5,0.0,0.283,Fanduel,POINTS_SPREAD,0.1,0,122.53 +2026-03-19 22:47:00,2026-03-21 18:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.09 +2026-03-15 23:23:00,2026-03-17 22:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,0,100.0 +2026-03-18 10:17:31,2026-03-18 10:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,4.4,0.0,0.364,Fanduel,POINTS_SPREAD,0.9,1,100.0 +2026-03-08 05:47:20,2026-03-08 04:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,34.3,0.613,BetMGM,POINTS_TOTAL,33.2,0,100.82 +2026-03-29 22:00:00,2026-03-31 07:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,116.35 +2026-04-07 19:42:00,2026-04-08 17:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,1,109.86 +2026-04-15 03:30:00,2026-04-17 09:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,105.65 +2026-03-18 23:30:00,2026-03-20 02:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,246.0,1,107.21 +2026-04-10 21:36:00,2026-04-12 01:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,1,111.01 +2026-03-30 05:46:00,2026-03-31 02:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,122.45 +2026-02-18 21:01:00,2026-02-20 12:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,44.3,1,116.54 +2026-02-22 21:11:00,2026-02-23 10:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,55.7,0,100.0 +2026-03-10 21:21:00,2026-03-13 14:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.1,0,100.0 +2026-02-24 08:40:00,2026-02-25 17:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,232.4,1,100.0 +2026-03-21 14:01:02,2026-03-21 13:00:00,NFL,Dallas Cowboys,Detroit Lions,0.3,0.0,0.578,BetMGM,POINTS_SPREAD,2.0,1,100.0 +2026-03-31 09:49:00,2026-03-31 18:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.5,0,106.98 +2026-03-11 05:08:00,2026-03-14 02:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.9,1,100.0 +2026-03-28 04:55:43,2026-03-28 05:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.654,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-10 02:40:00,2026-03-12 19:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,121.73 +2026-04-15 06:09:00,2026-04-16 08:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,215.8,1,108.81 +2026-03-04 04:06:00,2026-03-05 04:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,29.6,0,118.46 +2026-03-25 21:46:20,2026-03-25 21:00:00,NBA,Boston Celtics,Miami Heat,-0.4,0.0,0.613,Fanduel,POINTS_SPREAD,3.5,0,111.62 +2026-04-05 03:02:43,2026-04-05 02:00:00,NFL,San Francisco 49ers,Baltimore Ravens,2.7,0.0,0.454,BetMGM,POINTS_SPREAD,1.0,0,122.7 +2026-04-11 21:56:00,2026-04-13 18:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,151.92 +2026-02-19 04:31:00,2026-02-20 20:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,0,108.75 +2026-02-23 10:04:00,2026-02-23 21:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,37.3,1,100.0 +2026-04-18 07:03:00,2026-04-20 23:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,126.74 +2026-03-20 22:41:00,2026-03-21 20:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,141.49 +2026-04-03 17:56:49,2026-04-03 19:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,237.8,0.399,Fanduel,POINTS_TOTAL,240.6,1,103.78 +2026-04-02 00:21:00,2026-04-03 16:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.8,1,105.54 +2026-04-03 10:34:21,2026-04-03 11:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.152,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-05 05:50:00,2026-04-06 15:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,154.33 +2026-03-04 01:24:34,2026-03-04 01:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,-3.1,0.0,0.331,Fanduel,POINTS_SPREAD,0.4,1,134.94 +2026-03-09 06:00:00,2026-03-11 22:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,165.06 +2026-03-17 13:51:00,2026-03-18 10:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,0,105.33 +2026-02-19 22:41:00,2026-02-22 01:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,130.86 +2026-03-07 15:07:00,2026-03-08 04:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-13 09:37:00,2026-03-16 03:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.0,0,151.7 +2026-03-29 01:44:00,2026-03-30 05:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,149.99 +2026-03-04 13:27:00,2026-03-06 14:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,140.46 +2026-03-30 19:06:00,2026-03-31 04:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,1,103.39 +2026-02-23 05:21:55,2026-02-23 03:00:00,NFL,Buffalo Bills,Kansas City Chiefs,-4.0,0.0,0.794,Fanduel,POINTS_SPREAD,4.7,0,107.38 +2026-03-25 01:44:00,2026-03-25 05:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,53.2,0,110.67 +2026-03-17 23:39:00,2026-03-20 18:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-13 08:38:00,2026-03-15 06:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,28.3,1,100.0 +2026-04-12 11:51:32,2026-04-12 11:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.903,Fanduel,MONEYLINE,0.0,NA,114.77 +2026-04-18 19:44:00,2026-04-19 19:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,0,115.09 +2026-03-20 14:26:00,2026-03-23 05:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,1,118.71 +2026-03-31 15:18:00,2026-04-02 04:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-10 09:40:00,2026-04-10 19:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,104.1 +2026-02-27 07:40:00,2026-03-01 09:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,167.21 +2026-03-23 01:55:16,2026-03-23 03:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.396,Fanduel,MONEYLINE,0.0,NA,102.11 +2026-03-15 18:08:25,2026-03-15 18:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.319,BetMGM,MONEYLINE,0.0,NA,165.7 +2026-04-19 00:04:00,2026-04-21 12:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,108.33 +2026-03-14 19:35:00,2026-03-17 08:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-12 23:30:00,2026-03-13 05:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,113.13 +2026-03-15 07:03:48,2026-03-15 09:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,3.5,0.11,BetMGM,POINTS_TOTAL,4.3,1,107.42 +2026-03-22 07:08:39,2026-03-22 08:00:00,NHL,Colorado Avalanche,New York Rangers,1.0,0.0,0.037,Fanduel,POINTS_SPREAD,2.2,1,145.36 +2026-03-27 19:35:46,2026-03-27 19:00:00,NHL,Toronto Maple Leafs,Florida Panthers,3.5,0.0,0.621,BetMGM,POINTS_SPREAD,1.5,1,100.0 +2026-02-27 17:20:00,2026-02-27 18:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,213.5,0,100.0 +2026-03-02 10:21:00,2026-03-04 05:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,46.5,1,139.1 +2026-04-10 00:11:00,2026-04-10 07:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,6.5,0,110.03 +2026-03-24 02:12:13,2026-03-24 02:00:00,NBA,Milwaukee Bucks,Phoenix Suns,1.9,0.0,0.829,Fanduel,POINTS_SPREAD,2.0,0,106.89 +2026-04-12 13:00:00,2026-04-13 00:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,119.91 +2026-04-14 22:00:33,2026-04-14 21:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,3.5,0.642,BetMGM,POINTS_TOTAL,4.2,1,107.29 +2026-04-09 00:37:00,2026-04-10 03:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,118.65 +2026-04-07 14:41:26,2026-04-07 14:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.508,BetMGM,MONEYLINE,0.0,NA,106.01 +2026-03-30 23:34:00,2026-03-31 15:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,141.79 +2026-02-26 12:22:00,2026-02-26 19:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-18 01:17:00,2026-02-20 20:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,133.47 +2026-03-05 09:47:28,2026-03-05 10:00:00,NBA,Los Angeles Lakers,Miami Heat,-3.2,0.0,0.536,BetMGM,POINTS_SPREAD,2.1,0,100.0 +2026-03-20 04:08:34,2026-03-20 04:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.331,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-25 00:45:00,2026-03-27 04:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-07 22:45:00,2026-03-09 11:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,164.13 +2026-03-18 15:25:00,2026-03-18 19:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.9,1,115.54 +2026-04-03 06:38:00,2026-04-05 04:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,24.3,1,100.0 +2026-04-01 21:52:51,2026-04-01 22:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.9,0.0,0.727,BetMGM,POINTS_SPREAD,2.5,0,100.0 +2026-03-07 10:38:00,2026-03-08 23:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,104.73 +2026-03-18 12:01:48,2026-03-18 10:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.71,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-25 00:28:00,2026-03-27 04:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,44.0,0,105.38 +2026-04-19 07:10:00,2026-04-21 03:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,217.0,1,114.83 +2026-04-16 06:42:00,2026-04-17 04:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,132.1 +2026-02-28 20:55:00,2026-03-02 20:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,0,113.56 +2026-03-09 18:15:00,2026-03-11 19:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,151.19 +2026-03-23 07:16:00,2026-03-24 05:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,112.07 +2026-02-24 04:13:48,2026-02-24 04:00:00,NBA,Boston Celtics,Denver Nuggets,0.5,0.0,0.11,BetMGM,POINTS_SPREAD,2.7,0,100.0 +2026-03-20 18:28:00,2026-03-23 07:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-28 07:00:56,2026-02-28 08:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,48.3,0.183,Fanduel,POINTS_TOTAL,51.2,1,129.74 +2026-03-03 02:26:00,2026-03-03 16:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,1,118.47 +2026-04-11 10:08:10,2026-04-11 10:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.351,BetMGM,MONEYLINE,0.0,NA,145.74 +2026-03-21 21:38:00,2026-03-24 12:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-21 21:26:19,2026-02-21 21:00:00,NFL,Detroit Lions,Miami Dolphins,-2.4,0.0,0.324,BetMGM,POINTS_SPREAD,2.5,0,100.0 +2026-03-14 02:19:31,2026-03-14 02:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,3.5,0.414,Fanduel,POINTS_TOTAL,3.5,1,115.63 +2026-02-20 12:09:00,2026-02-21 23:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,105.5 +2026-04-20 00:05:00,2026-04-21 02:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,0,116.41 +2026-04-05 11:49:00,2026-04-08 07:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,104.09 +2026-03-18 18:53:00,2026-03-21 17:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,4.1,0,100.0 +2026-02-22 09:07:07,2026-02-22 08:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.784,BetMGM,MONEYLINE,0.0,NA,106.54 +2026-03-07 00:30:00,2026-03-08 16:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-10 21:59:00,2026-03-13 13:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,245.4,1,110.65 +2026-03-28 10:34:56,2026-03-28 10:00:00,NFL,Buffalo Bills,Baltimore Ravens,-3.1,0.0,0.883,BetMGM,POINTS_SPREAD,1.6,0,100.0 +2026-02-28 09:39:34,2026-02-28 10:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,5.1,0.131,Fanduel,POINTS_TOTAL,11.8,0,124.64 +2026-04-19 07:38:12,2026-04-19 06:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,3.5,0.64,BetMGM,POINTS_TOTAL,3.5,0,113.74 +2026-03-07 11:36:00,2026-03-10 04:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,0,130.25 +2026-03-09 07:10:31,2026-03-09 07:00:00,NHL,Boston Bruins,Florida Panthers,0.0,11.9,0.114,BetMGM,POINTS_TOTAL,11.6,1,107.13 +2026-02-28 21:41:39,2026-02-28 21:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,52.4,0.787,Fanduel,POINTS_TOTAL,50.4,1,106.46 +2026-03-25 22:27:06,2026-03-25 22:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,8.1,0.295,Fanduel,POINTS_TOTAL,9.1,0,135.12 +2026-03-22 07:34:00,2026-03-24 01:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,137.67 +2026-02-22 10:24:26,2026-02-22 10:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.258,BetMGM,MONEYLINE,0.0,NA,129.63 +2026-03-05 05:55:00,2026-03-05 14:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,134.15 +2026-04-14 02:08:00,2026-04-15 02:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,110.39 +2026-02-24 02:54:00,2026-02-25 10:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.8,0,157.26 +2026-03-20 07:08:00,2026-03-20 09:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.6,0,120.35 +2026-03-31 08:58:00,2026-04-02 17:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,120.47 +2026-02-27 01:45:00,2026-02-28 11:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,109.21 +2026-03-30 06:43:22,2026-03-30 07:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.091,BetMGM,MONEYLINE,0.0,NA,147.93 +2026-03-08 20:38:13,2026-03-08 21:00:00,NHL,Colorado Avalanche,Florida Panthers,0.5,0.0,0.529,Fanduel,POINTS_SPREAD,2.4,0,115.03 +2026-04-12 19:14:00,2026-04-12 20:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,158.29 +2026-04-14 22:13:00,2026-04-15 16:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,247.7,1,115.0 +2026-03-29 21:48:00,2026-03-30 06:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,0,100.0 +2026-03-19 10:55:00,2026-03-20 10:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,138.86 +2026-02-27 12:57:00,2026-02-28 14:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,150.6 +2026-04-16 06:22:00,2026-04-17 21:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,187.09 +2026-03-02 22:13:00,2026-03-04 12:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,11.7,0,100.0 +2026-03-31 21:46:27,2026-03-31 20:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.897,Fanduel,MONEYLINE,0.0,NA,123.9 +2026-03-11 01:52:02,2026-03-11 03:00:00,NBA,Golden State Warriors,Miami Heat,-5.9,0.0,0.228,Fanduel,POINTS_SPREAD,0.1,1,143.13 +2026-04-05 07:39:00,2026-04-05 21:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,170.82 +2026-02-28 18:10:24,2026-02-28 17:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.63,BetMGM,MONEYLINE,0.0,NA,135.59 +2026-03-03 16:25:08,2026-03-03 17:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,23.4,0.523,Fanduel,POINTS_TOTAL,25.2,0,118.03 +2026-02-24 03:02:00,2026-02-24 19:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,4.9,1,103.08 +2026-03-24 17:01:00,2026-03-26 06:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,0,125.94 +2026-03-12 01:35:00,2026-03-13 23:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,45.2,0,122.64 +2026-03-25 12:30:00,2026-03-28 04:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,1,108.6 +2026-03-18 23:52:00,2026-03-21 22:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,38.0,1,105.14 +2026-03-02 13:40:00,2026-03-04 16:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,113.65 +2026-04-16 10:12:48,2026-04-16 10:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.46,BetMGM,MONEYLINE,0.0,NA,103.66 +2026-03-26 01:09:24,2026-03-26 01:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,9.4,0.68,Fanduel,POINTS_TOTAL,10.2,1,124.34 +2026-04-13 13:17:19,2026-04-13 13:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.324,Fanduel,MONEYLINE,0.0,NA,102.62 +2026-03-15 05:46:00,2026-03-17 11:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,0,100.24 +2026-04-15 08:03:00,2026-04-17 11:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.6,0,104.17 +2026-04-01 09:11:00,2026-04-02 07:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,232.6,1,104.46 +2026-04-17 19:15:00,2026-04-19 16:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.0,0,109.32 +2026-03-24 07:44:00,2026-03-26 23:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.2,0,112.54 +2026-02-27 21:34:00,2026-03-01 06:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.9,0,100.0 +2026-04-04 01:09:40,2026-04-04 02:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,3.5,0.126,BetMGM,POINTS_TOTAL,3.5,1,100.0 +2026-04-18 21:51:54,2026-04-18 22:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.455,Fanduel,MONEYLINE,0.0,NA,150.29 +2026-02-22 10:22:00,2026-02-24 03:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,0,100.0 +2026-03-18 04:15:00,2026-03-20 00:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,51.9,0,100.0 +2026-03-10 21:59:00,2026-03-12 00:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,121.33 +2026-04-20 15:27:22,2026-04-20 15:00:00,NFL,Kansas City Chiefs,Buffalo Bills,6.0,0.0,0.391,BetMGM,POINTS_SPREAD,1.6,1,105.64 +2026-04-19 22:26:00,2026-04-20 07:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,227.9,1,105.78 +2026-02-22 00:43:00,2026-02-23 13:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,46.6,1,100.62 +2026-04-15 07:19:00,2026-04-16 11:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,104.58 +2026-04-13 14:05:00,2026-04-16 00:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.8,1,100.0 +2026-02-26 23:58:00,2026-02-28 20:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,4.8,1,116.59 +2026-03-04 14:28:00,2026-03-07 00:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,215.8,1,109.67 +2026-03-13 00:11:00,2026-03-13 19:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,113.63 +2026-04-17 18:47:28,2026-04-17 18:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,21.6,0.286,Fanduel,POINTS_TOTAL,23.7,0,108.52 +2026-03-02 05:39:00,2026-03-04 04:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,5.7,0,111.59 +2026-03-28 20:22:00,2026-03-30 16:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,100.0 +2026-03-03 22:28:00,2026-03-04 19:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,40.5,1,106.23 +2026-04-13 18:20:00,2026-04-15 00:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,114.0 +2026-03-17 21:18:00,2026-03-20 18:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,56.2,1,100.0 +2026-03-31 12:55:36,2026-03-31 14:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.12,BetMGM,MONEYLINE,0.0,NA,102.47 +2026-03-09 08:46:13,2026-03-09 10:00:00,NBA,Boston Celtics,Dallas Mavericks,6.2,0.0,0.079,BetMGM,POINTS_SPREAD,0.4,0,137.85 +2026-04-19 15:14:00,2026-04-21 00:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-22 00:51:00,2026-03-23 02:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,0,138.38 +2026-04-19 00:51:56,2026-04-19 01:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,231.4,0.533,BetMGM,POINTS_TOTAL,228.1,0,122.86 +2026-04-08 17:52:01,2026-04-08 17:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,233.3,0.939,BetMGM,POINTS_TOTAL,222.7,0,113.35 +2026-04-09 05:44:00,2026-04-11 06:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,0,100.0 +2026-03-24 06:04:25,2026-03-24 04:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.819,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-23 19:19:00,2026-02-26 06:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,221.3,0,125.67 +2026-03-28 13:43:00,2026-03-30 23:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,123.97 +2026-02-25 14:14:00,2026-02-28 01:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,115.3 +2026-04-10 17:35:00,2026-04-12 08:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,0,113.26 +2026-04-04 06:55:51,2026-04-04 06:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.327,Fanduel,MONEYLINE,0.0,NA,120.34 +2026-03-24 07:46:00,2026-03-24 09:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,0,100.0 +2026-03-04 13:43:00,2026-03-05 13:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,31.6,0,110.64 +2026-02-28 04:04:52,2026-02-28 04:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,1.5,0.0,0.666,BetMGM,POINTS_SPREAD,3.3,1,110.55 +2026-03-14 04:27:00,2026-03-15 03:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.6,1,130.22 +2026-04-07 06:22:00,2026-04-07 19:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,112.76 +2026-03-02 20:31:18,2026-03-02 21:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,218.3,0.435,Fanduel,POINTS_TOTAL,219.5,0,100.0 +2026-02-26 13:52:00,2026-03-01 09:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,0,105.19 +2026-02-28 01:14:00,2026-03-01 05:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,105.1 +2026-04-01 13:25:00,2026-04-02 05:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,0,100.0 +2026-03-17 09:21:00,2026-03-19 20:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.14 +2026-04-20 22:42:00,2026-04-21 08:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.9,1,114.1 +2026-04-02 07:17:00,2026-04-02 15:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,43.8,1,106.31 +2026-03-19 13:53:00,2026-03-20 01:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,146.59 +2026-04-04 08:32:00,2026-04-05 00:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,1,133.67 +2026-03-31 00:17:00,2026-04-02 15:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,4.7,0,113.53 +2026-03-03 06:57:32,2026-03-03 06:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.503,Fanduel,MONEYLINE,0.0,NA,137.9 +2026-04-10 22:39:00,2026-04-12 18:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,44.2,0,100.0 +2026-03-28 05:42:00,2026-03-30 10:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,1,100.0 +2026-03-25 17:03:00,2026-03-27 15:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,102.45 +2026-04-05 22:41:00,2026-04-08 17:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,33.3,0,100.0 +2026-04-03 12:12:08,2026-04-03 11:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,242.0,0.623,BetMGM,POINTS_TOTAL,234.1,1,100.54 +2026-04-06 05:30:00,2026-04-08 08:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,128.13 +2026-04-09 03:09:00,2026-04-10 01:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,39.7,0,121.6 +2026-03-25 06:50:49,2026-03-25 07:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,15.9,0.049,Fanduel,POINTS_TOTAL,18.4,0,100.0 +2026-02-27 01:59:00,2026-02-28 14:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,0,102.35 +2026-04-19 18:48:24,2026-04-19 17:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.63,BetMGM,MONEYLINE,0.0,NA,175.59 +2026-02-20 14:40:00,2026-02-22 16:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.3,1,149.6 +2026-03-24 04:51:20,2026-03-24 06:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,31.5,0.363,Fanduel,POINTS_TOTAL,29.8,1,103.63 +2026-03-26 19:46:00,2026-03-29 05:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,27.6,1,100.0 +2026-04-12 05:20:00,2026-04-13 09:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,10.8,1,108.96 +2026-02-27 23:11:00,2026-03-02 12:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.3,0,105.01 +2026-04-16 21:32:39,2026-04-16 22:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.337,BetMGM,MONEYLINE,0.0,NA,136.53 +2026-04-13 03:56:00,2026-04-16 02:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,1,110.78 +2026-03-10 01:22:00,2026-03-11 09:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,222.3,0,100.0 +2026-03-12 13:46:55,2026-03-12 14:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,223.5,0.094,Fanduel,POINTS_TOTAL,225.2,1,120.7 +2026-02-24 20:16:00,2026-02-24 22:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,209.7,1,102.1 +2026-03-31 00:29:00,2026-03-31 04:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,166.66 +2026-03-15 02:32:00,2026-03-15 09:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-08 11:53:20,2026-04-08 12:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.7,0.0,0.663,Fanduel,POINTS_SPREAD,2.1,0,106.42 +2026-04-07 17:30:00,2026-04-07 18:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.6,Fanduel,MONEYLINE,0.0,NA,181.92 +2026-03-01 23:08:00,2026-03-04 22:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-31 00:32:43,2026-03-31 00:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.654,Fanduel,MONEYLINE,0.0,NA,138.15 +2026-03-23 20:52:48,2026-03-23 21:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,232.1,0.06,Fanduel,POINTS_TOTAL,234.6,0,112.27 +2026-04-16 17:14:00,2026-04-16 19:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,44.3,1,112.29 +2026-03-03 12:38:00,2026-03-06 00:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,219.0,0,100.0 +2026-02-24 18:00:31,2026-02-24 16:00:00,NBA,Boston Celtics,Los Angeles Lakers,-3.8,0.0,0.914,Fanduel,POINTS_SPREAD,0.2,0,100.0 +2026-03-26 02:16:33,2026-03-26 02:00:00,NBA,Milwaukee Bucks,Miami Heat,6.8,0.0,0.292,BetMGM,POINTS_SPREAD,0.0,0,141.19 +2026-04-07 13:03:00,2026-04-08 08:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,135.41 +2026-03-07 22:15:36,2026-03-07 23:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.17,BetMGM,MONEYLINE,0.0,NA,118.01 +2026-03-08 00:47:00,2026-03-08 04:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.4,0,100.0 +2026-03-07 10:07:00,2026-03-07 10:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,47.6,0.75,Fanduel,POINTS_TOTAL,45.0,1,102.53 +2026-03-10 22:30:00,2026-03-11 13:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,0,100.0 +2026-03-01 03:47:00,2026-03-02 07:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,126.94 +2026-04-10 10:10:44,2026-04-10 11:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,52.8,0.243,Fanduel,POINTS_TOTAL,54.1,0,111.14 +2026-04-08 03:59:00,2026-04-08 17:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,1,100.0 +2026-03-03 01:53:00,2026-03-05 22:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-09 05:51:00,2026-04-10 04:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,36.5,0,120.07 +2026-04-01 21:53:00,2026-04-04 16:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-29 06:19:00,2026-03-30 16:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,130.74 +2026-03-25 23:17:01,2026-03-26 00:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,74.6,0.139,Fanduel,POINTS_TOTAL,72.0,1,107.05 +2026-04-15 09:30:00,2026-04-15 12:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,1,104.09 +2026-04-11 09:30:43,2026-04-11 11:00:00,NBA,Milwaukee Bucks,Miami Heat,2.2,0.0,0.154,Fanduel,POINTS_SPREAD,3.6,0,100.0 +2026-02-23 18:37:00,2026-02-25 17:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,163.1 +2026-02-23 03:53:02,2026-02-23 02:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,13.1,0.778,BetMGM,POINTS_TOTAL,11.2,0,104.16 +2026-04-04 04:59:00,2026-04-07 03:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,156.97 +2026-03-25 18:42:00,2026-03-27 07:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,104.45 +2026-02-28 04:53:00,2026-03-01 23:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,155.07 +2026-03-18 22:07:16,2026-03-18 21:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,3.5,0.596,Fanduel,POINTS_TOTAL,3.5,0,118.39 +2026-03-11 12:27:00,2026-03-12 13:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,1,127.87 +2026-03-23 20:07:00,2026-03-25 23:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,227.9,1,117.54 +2026-03-03 16:37:24,2026-03-03 15:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.93,BetMGM,MONEYLINE,0.0,NA,162.75 +2026-02-28 20:42:33,2026-02-28 20:00:00,NBA,Golden State Warriors,Denver Nuggets,1.4,0.0,0.842,Fanduel,POINTS_SPREAD,3.2,0,121.3 +2026-02-25 11:03:00,2026-02-28 03:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,45.2,0,131.9 +2026-04-10 11:09:00,2026-04-13 04:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,18.1,0,101.4 +2026-03-04 15:28:22,2026-03-04 15:00:00,NHL,New York Rangers,Boston Bruins,0.0,22.3,0.191,Fanduel,POINTS_TOTAL,21.9,1,104.05 +2026-03-16 00:31:19,2026-03-16 02:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,43.3,0.274,Fanduel,POINTS_TOTAL,43.8,1,100.0 +2026-03-26 21:17:00,2026-03-28 23:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,145.98 +2026-02-23 05:43:00,2026-02-25 07:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-10 03:21:00,2026-03-12 22:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,120.26 +2026-02-23 21:33:00,2026-02-26 02:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,0,100.0 +2026-03-03 05:03:00,2026-03-06 04:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.1,1,100.0 +2026-03-21 04:55:00,2026-03-23 11:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,117.43 +2026-02-25 11:58:13,2026-02-25 10:00:00,NHL,Colorado Avalanche,Florida Panthers,2.4,0.0,0.929,BetMGM,POINTS_SPREAD,2.7,0,117.43 +2026-04-10 07:38:00,2026-04-11 19:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,0,139.69 +2026-04-16 19:52:00,2026-04-18 10:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,130.63 +2026-03-01 19:37:18,2026-03-01 18:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,-2.2,0.0,0.885,BetMGM,POINTS_SPREAD,0.1,1,131.8 +2026-03-03 20:37:00,2026-03-04 09:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,12.3,0,105.4 +2026-04-18 05:53:51,2026-04-18 05:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,44.3,0.577,Fanduel,POINTS_TOTAL,43.8,0,101.3 +2026-04-07 09:45:00,2026-04-07 18:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,249.7,0,100.0 +2026-04-15 04:32:00,2026-04-16 15:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,1,132.62 +2026-04-09 14:40:00,2026-04-12 14:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,48.2,1,110.15 +2026-04-01 08:46:32,2026-04-01 09:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.353,Fanduel,MONEYLINE,0.0,NA,120.35 +2026-02-23 14:52:06,2026-02-23 14:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,6.5,0.545,BetMGM,POINTS_TOTAL,4.8,0,113.09 +2026-04-13 03:10:36,2026-04-13 02:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,217.0,0.42,Fanduel,POINTS_TOTAL,216.7,0,113.97 +2026-03-30 06:15:54,2026-03-30 05:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.905,Fanduel,MONEYLINE,0.0,NA,149.02 +2026-02-22 12:39:30,2026-02-22 14:00:00,NBA,Dallas Mavericks,Boston Celtics,3.1,0.0,0.225,BetMGM,POINTS_SPREAD,2.8,0,148.74 +2026-03-02 07:14:58,2026-03-02 07:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.461,Fanduel,MONEYLINE,0.0,NA,162.9 +2026-03-29 15:41:00,2026-03-29 17:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,106.73 +2026-04-11 07:34:38,2026-04-11 07:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.848,BetMGM,MONEYLINE,0.0,NA,130.26 +2026-03-09 10:30:44,2026-03-09 11:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.443,BetMGM,MONEYLINE,0.0,NA,117.45 +2026-04-14 05:02:00,2026-04-16 14:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,47.0,1,105.43 +2026-03-11 11:12:00,2026-03-11 15:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,0,146.56 +2026-02-25 10:07:00,2026-02-26 20:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,103.65 +2026-02-21 01:41:00,2026-02-23 02:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,1,107.15 +2026-03-05 09:29:00,2026-03-07 05:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,123.63 +2026-04-08 12:55:00,2026-04-09 09:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,105.17 +2026-03-23 23:55:00,2026-03-24 23:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,123.64 +2026-03-20 14:26:00,2026-03-21 10:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,225.0,0,113.76 +2026-03-01 18:10:00,2026-03-04 15:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.81 +2026-03-06 03:38:00,2026-03-07 04:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,121.4 +2026-03-20 15:55:00,2026-03-21 00:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,1,100.0 +2026-03-28 20:37:00,2026-03-31 19:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,206.5,1,100.0 +2026-04-20 23:52:34,2026-04-20 22:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.5,0.0,0.781,Fanduel,POINTS_SPREAD,3.8,1,100.0 +2026-03-01 21:40:15,2026-03-01 22:00:00,NBA,Miami Heat,Boston Celtics,0.0,228.8,0.307,BetMGM,POINTS_TOTAL,226.8,0,130.01 +2026-04-12 23:23:48,2026-04-12 23:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,-0.9,0.0,0.66,BetMGM,POINTS_SPREAD,3.2,0,100.0 +2026-03-22 00:39:00,2026-03-23 15:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,1,122.99 +2026-03-14 02:41:00,2026-03-15 22:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.2,1,100.0 +2026-04-05 04:47:00,2026-04-07 11:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-08 19:02:00,2026-04-10 01:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-18 02:51:36,2026-04-18 01:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.72,Fanduel,MONEYLINE,0.0,NA,146.91 +2026-03-24 23:41:00,2026-03-27 07:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,0,126.75 +2026-03-19 04:23:00,2026-03-19 12:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,24.9,0,111.98 +2026-03-10 01:48:00,2026-03-10 07:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,11.7,1,119.89 +2026-04-05 16:33:15,2026-04-05 15:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,19.0,0.957,BetMGM,POINTS_TOTAL,18.9,1,105.85 +2026-03-13 07:05:12,2026-03-13 06:00:00,NFL,Baltimore Ravens,Buffalo Bills,3.2,0.0,0.59,Fanduel,POINTS_SPREAD,4.7,0,114.84 +2026-02-21 14:43:00,2026-02-21 18:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.7,0,151.56 +2026-03-09 15:10:00,2026-03-12 13:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,150.92 +2026-02-26 00:36:28,2026-02-26 01:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.136,BetMGM,MONEYLINE,0.0,NA,166.76 +2026-04-11 16:03:00,2026-04-11 17:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,33.0,1,108.78 +2026-03-01 19:17:00,2026-03-03 11:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,117.68 +2026-03-22 07:03:00,2026-03-24 19:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,1,100.0 +2026-03-28 02:36:00,2026-03-30 13:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,135.61 +2026-02-27 10:12:00,2026-03-02 06:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.7,1,128.9 +2026-03-12 18:47:19,2026-03-12 20:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,-3.1,0.0,0.124,Fanduel,POINTS_SPREAD,0.5,0,100.0 +2026-04-18 04:23:00,2026-04-19 20:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-07 22:22:00,2026-03-09 10:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,145.86 +2026-03-16 11:21:00,2026-03-19 05:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,104.8 +2026-04-18 11:28:00,2026-04-18 20:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,151.13 +2026-04-03 20:42:00,2026-04-06 11:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,1,145.88 +2026-04-12 09:47:00,2026-04-13 07:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,126.31 +2026-04-04 20:41:00,2026-04-07 00:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.8,1,133.22 +2026-03-04 06:35:00,2026-03-05 06:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,105.14 +2026-04-11 19:09:00,2026-04-14 00:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,125.31 +2026-04-18 21:30:00,2026-04-19 08:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,59.5,1,100.15 +2026-03-29 12:05:00,2026-04-01 08:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.9,1,100.0 +2026-02-21 03:44:14,2026-02-21 05:00:00,NBA,Denver Nuggets,Milwaukee Bucks,1.6,0.0,0.218,BetMGM,POINTS_SPREAD,1.6,1,108.53 +2026-04-03 08:39:00,2026-04-05 04:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,1,100.0 +2026-03-01 01:29:00,2026-03-01 14:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,130.59 +2026-04-13 12:04:27,2026-04-13 12:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,222.6,0.447,Fanduel,POINTS_TOTAL,224.5,1,109.59 +2026-02-27 18:45:07,2026-02-27 19:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.134,BetMGM,MONEYLINE,0.0,NA,114.3 +2026-02-23 05:45:00,2026-02-25 05:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.2,1,147.02 +2026-02-27 15:40:00,2026-02-27 22:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,0,135.74 +2026-03-13 06:19:00,2026-03-13 11:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,221.2,1,122.23 +2026-02-18 07:07:00,2026-02-20 18:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,209.8,1,106.12 +2026-04-06 03:00:39,2026-04-06 04:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.287,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-08 20:46:00,2026-04-11 10:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,115.17 +2026-04-12 00:19:34,2026-04-11 22:00:00,NHL,Boston Bruins,Toronto Maple Leafs,4.4,0.0,0.831,BetMGM,POINTS_SPREAD,0.4,0,121.89 +2026-03-26 07:45:00,2026-03-28 22:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,1,100.0 +2026-03-03 12:56:00,2026-03-04 02:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,250.5,0,105.07 +2026-03-23 05:47:00,2026-03-24 02:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,1,110.87 +2026-03-05 22:06:00,2026-03-07 01:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,122.42 +2026-03-14 01:58:00,2026-03-15 19:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,135.81 +2026-02-23 19:50:00,2026-02-26 14:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,114.5 +2026-03-04 01:23:00,2026-03-04 22:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,223.7,1,111.73 +2026-03-12 18:30:00,2026-03-12 19:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.6,0,115.69 +2026-03-23 14:56:00,2026-03-25 11:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,46.4,0,100.0 +2026-03-11 18:06:42,2026-03-11 18:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,229.8,0.515,BetMGM,POINTS_TOTAL,228.2,1,121.8 +2026-03-17 17:12:04,2026-03-17 17:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,47.4,0.506,Fanduel,POINTS_TOTAL,47.9,1,100.0 +2026-03-16 10:39:00,2026-03-19 10:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,123.21 +2026-04-08 14:51:00,2026-04-08 19:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,50.6,0,100.0 +2026-04-04 02:36:12,2026-04-04 03:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.59,Fanduel,MONEYLINE,0.0,NA,105.26 +2026-04-15 20:42:32,2026-04-15 21:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,40.3,0.603,Fanduel,POINTS_TOTAL,43.6,0,115.5 +2026-03-25 10:16:00,2026-03-27 13:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,48.2,0,102.4 +2026-03-22 13:51:00,2026-03-23 01:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,109.6 +2026-03-24 14:15:00,2026-03-25 09:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,1,117.71 +2026-04-18 16:48:00,2026-04-20 11:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,140.21 +2026-03-20 00:43:00,2026-03-20 04:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,246.6,1,106.67 +2026-04-12 10:53:00,2026-04-12 11:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,162.81 +2026-03-26 03:53:48,2026-03-26 04:00:00,NFL,Detroit Lions,Baltimore Ravens,-4.9,0.0,0.16,Fanduel,POINTS_SPREAD,1.1,1,126.7 +2026-04-05 18:05:00,2026-04-06 23:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-21 10:37:00,2026-03-21 16:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,120.31 +2026-03-15 09:57:00,2026-03-18 00:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,50.1,1,120.49 +2026-03-11 01:56:00,2026-03-11 13:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.5,1,105.01 +2026-03-28 19:56:01,2026-03-28 20:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,-1.5,0.0,0.439,BetMGM,POINTS_SPREAD,1.7,1,124.37 +2026-04-17 11:42:58,2026-04-17 11:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.511,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-11 12:41:28,2026-03-11 14:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.036,BetMGM,MONEYLINE,0.0,NA,130.29 +2026-04-17 19:31:00,2026-04-19 05:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,120.76 +2026-03-03 03:59:00,2026-03-04 23:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,131.34 +2026-03-19 00:43:00,2026-03-21 08:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,32.0,0,100.0 +2026-03-02 19:58:00,2026-03-02 23:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,204.1,0,124.61 +2026-03-26 06:08:00,2026-03-29 04:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,114.5 +2026-04-13 22:53:00,2026-04-16 21:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,33.9,1,104.51 +2026-04-09 14:20:00,2026-04-12 05:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,5.1,0,114.96 +2026-03-09 03:15:00,2026-03-10 09:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,236.8,0,103.65 +2026-03-05 19:20:07,2026-03-05 19:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.234,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-12 14:25:00,2026-04-15 05:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.0,0,115.38 +2026-03-05 19:42:43,2026-03-05 20:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.604,Fanduel,MONEYLINE,0.0,NA,122.1 +2026-04-10 16:58:00,2026-04-12 01:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,220.4,0,126.01 +2026-04-03 16:24:00,2026-04-05 14:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,215.5,0,100.0 +2026-03-14 23:16:00,2026-03-17 10:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,19.0,0,131.05 +2026-04-09 02:27:00,2026-04-10 13:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,217.3,1,121.87 +2026-03-16 05:58:00,2026-03-17 20:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,158.15 +2026-02-26 17:34:57,2026-02-26 18:00:00,NBA,Denver Nuggets,Golden State Warriors,4.1,0.0,0.322,Fanduel,POINTS_SPREAD,2.0,1,100.0 +2026-03-18 23:31:26,2026-03-18 23:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,14.2,0.558,BetMGM,POINTS_TOTAL,17.0,1,121.64 +2026-03-04 22:34:00,2026-03-07 21:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,0,125.99 +2026-04-16 20:59:00,2026-04-17 17:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,233.9,1,113.46 +2026-04-10 05:27:00,2026-04-12 13:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.7,0,117.2 +2026-04-20 05:29:12,2026-04-20 05:00:00,NFL,Baltimore Ravens,Detroit Lions,7.3,0.0,0.69,BetMGM,POINTS_SPREAD,6.3,1,100.0 +2026-03-11 03:10:00,2026-03-14 00:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,60.3,1,117.79 +2026-03-19 13:10:28,2026-03-19 15:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,1.1,0.0,0.086,BetMGM,POINTS_SPREAD,0.7,1,130.62 +2026-04-07 14:42:46,2026-04-07 16:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,215.2,0.171,BetMGM,POINTS_TOTAL,216.5,1,119.28 +2026-03-21 21:22:00,2026-03-24 08:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,102.95 +2026-04-11 13:17:00,2026-04-14 10:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-02 16:05:13,2026-03-02 16:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,64.6,0.629,BetMGM,POINTS_TOTAL,66.3,0,100.0 +2026-03-22 22:31:00,2026-03-24 08:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,47.0,0,114.58 +2026-03-19 17:08:09,2026-03-19 18:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,35.8,0.262,Fanduel,POINTS_TOTAL,29.4,0,136.75 +2026-03-27 00:05:00,2026-03-27 19:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.7,1,100.0 +2026-02-20 13:57:58,2026-02-20 13:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,17.1,0.411,BetMGM,POINTS_TOTAL,20.4,0,100.0 +2026-03-27 13:32:00,2026-03-29 09:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,166.14 +2026-03-31 06:31:00,2026-04-03 06:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,111.47 +2026-04-01 16:37:00,2026-04-04 12:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.9,0,129.84 +2026-04-10 01:55:00,2026-04-12 00:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,121.11 +2026-04-06 20:19:00,2026-04-09 00:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,14.2,1,100.0 +2026-02-21 08:20:55,2026-02-21 09:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.544,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-22 09:43:00,2026-03-24 14:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,226.5,0,100.0 +2026-03-13 12:16:00,2026-03-16 08:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.0,0,106.55 +2026-02-25 04:31:00,2026-02-28 04:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,0,112.03 +2026-04-17 20:48:00,2026-04-18 15:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,162.69 +2026-03-13 18:47:00,2026-03-14 06:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,1,106.81 +2026-03-08 14:27:00,2026-03-11 01:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,0,100.0 +2026-04-20 01:38:00,2026-04-21 04:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,36.2,1,100.0 +2026-02-20 12:25:00,2026-02-23 12:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,11.4,1,135.46 +2026-03-16 16:42:00,2026-03-17 22:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,1,122.74 +2026-03-17 12:36:00,2026-03-17 18:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-22 22:58:00,2026-03-23 06:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,219.0,1,102.71 +2026-03-23 16:55:00,2026-03-24 03:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,123.54 +2026-04-16 12:45:00,2026-04-16 18:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,0,121.54 +2026-03-30 11:25:00,2026-03-31 15:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.5,1,143.39 +2026-04-02 15:02:00,2026-04-04 07:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,150.94 +2026-04-20 04:16:00,2026-04-20 16:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,156.8 +2026-04-01 20:36:00,2026-04-04 04:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-24 11:02:00,2026-02-25 22:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,1,100.0 +2026-03-21 09:25:27,2026-03-21 08:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.597,Fanduel,MONEYLINE,0.0,NA,151.74 +2026-04-07 04:06:00,2026-04-07 11:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,0,123.68 +2026-03-30 22:03:00,2026-03-31 13:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-22 16:59:42,2026-03-22 18:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.315,Fanduel,MONEYLINE,0.0,NA,179.07 +2026-04-04 22:09:00,2026-04-06 02:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,261.4,1,116.61 +2026-03-09 07:24:00,2026-03-10 07:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,130.49 +2026-04-18 01:19:00,2026-04-18 07:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,0,100.0 +2026-03-10 01:45:26,2026-03-10 00:00:00,NHL,Carolina Hurricanes,Florida Panthers,-4.5,0.0,0.658,BetMGM,POINTS_SPREAD,0.9,1,135.01 +2026-03-02 09:05:00,2026-03-03 13:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,128.52 +2026-04-07 03:11:00,2026-04-07 16:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-03 00:23:00,2026-03-05 00:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,120.95 +2026-03-18 05:46:00,2026-03-20 09:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,1,135.27 +2026-03-21 21:46:00,2026-03-24 00:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,1,120.8 +2026-03-21 06:48:00,2026-03-23 22:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,1,108.14 +2026-03-19 13:40:54,2026-03-19 14:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,-1.7,0.0,0.355,Fanduel,POINTS_SPREAD,2.1,1,101.12 +2026-04-12 23:40:00,2026-04-14 22:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.7,1,110.55 +2026-03-26 23:44:00,2026-03-29 15:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,124.02 +2026-04-02 15:08:37,2026-04-02 15:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.359,BetMGM,MONEYLINE,0.0,NA,128.76 +2026-03-21 18:09:00,2026-03-24 12:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,57.2,0,125.31 +2026-02-25 23:22:00,2026-02-27 11:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,204.5,0,109.39 +2026-03-25 22:17:00,2026-03-28 17:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,212.8,1,105.07 +2026-04-04 21:03:00,2026-04-05 16:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,240.2,1,118.9 +2026-04-13 23:29:19,2026-04-13 23:00:00,NBA,Phoenix Suns,Denver Nuggets,3.0,0.0,0.724,Fanduel,POINTS_SPREAD,0.1,1,117.27 +2026-03-06 22:05:00,2026-03-07 09:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.9,1,114.95 +2026-02-22 10:21:00,2026-02-25 10:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,0,114.63 +2026-04-14 11:03:00,2026-04-14 21:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.6,0,100.0 +2026-02-26 15:39:00,2026-02-28 05:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,116.83 +2026-03-29 23:59:00,2026-04-01 20:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,199.61 +2026-03-08 20:23:33,2026-03-08 19:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,53.3,0.592,Fanduel,POINTS_TOTAL,56.6,1,104.55 +2026-04-09 09:59:45,2026-04-09 11:00:00,NHL,Boston Bruins,Toronto Maple Leafs,-4.0,0.0,0.282,BetMGM,POINTS_SPREAD,0.1,0,112.56 +2026-02-23 19:14:22,2026-02-23 18:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,214.8,0.891,Fanduel,POINTS_TOTAL,216.5,1,126.75 +2026-03-21 02:27:00,2026-03-23 07:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,0,143.95 +2026-02-24 02:06:30,2026-02-24 02:00:00,NHL,Colorado Avalanche,Boston Bruins,-2.9,0.0,0.475,BetMGM,POINTS_SPREAD,3.5,0,100.0 +2026-04-05 05:36:00,2026-04-07 06:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,0,125.45 +2026-03-09 20:41:44,2026-03-09 21:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,3.5,0.443,Fanduel,POINTS_TOTAL,12.4,1,114.28 +2026-04-18 14:01:00,2026-04-19 10:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,0,109.4 +2026-03-17 14:05:13,2026-03-17 12:00:00,NHL,Boston Bruins,Edmonton Oilers,2.2,0.0,0.779,Fanduel,POINTS_SPREAD,1.8,1,100.0 +2026-03-06 19:46:00,2026-03-09 09:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,230.6,0,100.78 +2026-03-12 01:28:09,2026-03-12 02:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.562,Fanduel,MONEYLINE,0.0,NA,115.86 +2026-03-06 20:27:00,2026-03-08 02:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,104.36 +2026-03-25 10:33:26,2026-03-25 11:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.508,Fanduel,MONEYLINE,0.0,NA,152.37 +2026-04-13 21:00:00,2026-04-15 15:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,17.3,1,107.17 +2026-03-12 08:01:00,2026-03-12 14:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,118.64 +2026-03-25 01:58:00,2026-03-25 04:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,132.1 +2026-03-01 02:14:00,2026-03-03 10:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.4,0,100.0 +2026-03-24 18:40:14,2026-03-24 18:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,18.7,0.818,BetMGM,POINTS_TOTAL,18.5,0,102.47 +2026-03-30 02:18:00,2026-03-31 03:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,104.24 +2026-04-15 12:30:00,2026-04-17 20:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.15 +2026-02-22 22:14:00,2026-02-23 23:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,0,129.54 +2026-03-17 05:20:00,2026-03-20 04:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,1,102.81 +2026-03-12 12:20:00,2026-03-13 23:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,41.5,0,133.96 +2026-04-09 11:10:04,2026-04-09 10:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,37.1,0.506,BetMGM,POINTS_TOTAL,43.9,1,115.25 +2026-02-25 11:52:06,2026-02-25 12:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.445,BetMGM,MONEYLINE,0.0,NA,122.59 +2026-04-19 14:15:00,2026-04-21 02:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,0,108.0 +2026-03-07 08:59:00,2026-03-08 13:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,130.64 +2026-03-17 04:28:19,2026-03-17 05:00:00,NHL,Boston Bruins,Florida Panthers,-1.2,0.0,0.374,BetMGM,POINTS_SPREAD,4.2,1,136.55 +2026-03-07 03:00:00,2026-03-09 03:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.7,0,109.44 +2026-03-15 04:21:00,2026-03-16 04:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,101.93 +2026-03-28 06:25:00,2026-03-28 10:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,155.46 +2026-02-21 16:40:00,2026-02-24 05:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,31.3,0,120.5 +2026-03-17 20:50:00,2026-03-18 15:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,40.3,1,109.09 +2026-03-08 18:39:00,2026-03-10 23:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,1,100.0 +2026-03-05 05:16:01,2026-03-05 06:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.339,BetMGM,MONEYLINE,0.0,NA,143.15 +2026-03-23 12:36:00,2026-03-24 04:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.3,0,136.51 +2026-03-28 11:05:03,2026-03-28 10:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.867,Fanduel,MONEYLINE,0.0,NA,110.37 +2026-03-25 21:00:00,2026-03-27 14:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,1,100.0 +2026-04-11 04:11:36,2026-04-11 03:00:00,NHL,New York Rangers,Florida Panthers,4.0,0.0,0.57,Fanduel,POINTS_SPREAD,3.0,1,119.41 +2026-04-02 23:40:00,2026-04-03 07:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,0,125.14 +2026-02-24 07:45:00,2026-02-24 08:00:00,NBA,Phoenix Suns,Los Angeles Lakers,-0.4,0.0,0.05,Fanduel,POINTS_SPREAD,3.4,0,100.0 +2026-03-18 07:42:09,2026-03-18 07:00:00,NFL,Miami Dolphins,Baltimore Ravens,-3.5,0.0,0.312,Fanduel,POINTS_SPREAD,0.6,0,116.58 +2026-04-04 08:13:52,2026-04-04 09:00:00,NHL,Boston Bruins,Toronto Maple Leafs,4.3,0.0,0.216,Fanduel,POINTS_SPREAD,3.4,1,100.0 +2026-04-17 12:22:00,2026-04-17 13:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.1,1,100.0 +2026-04-04 07:31:00,2026-04-04 17:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,180.67 +2026-03-24 08:28:00,2026-03-26 21:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,152.01 +2026-03-23 05:00:00,2026-03-25 21:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,157.4 +2026-03-02 15:59:00,2026-03-05 05:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,111.04 +2026-03-08 13:21:07,2026-03-08 13:00:00,NHL,New York Rangers,Florida Panthers,0.0,10.3,0.184,BetMGM,POINTS_TOTAL,8.9,1,103.83 +2026-03-19 14:46:00,2026-03-20 08:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,232.4,1,113.43 +2026-03-23 20:10:00,2026-03-25 09:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,5.1,0,121.15 +2026-03-11 10:33:54,2026-03-11 10:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,3.0,0.0,0.605,Fanduel,POINTS_SPREAD,2.5,0,133.74 +2026-04-10 02:14:00,2026-04-11 16:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,7.2,0,116.46 +2026-04-10 11:00:00,2026-04-12 08:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,0,112.58 +2026-04-17 17:47:00,2026-04-18 03:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,195.45 +2026-04-12 03:13:00,2026-04-12 04:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,45.4,0,100.0 +2026-03-20 04:20:00,2026-03-22 06:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,122.25 +2026-03-31 06:33:40,2026-03-31 06:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.376,Fanduel,MONEYLINE,0.0,NA,115.76 +2026-04-08 10:34:00,2026-04-11 04:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,45.9,1,100.0 +2026-03-31 13:10:00,2026-04-01 14:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,131.32 +2026-03-02 07:41:00,2026-03-03 16:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,117.51 +2026-03-08 23:45:55,2026-03-09 01:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,3.2,0.0,0.244,Fanduel,POINTS_SPREAD,0.2,1,100.0 +2026-04-14 20:39:00,2026-04-17 00:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,109.08 +2026-03-05 07:03:00,2026-03-06 14:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,121.92 +2026-03-28 06:49:18,2026-03-28 08:00:00,NHL,Florida Panthers,New York Rangers,0.0,10.1,0.085,Fanduel,POINTS_TOTAL,11.0,0,100.0 +2026-02-23 03:43:12,2026-02-23 03:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.49,Fanduel,MONEYLINE,0.0,NA,106.62 +2026-03-13 00:21:52,2026-03-13 00:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.616,BetMGM,MONEYLINE,0.0,NA,112.04 +2026-03-23 06:15:00,2026-03-25 17:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,1,100.0 +2026-04-15 19:17:01,2026-04-15 20:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.089,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-26 11:09:00,2026-02-27 00:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,46.1,1,113.26 +2026-03-12 04:32:00,2026-03-12 12:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-05 18:01:00,2026-03-07 01:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,224.2,0,100.0 +2026-03-12 12:13:00,2026-03-14 19:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,220.4,0,121.22 +2026-03-25 04:09:00,2026-03-28 03:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,0,105.51 +2026-04-14 07:52:00,2026-04-17 07:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,147.92 +2026-03-25 23:55:00,2026-03-28 01:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.9,0,144.8 +2026-03-05 22:26:00,2026-03-07 02:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,101.41 +2026-03-30 09:56:00,2026-04-01 17:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.5,1,123.91 +2026-04-10 04:12:00,2026-04-13 01:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,1,100.0 +2026-04-04 06:08:00,2026-04-06 10:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,52.2,0,135.49 +2026-04-10 18:31:00,2026-04-12 14:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,120.36 +2026-04-02 06:57:00,2026-04-04 07:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,236.7,0,107.25 +2026-03-15 22:39:00,2026-03-17 15:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.9,1,145.77 +2026-04-04 07:31:00,2026-04-05 05:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,219.5,1,105.84 +2026-02-22 16:32:15,2026-02-22 14:00:00,NFL,Miami Dolphins,Baltimore Ravens,1.0,0.0,0.857,BetMGM,POINTS_SPREAD,2.6,0,129.25 +2026-03-02 15:09:00,2026-03-04 04:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,1,133.84 +2026-03-22 20:00:00,2026-03-24 09:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,132.68 +2026-03-16 09:47:00,2026-03-18 20:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,140.09 +2026-03-22 22:28:04,2026-03-22 21:00:00,NHL,Florida Panthers,Boston Bruins,2.8,0.0,0.556,BetMGM,POINTS_SPREAD,1.3,0,101.7 +2026-03-01 16:30:00,2026-03-04 06:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,61.2,0,121.65 +2026-03-02 04:15:00,2026-03-03 23:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,37.9,1,117.45 +2026-04-12 06:05:09,2026-04-12 04:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,46.4,0.762,Fanduel,POINTS_TOTAL,45.3,1,114.79 +2026-03-13 06:24:00,2026-03-13 14:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-10 01:58:00,2026-04-11 02:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,104.95 +2026-04-02 06:40:00,2026-04-02 12:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,176.09 +2026-03-04 00:44:00,2026-03-06 23:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-03 01:08:00,2026-04-04 05:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,49.0,1,102.8 +2026-03-26 21:21:00,2026-03-29 13:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,105.98 +2026-02-24 08:29:00,2026-02-25 06:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.1,0,110.58 +2026-03-26 18:55:00,2026-03-27 17:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,0,129.43 +2026-02-26 12:28:00,2026-02-27 06:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-18 02:07:00,2026-03-20 07:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,225.3,0,105.48 +2026-03-13 18:10:00,2026-03-14 23:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,124.74 +2026-04-10 02:49:00,2026-04-12 23:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,1,100.0 +2026-03-07 16:48:00,2026-03-09 19:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.3,1,100.0 +2026-03-15 04:50:00,2026-03-17 08:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-01 07:41:16,2026-04-01 07:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,230.7,0.646,BetMGM,POINTS_TOTAL,230.5,1,129.97 +2026-03-13 17:01:00,2026-03-14 16:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,155.11 +2026-02-27 14:49:02,2026-02-27 15:00:00,NBA,Phoenix Suns,Milwaukee Bucks,-1.6,0.0,0.578,BetMGM,POINTS_SPREAD,0.7,1,104.51 +2026-03-07 12:21:18,2026-03-07 12:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.435,Fanduel,MONEYLINE,0.0,NA,153.3 +2026-04-01 16:43:00,2026-04-03 03:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,217.9,0,102.52 +2026-04-16 05:18:00,2026-04-18 14:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,40.2,0,113.67 +2026-03-14 17:13:00,2026-03-15 08:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,135.9 +2026-03-04 06:48:00,2026-03-04 15:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-06 16:09:00,2026-04-07 04:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,103.2 +2026-03-25 07:07:58,2026-03-25 07:00:00,NHL,Colorado Avalanche,New York Rangers,-0.2,0.0,0.761,BetMGM,POINTS_SPREAD,0.6,0,103.1 +2026-04-07 19:23:00,2026-04-10 11:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,36.3,0,100.0 +2026-03-29 01:38:00,2026-03-30 11:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,111.45 +2026-03-06 19:42:00,2026-03-07 14:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,6.2,0,124.55 +2026-04-16 07:39:00,2026-04-19 02:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,8.2,1,105.33 +2026-02-28 06:27:00,2026-02-28 14:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,217.5,0,116.11 +2026-03-30 12:31:00,2026-03-30 17:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,108.53 +2026-03-13 08:40:00,2026-03-15 04:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.5,0,153.33 +2026-04-07 20:30:00,2026-04-08 00:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,222.5,1,116.33 +2026-02-28 06:12:04,2026-02-28 04:00:00,NHL,Boston Bruins,New York Rangers,0.0,5.7,0.806,BetMGM,POINTS_TOTAL,3.8,1,102.43 +2026-03-21 13:35:00,2026-03-22 13:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,1,124.42 +2026-02-26 21:08:50,2026-02-26 21:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,252.7,0.738,BetMGM,POINTS_TOTAL,256.3,0,100.99 +2026-03-21 18:56:00,2026-03-24 10:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,210.1,1,112.14 +2026-03-10 08:55:00,2026-03-13 08:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,1,111.35 +2026-03-11 06:24:25,2026-03-11 06:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,217.4,0.469,Fanduel,POINTS_TOTAL,216.8,1,112.55 +2026-04-08 03:31:34,2026-04-08 04:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,-0.3,0.0,0.381,BetMGM,POINTS_SPREAD,1.4,1,131.59 +2026-03-21 15:48:00,2026-03-24 01:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,112.92 +2026-04-17 15:57:00,2026-04-18 08:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-22 21:50:00,2026-02-23 23:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.2,1,104.03 +2026-04-08 09:01:50,2026-04-08 09:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,8.0,0.388,Fanduel,POINTS_TOTAL,8.2,1,128.33 +2026-03-12 11:35:00,2026-03-14 02:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,5.6,1,100.82 +2026-04-10 05:43:49,2026-04-10 06:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,233.9,0.199,Fanduel,POINTS_TOTAL,230.5,1,107.08 +2026-03-09 21:29:00,2026-03-10 10:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,110.08 +2026-04-09 02:00:52,2026-04-09 02:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.366,Fanduel,MONEYLINE,0.0,NA,110.06 +2026-04-04 07:48:00,2026-04-05 19:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.6,1,119.76 +2026-03-01 19:54:00,2026-03-03 21:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,0,100.0 +2026-02-22 13:11:00,2026-02-24 19:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.3,0,116.76 +2026-03-05 01:21:49,2026-03-05 01:00:00,NBA,Phoenix Suns,Los Angeles Lakers,6.0,0.0,0.599,BetMGM,POINTS_SPREAD,3.1,1,100.0 +2026-04-16 15:35:56,2026-04-16 14:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.933,Fanduel,MONEYLINE,0.0,NA,101.66 +2026-03-27 21:51:00,2026-03-28 20:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,112.97 +2026-02-27 17:09:00,2026-03-02 01:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,136.31 +2026-02-27 10:53:12,2026-02-27 12:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,-2.2,0.0,0.19,Fanduel,POINTS_SPREAD,1.7,1,126.09 +2026-03-17 10:00:00,2026-03-20 00:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,236.6,0,100.0 +2026-04-11 08:51:00,2026-04-13 15:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,109.6 +2026-02-26 15:45:39,2026-02-26 16:00:00,NBA,Boston Celtics,Dallas Mavericks,4.8,0.0,0.587,Fanduel,POINTS_SPREAD,3.0,0,146.81 +2026-03-07 12:32:00,2026-03-09 23:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,1,106.03 +2026-04-07 18:08:00,2026-04-08 21:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,1,109.42 +2026-03-16 00:23:22,2026-03-15 23:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.1,0.0,0.841,Fanduel,POINTS_SPREAD,5.2,1,100.0 +2026-02-24 16:37:00,2026-02-25 07:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,1,100.0 +2026-03-11 01:56:00,2026-03-13 03:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,160.57 +2026-02-21 04:10:58,2026-02-21 03:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.661,BetMGM,MONEYLINE,0.0,NA,125.58 +2026-03-16 10:42:06,2026-03-16 11:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,3.5,0.045,BetMGM,POINTS_TOTAL,3.7,1,101.63 +2026-04-07 02:10:00,2026-04-07 21:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,5.4,0,100.0 +2026-04-07 12:52:52,2026-04-07 12:00:00,NBA,Golden State Warriors,Miami Heat,-2.1,0.0,0.816,Fanduel,POINTS_SPREAD,2.1,0,108.95 +2026-03-15 04:59:00,2026-03-15 08:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-24 07:33:20,2026-02-24 09:00:00,NHL,Florida Panthers,Boston Bruins,-1.0,0.0,0.063,BetMGM,POINTS_SPREAD,3.6,0,115.44 +2026-02-22 10:27:04,2026-02-22 11:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.406,Fanduel,MONEYLINE,0.0,NA,110.96 +2026-03-02 06:38:00,2026-03-03 11:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,38.8,0,100.87 +2026-04-13 07:05:00,2026-04-14 05:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,15.8,1,100.9 +2026-03-17 23:56:49,2026-03-18 00:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,231.2,0.199,Fanduel,POINTS_TOTAL,235.4,0,100.0 +2026-04-15 18:09:08,2026-04-15 20:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,52.8,0.073,BetMGM,POINTS_TOTAL,56.4,1,119.44 +2026-03-23 06:28:00,2026-03-24 21:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,158.36 +2026-04-19 11:42:00,2026-04-21 02:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,0,113.47 +2026-03-01 00:57:00,2026-03-02 00:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,0,100.0 +2026-03-07 10:53:00,2026-03-07 11:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.7,0,103.84 +2026-03-07 12:37:12,2026-03-07 12:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.84,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-03 06:51:00,2026-03-03 18:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,234.6,1,128.24 +2026-03-19 05:56:52,2026-03-19 06:00:00,NFL,Buffalo Bills,Kansas City Chiefs,-1.7,0.0,0.266,Fanduel,POINTS_SPREAD,0.9,0,104.89 +2026-04-06 12:10:00,2026-04-06 19:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,40.7,0,108.15 +2026-04-15 00:39:00,2026-04-15 17:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,54.5,1,112.19 +2026-03-23 01:43:00,2026-03-23 10:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-15 16:54:52,2026-03-15 15:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,45.1,0.866,Fanduel,POINTS_TOTAL,47.3,1,118.0 +2026-03-15 03:56:00,2026-03-18 03:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,147.95 +2026-03-07 18:54:00,2026-03-08 10:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.2,1,100.0 +2026-04-11 14:39:00,2026-04-12 05:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,1,100.8 +2026-03-09 19:31:00,2026-03-11 00:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,116.47 +2026-04-04 11:58:00,2026-04-05 05:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,46.2,1,127.53 +2026-03-31 09:15:00,2026-04-01 06:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,10.3,0,103.77 +2026-04-09 02:47:44,2026-04-09 04:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,204.1,0.243,Fanduel,POINTS_TOTAL,206.8,0,116.81 +2026-04-09 12:59:00,2026-04-11 23:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,50.5,0,100.0 +2026-03-04 22:03:54,2026-03-04 22:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,223.5,0.405,Fanduel,POINTS_TOTAL,228.6,1,115.11 +2026-03-12 19:51:00,2026-03-14 16:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,115.68 +2026-03-13 18:42:00,2026-03-15 03:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,7.7,0,152.57 +2026-02-27 21:36:00,2026-02-27 23:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,151.56 +2026-03-10 23:18:00,2026-03-11 02:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.1,1,124.97 +2026-03-03 16:49:26,2026-03-03 16:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,29.0,0.908,BetMGM,POINTS_TOTAL,26.5,1,100.0 +2026-03-24 14:46:51,2026-03-24 15:00:00,NFL,Miami Dolphins,Baltimore Ravens,2.7,0.0,0.627,Fanduel,POINTS_SPREAD,1.1,1,114.23 +2026-03-05 14:31:45,2026-03-05 15:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,50.2,0.082,BetMGM,POINTS_TOTAL,50.3,1,103.99 +2026-04-09 13:33:00,2026-04-11 15:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.0,0,100.0 +2026-04-10 09:41:42,2026-04-10 10:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.115,Fanduel,MONEYLINE,0.0,NA,139.09 +2026-04-18 17:22:00,2026-04-18 23:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.3,1,130.47 +2026-03-31 12:21:37,2026-03-31 12:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.1,0.0,0.309,Fanduel,POINTS_SPREAD,2.6,1,107.85 +2026-04-13 00:16:00,2026-04-15 22:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,5.7,1,105.69 +2026-04-02 07:45:00,2026-04-03 20:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,1,105.51 +2026-03-02 00:00:00,2026-03-02 11:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,237.1,0,118.79 +2026-03-11 13:26:00,2026-03-14 08:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,1,150.48 +2026-02-22 22:27:00,2026-02-23 14:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,138.33 +2026-04-01 22:35:24,2026-04-01 21:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.83,BetMGM,MONEYLINE,0.0,NA,149.23 +2026-03-28 01:28:00,2026-03-29 06:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.9,0,145.44 +2026-03-19 14:18:00,2026-03-20 18:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-30 21:37:00,2026-03-31 00:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,10.5,1,110.09 +2026-04-09 04:48:00,2026-04-10 04:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,0,100.0 +2026-03-13 02:26:25,2026-03-13 02:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.269,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-09 07:49:22,2026-03-09 09:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.141,Fanduel,MONEYLINE,0.0,NA,115.76 +2026-02-24 15:02:00,2026-02-25 18:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,1,100.0 +2026-03-13 01:04:00,2026-03-14 03:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,1,125.79 +2026-04-07 17:48:00,2026-04-10 07:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,6.5,0,100.0 +2026-04-07 12:31:00,2026-04-08 09:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-03 06:16:48,2026-04-03 06:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,41.3,0.61,BetMGM,POINTS_TOTAL,38.3,1,105.37 +2026-03-09 08:52:00,2026-03-11 15:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.5,0,112.74 +2026-03-30 00:48:06,2026-03-29 23:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,10.9,0.945,Fanduel,POINTS_TOTAL,13.7,1,118.29 +2026-03-26 08:35:44,2026-03-26 09:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,3.5,0.543,BetMGM,POINTS_TOTAL,3.5,1,100.0 +2026-03-27 04:56:00,2026-03-27 08:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,0,119.39 +2026-03-30 21:26:00,2026-04-02 19:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,100.97 +2026-03-13 00:15:00,2026-03-13 17:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.9,0,100.0 +2026-02-25 03:21:00,2026-02-25 10:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,228.3,1,105.17 +2026-03-26 04:23:00,2026-03-28 09:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,101.4 +2026-02-26 08:01:00,2026-03-01 00:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,100.0 +2026-03-27 19:15:00,2026-03-28 14:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,1,100.0 +2026-02-24 08:37:00,2026-02-25 22:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.7,1,137.8 +2026-03-19 00:29:40,2026-03-19 00:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,36.6,0.676,Fanduel,POINTS_TOTAL,37.4,1,100.0 +2026-04-06 22:57:00,2026-04-07 20:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,158.95 +2026-02-27 22:04:42,2026-02-27 20:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.765,Fanduel,MONEYLINE,0.0,NA,142.08 +2026-04-14 16:35:00,2026-04-16 07:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,0,100.01 +2026-02-25 19:53:27,2026-02-25 21:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,-1.2,0.0,0.197,BetMGM,POINTS_SPREAD,1.4,1,116.11 +2026-03-29 23:18:00,2026-03-31 11:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,47.9,0,100.0 +2026-04-02 04:10:00,2026-04-02 05:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,38.1,0,120.02 +2026-04-06 23:08:12,2026-04-07 00:00:00,NFL,Buffalo Bills,Kansas City Chiefs,3.0,0.0,0.34,Fanduel,POINTS_SPREAD,1.6,0,123.51 +2026-04-13 08:44:00,2026-04-14 02:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,13.0,0,112.61 +2026-03-14 05:24:00,2026-03-15 01:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-27 02:36:42,2026-03-27 01:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,24.9,0.915,BetMGM,POINTS_TOTAL,24.5,1,105.35 +2026-04-16 20:03:00,2026-04-18 05:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,30.5,0,111.4 +2026-02-28 04:07:00,2026-03-02 05:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,135.68 +2026-04-17 20:10:26,2026-04-17 19:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,226.0,0.908,Fanduel,POINTS_TOTAL,220.9,1,100.0 +2026-02-27 00:44:03,2026-02-27 01:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,55.3,0.217,Fanduel,POINTS_TOTAL,57.7,0,113.77 +2026-02-21 01:18:38,2026-02-21 02:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,44.2,0.198,Fanduel,POINTS_TOTAL,42.4,0,131.33 +2026-02-28 12:03:07,2026-02-28 11:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.934,Fanduel,MONEYLINE,0.0,NA,143.16 +2026-02-25 20:51:00,2026-02-26 11:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,0,100.0 +2026-03-16 23:16:32,2026-03-16 23:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,215.6,0.803,Fanduel,POINTS_TOTAL,210.7,0,118.73 +2026-03-10 07:31:00,2026-03-11 19:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.4,1,100.0 +2026-04-13 16:44:00,2026-04-14 03:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,133.06 +2026-03-13 07:29:20,2026-03-13 06:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,44.8,0.913,Fanduel,POINTS_TOTAL,42.2,0,130.44 +2026-03-09 19:00:00,2026-03-12 04:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,134.79 +2026-03-02 05:02:00,2026-03-03 04:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,9.9,1,133.47 +2026-03-29 07:40:43,2026-03-29 06:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.9,0.0,0.904,BetMGM,POINTS_SPREAD,3.6,0,100.0 +2026-03-01 11:41:00,2026-03-02 00:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,16.1,0,107.92 +2026-02-25 03:31:00,2026-02-28 03:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,19.2,0,110.65 +2026-04-05 04:52:50,2026-04-05 05:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.738,BetMGM,MONEYLINE,0.0,NA,160.52 +2026-03-10 05:07:26,2026-03-10 04:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.858,BetMGM,MONEYLINE,0.0,NA,114.88 +2026-02-23 23:04:00,2026-02-25 16:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.8,1,105.21 +2026-02-27 06:51:48,2026-02-27 07:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.71,Fanduel,MONEYLINE,0.0,NA,149.32 +2026-02-20 22:42:00,2026-02-23 12:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,9.0,0,106.3 +2026-02-21 06:34:31,2026-02-21 07:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,33.9,0.414,Fanduel,POINTS_TOTAL,35.0,1,100.34 +2026-04-08 00:48:42,2026-04-08 01:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,40.4,0.365,BetMGM,POINTS_TOTAL,41.9,0,100.0 +2026-02-27 05:26:00,2026-03-01 05:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,215.6,1,108.19 +2026-03-23 11:07:00,2026-03-24 21:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,34.8,1,100.0 +2026-03-31 10:16:54,2026-03-31 11:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,233.0,0.255,BetMGM,POINTS_TOTAL,236.4,1,110.37 +2026-02-25 13:47:00,2026-02-27 13:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,206.3,0,100.39 +2026-03-04 21:22:00,2026-03-05 09:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-16 22:15:00,2026-04-18 10:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,182.46 +2026-03-01 05:37:00,2026-03-03 02:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,115.12 +2026-04-07 22:58:00,2026-04-08 09:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,194.02 +2026-04-06 17:14:00,2026-04-08 04:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,1,100.0 +2026-04-07 23:58:00,2026-04-09 08:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.7,0,119.1 +2026-03-24 20:01:32,2026-03-24 19:00:00,NHL,Florida Panthers,Edmonton Oilers,-4.8,0.0,0.603,BetMGM,POINTS_SPREAD,0.1,1,136.26 +2026-02-27 20:29:00,2026-03-02 03:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.5,0,126.74 +2026-04-18 21:24:00,2026-04-20 23:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.6,1,100.0 +2026-04-10 02:38:00,2026-04-10 03:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,58.0,1,124.38 +2026-03-17 22:37:00,2026-03-20 22:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,161.54 +2026-04-15 12:47:00,2026-04-17 11:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,57.3,1,115.85 +2026-03-07 16:50:00,2026-03-10 11:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.2,0,100.0 +2026-03-28 16:50:00,2026-03-29 14:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,165.07 +2026-02-21 02:51:00,2026-02-21 12:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-05 02:18:21,2026-03-05 01:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.752,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-08 22:12:00,2026-03-09 01:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,52.2,1,100.0 +2026-03-03 16:03:12,2026-03-03 17:00:00,NBA,Phoenix Suns,Miami Heat,0.0,219.0,0.09,Fanduel,POINTS_TOTAL,215.5,0,146.75 +2026-04-15 23:43:00,2026-04-18 13:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,135.78 +2026-03-22 13:26:24,2026-03-22 12:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.83,Fanduel,MONEYLINE,0.0,NA,154.89 +2026-03-07 15:08:00,2026-03-09 16:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,1,128.26 +2026-04-09 03:25:00,2026-04-11 03:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,1,100.0 +2026-03-26 15:27:00,2026-03-27 02:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,1,100.0 +2026-03-28 17:56:36,2026-03-28 17:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.47,Fanduel,MONEYLINE,0.0,NA,124.12 +2026-03-29 11:21:06,2026-03-29 09:00:00,NBA,Dallas Mavericks,Phoenix Suns,5.2,0.0,0.795,BetMGM,POINTS_SPREAD,0.1,1,100.0 +2026-03-23 03:13:00,2026-03-23 04:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,1,109.09 +2026-04-11 21:53:00,2026-04-12 05:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,29.5,0,100.0 +2026-02-19 06:23:00,2026-02-21 13:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,36.5,0,105.75 +2026-02-25 18:15:00,2026-02-28 13:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,1,123.12 +2026-03-29 20:40:00,2026-04-01 09:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-27 14:48:00,2026-03-30 01:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-09 18:35:00,2026-04-10 13:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,158.31 +2026-04-19 12:44:00,2026-04-21 12:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,120.61 +2026-04-13 21:17:00,2026-04-16 03:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,210.8,1,107.56 +2026-04-07 03:15:00,2026-04-09 07:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,1,126.82 +2026-03-19 21:54:44,2026-03-19 21:00:00,NBA,Denver Nuggets,Phoenix Suns,0.4,0.0,0.943,Fanduel,POINTS_SPREAD,2.8,1,100.0 +2026-03-13 03:01:00,2026-03-14 08:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.0,0,103.97 +2026-02-20 07:28:00,2026-02-21 09:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,101.96 +2026-03-25 01:32:00,2026-03-26 03:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,0,136.71 +2026-04-04 23:20:34,2026-04-04 22:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.481,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-11 11:56:00,2026-04-13 13:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.7,1,100.0 +2026-04-08 22:55:00,2026-04-10 04:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,7.0,1,110.41 +2026-04-10 08:16:00,2026-04-11 13:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,40.6,1,100.0 +2026-02-24 04:41:00,2026-02-26 19:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,19.8,0,108.67 +2026-02-25 08:09:00,2026-02-26 21:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,235.1,1,102.84 +2026-04-11 06:10:00,2026-04-11 11:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,145.65 +2026-03-17 04:00:00,2026-03-18 19:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,150.9 +2026-04-02 21:49:00,2026-04-03 22:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.7,0,132.65 +2026-02-23 20:42:38,2026-02-23 20:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.298,BetMGM,MONEYLINE,0.0,NA,129.23 +2026-04-14 23:33:00,2026-04-15 23:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.2,1,100.0 +2026-03-25 21:36:00,2026-03-26 01:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,108.13 +2026-03-15 14:17:00,2026-03-15 15:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,0,100.0 +2026-03-12 20:21:00,2026-03-13 22:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.3,0,112.27 +2026-04-06 20:57:51,2026-04-06 22:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,2.2,0.0,0.177,Fanduel,POINTS_SPREAD,0.7,0,105.21 +2026-02-28 09:15:00,2026-03-01 10:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,1,151.95 +2026-03-07 09:31:24,2026-03-07 10:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,3.5,0.28,Fanduel,POINTS_TOTAL,3.5,1,106.68 +2026-03-03 04:01:00,2026-03-03 07:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,0,100.0 +2026-03-13 22:21:15,2026-03-13 23:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,3.5,0.407,BetMGM,POINTS_TOTAL,4.8,0,100.5 +2026-04-14 04:09:49,2026-04-14 02:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.7,0.0,0.849,BetMGM,POINTS_SPREAD,0.2,0,106.57 +2026-03-27 12:47:00,2026-03-27 23:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,10.0,1,124.28 +2026-03-12 09:54:45,2026-03-12 08:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,17.8,0.682,BetMGM,POINTS_TOTAL,20.8,0,104.46 +2026-03-24 14:08:42,2026-03-24 13:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,207.5,0.415,Fanduel,POINTS_TOTAL,203.4,0,110.62 +2026-03-18 05:16:00,2026-03-21 04:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.9,0,117.28 +2026-03-22 06:57:00,2026-03-22 18:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,32.5,1,100.06 +2026-03-30 13:08:00,2026-03-30 14:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,46.3,0,123.41 +2026-04-06 20:51:00,2026-04-07 02:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.5,1,100.0 +2026-03-22 04:12:28,2026-03-22 03:00:00,NHL,Boston Bruins,Edmonton Oilers,-2.3,0.0,0.436,Fanduel,POINTS_SPREAD,0.8,0,112.36 +2026-03-06 06:15:00,2026-03-08 04:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,107.16 +2026-02-25 04:52:00,2026-02-25 18:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,14.8,1,114.2 +2026-03-07 07:31:00,2026-03-07 09:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,113.51 +2026-03-25 21:01:00,2026-03-28 07:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.6,1,104.22 +2026-03-21 02:42:00,2026-03-22 21:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,217.6,1,118.95 +2026-04-20 14:52:33,2026-04-20 14:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.792,Fanduel,MONEYLINE,0.0,NA,118.84 +2026-04-13 17:00:08,2026-04-13 18:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.373,BetMGM,MONEYLINE,0.0,NA,125.33 +2026-03-23 11:55:51,2026-03-23 13:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.377,BetMGM,MONEYLINE,0.0,NA,143.25 +2026-03-16 15:10:00,2026-03-17 12:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,131.29 +2026-04-07 09:56:00,2026-04-08 15:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,1,126.56 +2026-03-05 17:11:00,2026-03-07 14:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,117.09 +2026-02-22 21:45:00,2026-02-25 08:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-12 04:42:00,2026-03-12 18:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,233.1,0,100.0 +2026-02-26 00:19:00,2026-02-27 10:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,0,126.13 +2026-04-03 02:55:00,2026-04-04 20:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-14 05:53:00,2026-03-16 21:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,103.05 +2026-04-01 01:24:00,2026-04-03 19:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,229.3,0,124.05 +2026-03-02 01:11:00,2026-03-03 14:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,50.7,1,114.48 +2026-04-11 08:50:00,2026-04-11 11:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,29.1,0,107.48 +2026-04-13 12:52:46,2026-04-13 13:00:00,NHL,Boston Bruins,Colorado Avalanche,2.0,0.0,0.471,Fanduel,POINTS_SPREAD,1.3,0,121.84 +2026-04-05 08:22:00,2026-04-07 11:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,130.18 +2026-02-28 06:47:00,2026-03-02 07:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,51.0,1,124.62 +2026-04-12 10:32:00,2026-04-12 22:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,142.15 +2026-03-13 18:01:00,2026-03-14 06:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,0,100.0 +2026-02-24 06:34:19,2026-02-24 05:00:00,NHL,New York Rangers,Edmonton Oilers,-3.3,0.0,0.874,Fanduel,POINTS_SPREAD,0.3,0,102.64 +2026-03-02 10:26:22,2026-03-02 10:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,226.5,0.891,Fanduel,POINTS_TOTAL,226.5,0,107.58 +2026-04-17 20:11:00,2026-04-19 14:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,63.8,1,111.27 +2026-03-24 17:20:00,2026-03-24 18:00:00,NBA,Miami Heat,Denver Nuggets,1.8,0.0,0.05,Fanduel,POINTS_SPREAD,1.9,1,100.0 +2026-03-26 22:11:00,2026-03-28 03:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,209.5,0,106.02 +2026-03-30 17:59:06,2026-03-30 16:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.945,Fanduel,MONEYLINE,0.0,NA,141.85 +2026-04-08 01:34:06,2026-04-08 02:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.395,Fanduel,MONEYLINE,0.0,NA,125.15 +2026-03-06 16:26:00,2026-03-08 02:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,1,100.0 +2026-03-20 11:55:55,2026-03-20 11:00:00,NBA,Miami Heat,Phoenix Suns,1.0,0.0,0.594,Fanduel,POINTS_SPREAD,0.0,1,118.44 +2026-04-19 07:21:00,2026-04-19 18:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-01 03:27:21,2026-03-01 02:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.802,Fanduel,MONEYLINE,0.0,NA,128.01 +2026-04-01 18:13:00,2026-04-03 14:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,11.7,0,112.12 +2026-03-29 14:27:00,2026-03-29 20:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,1,100.0 +2026-04-08 11:17:31,2026-04-08 12:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.064,BetMGM,MONEYLINE,0.0,NA,152.56 +2026-04-07 15:59:00,2026-04-08 17:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,109.74 +2026-04-16 20:25:00,2026-04-18 04:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-13 07:37:00,2026-04-14 13:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-20 22:42:24,2026-04-20 22:00:00,NBA,Boston Celtics,Miami Heat,0.0,236.5,0.48,BetMGM,POINTS_TOTAL,241.1,0,100.0 +2026-03-27 05:08:15,2026-03-27 06:00:00,NBA,Golden State Warriors,Miami Heat,0.0,221.2,0.157,BetMGM,POINTS_TOTAL,230.3,1,115.95 +2026-04-14 09:26:25,2026-04-14 08:00:00,NBA,Miami Heat,Denver Nuggets,0.0,253.0,0.919,BetMGM,POINTS_TOTAL,246.4,1,103.14 +2026-03-30 04:25:00,2026-04-01 05:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,101.92 +2026-03-11 14:52:56,2026-03-11 14:00:00,NBA,Milwaukee Bucks,Miami Heat,0.3,0.0,0.383,BetMGM,POINTS_SPREAD,0.3,0,100.0 +2026-03-24 20:04:00,2026-03-27 14:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,116.98 +2026-03-12 22:21:00,2026-03-15 13:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,21.3,1,105.94 +2026-04-09 10:44:01,2026-04-09 08:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,35.4,0.939,Fanduel,POINTS_TOTAL,28.1,0,108.65 +2026-03-04 20:27:00,2026-03-06 11:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.8,1,100.0 +2026-03-17 18:39:00,2026-03-20 04:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,59.9,0,125.26 +2026-04-01 02:00:00,2026-04-03 05:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,1,100.0 +2026-04-16 12:12:00,2026-04-16 16:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.9,0,115.54 +2026-04-18 02:30:00,2026-04-19 17:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-02 14:19:00,2026-03-03 05:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,170.63 +2026-04-20 09:06:00,2026-04-20 12:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,102.64 +2026-03-13 04:07:51,2026-03-13 04:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.777,Fanduel,MONEYLINE,0.0,NA,142.2 +2026-04-04 02:04:00,2026-04-05 19:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,143.34 +2026-02-24 06:48:16,2026-02-24 07:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,1.7,0.0,0.396,BetMGM,POINTS_SPREAD,1.5,0,102.63 +2026-03-20 14:26:00,2026-03-23 00:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,105.65 +2026-04-11 17:43:00,2026-04-14 07:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.8,0,100.0 +2026-04-09 09:41:00,2026-04-11 22:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,118.34 +2026-03-22 05:19:25,2026-03-22 04:00:00,NBA,Miami Heat,Phoenix Suns,-0.9,0.0,0.869,BetMGM,POINTS_SPREAD,0.8,0,100.0 +2026-04-20 00:54:00,2026-04-20 07:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,221.7,0,125.27 +2026-03-10 22:24:01,2026-03-10 20:00:00,NBA,Denver Nuggets,Los Angeles Lakers,4.8,0.0,0.939,Fanduel,POINTS_SPREAD,0.9,0,120.3 +2026-02-25 12:36:19,2026-02-25 11:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,2.2,0.0,0.874,Fanduel,POINTS_SPREAD,1.2,0,100.0 +2026-04-06 16:31:00,2026-04-07 05:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,115.91 +2026-03-29 15:58:00,2026-03-31 16:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,8.2,1,111.05 +2026-03-06 00:42:00,2026-03-08 06:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,222.8,1,100.0 +2026-04-02 22:06:12,2026-04-02 21:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,3.4,0.0,0.64,BetMGM,POINTS_SPREAD,3.0,1,100.0 +2026-03-08 07:02:00,2026-03-10 00:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.6,1,133.61 +2026-03-18 11:05:00,2026-03-21 11:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,1,100.0 +2026-03-13 18:06:00,2026-03-15 15:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,57.1,1,101.64 +2026-04-10 19:02:30,2026-04-10 18:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.925,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-05 21:49:00,2026-04-07 02:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,135.99 +2026-03-20 02:49:00,2026-03-22 02:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,0,106.85 +2026-04-14 06:06:50,2026-04-14 06:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,50.1,0.238,Fanduel,POINTS_TOTAL,51.5,1,122.08 +2026-02-22 02:50:00,2026-02-23 12:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,107.97 +2026-03-30 03:19:39,2026-03-30 05:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,-4.8,0.0,0.187,Fanduel,POINTS_SPREAD,1.6,1,106.55 +2026-03-18 12:19:00,2026-03-19 20:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,111.33 +2026-04-08 05:27:00,2026-04-08 18:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,210.8,0,111.27 +2026-04-03 17:35:39,2026-04-03 18:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,229.4,0.237,BetMGM,POINTS_TOTAL,234.8,0,100.0 +2026-03-05 11:03:00,2026-03-07 20:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,119.46 +2026-02-20 03:00:00,2026-02-20 19:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,146.77 +2026-04-13 17:30:00,2026-04-15 05:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-21 10:43:00,2026-03-23 11:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,108.28 +2026-03-16 14:51:00,2026-03-16 22:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,12.7,0,100.0 +2026-03-15 01:41:00,2026-03-16 08:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,49.2,1,115.04 +2026-04-12 04:57:40,2026-04-12 06:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.376,Fanduel,MONEYLINE,0.0,NA,117.9 +2026-04-13 21:38:49,2026-04-13 21:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,42.7,0.799,Fanduel,POINTS_TOTAL,38.1,0,104.43 +2026-04-04 22:35:00,2026-04-05 10:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.0,0,109.36 +2026-03-06 13:33:38,2026-03-06 12:00:00,NFL,Buffalo Bills,Philadelphia Eagles,-3.1,0.0,0.748,Fanduel,POINTS_SPREAD,2.7,0,100.0 +2026-02-23 08:58:00,2026-02-24 19:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,128.19 +2026-04-10 11:37:52,2026-04-10 11:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.916,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-21 14:28:00,2026-02-23 14:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.7,0,117.67 +2026-03-16 13:18:00,2026-03-19 00:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,110.59 +2026-03-17 21:29:54,2026-03-17 20:00:00,NFL,Buffalo Bills,Dallas Cowboys,4.6,0.0,0.755,Fanduel,POINTS_SPREAD,1.9,1,100.0 +2026-03-11 11:39:00,2026-03-11 12:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,5.0,0,100.0 +2026-03-07 09:16:48,2026-03-07 08:00:00,NBA,Golden State Warriors,Milwaukee Bucks,-4.1,0.0,0.76,Fanduel,POINTS_SPREAD,1.4,1,123.96 +2026-03-08 00:14:00,2026-03-09 15:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,38.7,1,104.32 +2026-03-27 13:12:00,2026-03-30 05:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,1,114.74 +2026-04-11 14:51:00,2026-04-13 21:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,0,120.06 +2026-03-31 16:55:16,2026-03-31 17:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,48.6,0.396,Fanduel,POINTS_TOTAL,44.3,1,112.2 +2026-04-17 15:49:00,2026-04-17 16:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,110.95 +2026-04-10 12:37:00,2026-04-11 11:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,180.48 +2026-03-14 00:33:00,2026-03-15 14:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,1,100.0 +2026-02-28 20:17:38,2026-02-28 20:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.598,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-31 23:14:00,2026-04-03 01:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.1,1,100.0 +2026-02-23 06:59:00,2026-02-25 15:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,0,124.38 +2026-03-06 10:54:00,2026-03-06 22:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,1,103.42 +2026-02-23 02:32:00,2026-02-23 03:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,231.9,0,132.65 +2026-04-16 13:51:45,2026-04-16 14:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,3.5,0.432,Fanduel,POINTS_TOTAL,3.5,0,119.24 +2026-03-02 14:21:30,2026-03-02 14:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.225,BetMGM,MONEYLINE,0.0,NA,118.31 +2026-03-23 00:44:00,2026-03-25 22:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,0,145.33 +2026-03-06 12:40:19,2026-03-06 13:00:00,NBA,Golden State Warriors,Boston Celtics,-7.5,0.0,0.274,BetMGM,POINTS_SPREAD,0.9,1,140.04 +2026-03-16 12:07:00,2026-03-16 17:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,141.53 +2026-04-15 05:35:00,2026-04-16 17:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,132.02 +2026-03-21 03:37:37,2026-03-21 05:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.259,Fanduel,MONEYLINE,0.0,NA,168.83 +2026-03-02 08:58:00,2026-03-05 02:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,31.9,0,107.87 +2026-03-15 14:18:00,2026-03-16 18:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,0,104.91 +2026-04-20 05:20:43,2026-04-20 05:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,53.1,0.154,Fanduel,POINTS_TOTAL,52.0,1,110.06 +2026-03-21 11:06:00,2026-03-23 01:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,12.8,1,117.63 +2026-03-11 03:37:00,2026-03-13 01:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,0,110.51 +2026-03-25 07:30:00,2026-03-25 13:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,132.93 +2026-02-23 12:34:00,2026-02-24 04:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,229.2,0,116.49 +2026-04-15 08:51:00,2026-04-17 01:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,153.35 +2026-04-08 01:51:00,2026-04-10 03:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,1,137.4 +2026-04-07 06:30:00,2026-04-07 21:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,131.86 +2026-03-15 10:26:09,2026-03-15 10:00:00,NBA,Miami Heat,Milwaukee Bucks,-4.5,0.0,0.362,Fanduel,POINTS_SPREAD,0.0,1,147.81 +2026-02-27 04:12:00,2026-02-27 06:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,1,103.68 +2026-04-09 23:17:00,2026-04-10 22:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,1,120.02 +2026-03-16 06:04:00,2026-03-17 12:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,104.82 +2026-03-09 16:53:30,2026-03-09 16:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,226.8,0.475,BetMGM,POINTS_TOTAL,234.1,0,100.0 +2026-04-13 14:27:00,2026-04-15 04:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,144.64 +2026-03-26 01:25:00,2026-03-26 10:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,239.1,0,100.0 +2026-03-14 18:37:00,2026-03-15 20:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,4.4,1,111.41 +2026-03-14 21:43:00,2026-03-17 10:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,110.37 +2026-02-26 07:03:00,2026-02-27 17:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,147.09 +2026-03-15 08:31:04,2026-03-15 07:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,223.4,0.606,BetMGM,POINTS_TOTAL,221.8,0,130.41 +2026-04-05 07:09:00,2026-04-05 20:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,111.66 +2026-04-15 13:00:00,2026-04-17 13:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,230.9,1,115.17 +2026-03-08 00:36:00,2026-03-08 23:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,1,109.68 +2026-04-02 16:44:28,2026-04-02 18:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.286,Fanduel,MONEYLINE,0.0,NA,106.97 +2026-04-02 15:29:57,2026-04-02 14:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,223.7,0.722,Fanduel,POINTS_TOTAL,218.6,0,107.96 +2026-04-07 16:06:00,2026-04-07 22:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,10.6,0,117.2 +2026-03-11 15:55:24,2026-03-11 15:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,1.8,0.0,0.68,Fanduel,POINTS_SPREAD,0.4,0,140.28 +2026-02-23 01:12:00,2026-02-25 02:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,136.9 +2026-02-24 03:13:00,2026-02-25 08:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,1,100.0 +2026-03-19 10:19:06,2026-03-19 11:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,61.3,0.295,Fanduel,POINTS_TOTAL,59.4,1,103.45 +2026-02-20 14:00:00,2026-02-20 21:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,1,115.78 +2026-04-06 16:42:52,2026-04-06 15:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.716,BetMGM,MONEYLINE,0.0,NA,149.06 +2026-04-06 00:39:00,2026-04-07 17:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,6.7,0,116.21 +2026-03-21 19:34:24,2026-03-21 19:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.43,BetMGM,MONEYLINE,0.0,NA,125.61 +2026-04-08 11:35:00,2026-04-11 10:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,0,111.0 +2026-03-18 16:58:55,2026-03-18 15:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,32.0,0.844,BetMGM,POINTS_TOTAL,35.5,1,115.28 +2026-04-05 23:34:18,2026-04-05 22:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.535,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-19 12:29:00,2026-02-21 19:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,0,100.0 +2026-03-26 15:55:00,2026-03-27 04:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,132.87 +2026-04-12 04:58:00,2026-04-12 06:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,240.2,1,112.18 +2026-03-10 10:24:16,2026-03-10 09:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.646,Fanduel,MONEYLINE,0.0,NA,116.55 +2026-02-25 06:57:00,2026-02-26 23:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,39.5,0,118.91 +2026-02-27 05:52:00,2026-03-01 15:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,17.3,0,100.0 +2026-03-05 19:54:00,2026-03-06 15:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,130.38 +2026-03-31 23:33:18,2026-03-31 22:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.835,BetMGM,MONEYLINE,0.0,NA,133.85 +2026-03-23 15:23:00,2026-03-25 06:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,0,143.16 +2026-03-03 12:45:00,2026-03-06 09:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,118.96 +2026-04-14 03:35:00,2026-04-15 08:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,68.8,0,100.0 +2026-04-03 02:05:00,2026-04-03 03:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,1,115.8 +2026-03-27 03:19:38,2026-03-27 04:00:00,NBA,Milwaukee Bucks,Golden State Warriors,4.9,0.0,0.248,BetMGM,POINTS_SPREAD,2.5,1,100.0 +2026-04-08 18:55:00,2026-04-10 17:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,31.7,1,104.38 +2026-03-20 07:07:00,2026-03-21 09:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.6,1,106.29 +2026-04-03 05:24:00,2026-04-04 11:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-18 09:05:56,2026-04-18 08:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.483,Fanduel,MONEYLINE,0.0,NA,138.95 +2026-02-24 07:25:19,2026-02-24 07:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.874,Fanduel,MONEYLINE,0.0,NA,117.45 +2026-02-24 16:24:06,2026-02-24 15:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.595,Fanduel,MONEYLINE,0.0,NA,120.12 +2026-03-18 06:05:00,2026-03-19 17:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,13.7,0,118.05 +2026-03-10 07:13:21,2026-03-10 07:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,219.1,0.602,BetMGM,POINTS_TOTAL,218.1,1,109.35 +2026-04-05 04:06:00,2026-04-05 14:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,49.6,1,108.88 +2026-03-20 11:55:00,2026-03-20 13:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,232.3,0,100.0 +2026-02-25 00:55:00,2026-02-27 07:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,159.32 +2026-03-30 00:55:55,2026-03-29 23:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,3.5,0.844,Fanduel,POINTS_TOTAL,6.1,1,100.0 +2026-03-26 16:15:00,2026-03-27 12:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,1,100.0 +2026-03-10 12:44:00,2026-03-11 05:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.5,1,108.76 +2026-03-05 00:17:00,2026-03-05 04:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,41.6,0,118.54 +2026-04-11 16:05:00,2026-04-12 01:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,0,110.55 +2026-04-08 06:06:00,2026-04-10 04:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,7.1,1,108.46 +2026-03-25 05:55:00,2026-03-25 08:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-01 07:25:00,2026-03-03 21:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,1,100.0 +2026-04-12 10:52:00,2026-04-12 12:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-25 23:00:00,2026-03-26 03:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,216.6,0,100.0 +2026-04-15 16:24:00,2026-04-16 13:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.8,1,105.97 +2026-03-15 11:53:02,2026-03-15 12:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.078,Fanduel,MONEYLINE,0.0,NA,137.7 +2026-03-11 12:52:06,2026-03-11 12:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.895,Fanduel,MONEYLINE,0.0,NA,148.48 +2026-04-15 15:22:00,2026-04-16 07:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,38.1,1,100.0 +2026-03-10 20:39:00,2026-03-12 07:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,114.11 +2026-04-13 14:26:00,2026-04-15 20:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.1,0,100.0 +2026-03-04 04:51:00,2026-03-06 09:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,220.3,1,100.0 +2026-03-20 07:20:39,2026-03-20 07:00:00,NHL,Colorado Avalanche,New York Rangers,0.1,0.0,0.287,BetMGM,POINTS_SPREAD,0.8,1,100.0 +2026-03-23 18:31:02,2026-03-23 18:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,63.8,0.928,BetMGM,POINTS_TOTAL,63.9,1,106.34 +2026-03-14 06:23:10,2026-03-14 06:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,223.8,0.451,Fanduel,POINTS_TOTAL,229.6,0,111.13 +2026-03-25 05:40:00,2026-03-26 04:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,41.9,0,111.9 +2026-02-28 12:04:00,2026-02-28 12:00:00,NHL,New York Rangers,Boston Bruins,0.0,3.5,0.4,BetMGM,POINTS_TOTAL,3.5,1,108.5 +2026-03-12 15:21:00,2026-03-13 04:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,0,121.2 +2026-02-23 05:57:32,2026-02-23 08:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.053,BetMGM,MONEYLINE,0.0,NA,122.34 +2026-03-16 20:11:00,2026-03-17 22:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,127.26 +2026-04-12 20:35:00,2026-04-14 19:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,107.96 +2026-04-06 02:21:00,2026-04-07 22:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,38.5,1,100.0 +2026-04-12 03:38:26,2026-04-12 04:00:00,NBA,Dallas Mavericks,Phoenix Suns,3.5,0.0,0.558,Fanduel,POINTS_SPREAD,2.1,1,100.0 +2026-03-01 21:03:00,2026-03-03 08:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,1,100.0 +2026-04-04 14:29:00,2026-04-06 16:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,38.3,1,100.0 +2026-04-19 11:20:24,2026-04-19 13:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.08,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-28 07:19:00,2026-03-30 23:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.7,1,108.81 +2026-03-23 11:13:00,2026-03-25 11:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,225.6,1,100.0 +2026-03-31 15:32:00,2026-04-02 20:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,151.8 +2026-02-22 13:08:02,2026-02-22 13:00:00,NHL,Colorado Avalanche,Edmonton Oilers,3.3,0.0,0.728,Fanduel,POINTS_SPREAD,0.4,1,110.44 +2026-03-29 21:03:00,2026-04-01 09:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,102.07 +2026-03-06 03:51:00,2026-03-08 03:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,140.69 +2026-04-15 15:08:28,2026-04-15 15:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.136,Fanduel,MONEYLINE,0.0,NA,105.39 +2026-04-12 23:10:27,2026-04-12 21:00:00,NHL,New York Rangers,Toronto Maple Leafs,3.6,0.0,0.897,BetMGM,POINTS_SPREAD,4.2,0,145.6 +2026-04-17 20:41:00,2026-04-20 03:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,0,100.0 +2026-02-25 01:35:00,2026-02-27 00:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,214.1,1,108.06 +2026-04-14 18:34:00,2026-04-16 09:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,216.8,0,118.09 +2026-03-18 23:22:00,2026-03-20 12:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,123.09 +2026-03-16 22:27:00,2026-03-17 03:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,35.8,1,103.42 +2026-04-10 15:55:19,2026-04-10 14:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.874,Fanduel,MONEYLINE,0.0,NA,151.76 +2026-03-21 01:06:38,2026-03-21 01:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,8.7,0.798,BetMGM,POINTS_TOTAL,15.0,1,103.18 +2026-03-08 02:01:00,2026-03-09 12:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,137.31 +2026-03-01 17:03:00,2026-03-02 12:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,0,100.0 +2026-04-13 11:59:57,2026-04-13 11:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,17.0,0.472,BetMGM,POINTS_TOTAL,18.6,0,100.0 +2026-03-11 00:29:00,2026-03-13 15:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,218.5,0,112.54 +2026-03-18 16:17:00,2026-03-21 08:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,113.37 +2026-03-19 20:23:00,2026-03-21 21:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.2,1,111.11 +2026-02-21 00:30:00,2026-02-21 23:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-01 17:58:48,2026-03-01 17:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.91,BetMGM,MONEYLINE,0.0,NA,136.35 +2026-03-15 12:15:00,2026-03-17 09:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-17 10:06:00,2026-04-20 10:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,143.53 +2026-04-12 19:22:09,2026-04-12 20:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.462,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-11 01:28:30,2026-04-11 01:00:00,NHL,Florida Panthers,Vegas Golden Knights,-1.0,0.0,0.425,Fanduel,POINTS_SPREAD,0.5,1,123.99 +2026-03-26 17:52:32,2026-03-26 16:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,19.6,0.653,Fanduel,POINTS_TOTAL,20.5,1,119.28 +2026-04-06 16:20:10,2026-04-06 16:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.451,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-12 19:01:44,2026-03-12 17:00:00,NBA,Miami Heat,Phoenix Suns,0.0,215.6,0.743,BetMGM,POINTS_TOTAL,209.6,0,123.04 +2026-03-21 05:34:00,2026-03-23 21:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,214.5,0,100.95 +2026-03-25 23:18:00,2026-03-26 19:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,0,100.0 +2026-03-21 14:05:00,2026-03-24 00:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,127.93 +2026-03-13 06:54:00,2026-03-15 22:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-04 00:48:00,2026-04-04 10:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,0,122.6 +2026-04-10 18:04:00,2026-04-11 15:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-05 03:36:00,2026-03-05 12:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,1,122.47 +2026-04-17 12:22:01,2026-04-17 13:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.9,0.0,0.139,Fanduel,POINTS_SPREAD,0.3,1,127.54 +2026-02-22 18:55:00,2026-02-25 01:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,1,106.38 +2026-02-28 15:34:00,2026-03-01 01:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,5.3,0,100.9 +2026-04-08 01:40:44,2026-04-08 02:00:00,NFL,Philadelphia Eagles,Miami Dolphins,1.2,0.0,0.243,BetMGM,POINTS_SPREAD,4.9,0,131.53 +2026-04-20 08:40:00,2026-04-20 09:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,122.58 +2026-03-12 05:12:01,2026-03-12 03:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,14.3,0.789,BetMGM,POINTS_TOTAL,13.6,0,130.51 +2026-03-12 09:30:00,2026-03-12 22:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.4,1,101.55 +2026-03-05 19:51:00,2026-03-06 15:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,105.69 +2026-02-25 14:44:00,2026-02-26 22:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,5.3,1,105.9 +2026-03-20 19:28:00,2026-03-21 14:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,1,100.0 +2026-04-12 13:01:00,2026-04-14 13:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.1,0,106.48 +2026-03-22 03:08:00,2026-03-22 17:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,1,117.14 +2026-03-17 20:18:00,2026-03-18 10:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,35.3,1,105.65 +2026-04-16 02:07:00,2026-04-18 01:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.0,1,106.05 +2026-03-29 18:41:00,2026-03-30 15:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,5.1,0,124.85 +2026-04-10 02:16:00,2026-04-12 12:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.8,1,126.84 +2026-04-18 19:13:00,2026-04-18 23:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.0,1,129.12 +2026-04-09 19:50:31,2026-04-09 20:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.414,BetMGM,MONEYLINE,0.0,NA,116.79 +2026-02-19 18:04:00,2026-02-21 12:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,114.15 +2026-03-14 16:53:12,2026-03-14 17:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.54,Fanduel,MONEYLINE,0.0,NA,126.32 +2026-03-23 08:37:13,2026-03-23 09:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,13.9,0.179,Fanduel,POINTS_TOTAL,9.9,1,100.0 +2026-03-18 19:28:51,2026-03-18 19:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.427,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-13 11:20:00,2026-03-16 09:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,0,100.0 +2026-02-28 11:15:31,2026-02-28 13:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.114,Fanduel,MONEYLINE,0.0,NA,147.23 +2026-03-03 06:52:00,2026-03-05 00:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,36.8,1,102.89 +2026-04-17 00:33:00,2026-04-19 23:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,225.8,1,109.77 +2026-02-20 20:38:10,2026-02-20 22:00:00,NBA,Miami Heat,Phoenix Suns,1.7,0.0,0.251,BetMGM,POINTS_SPREAD,1.1,1,109.21 +2026-03-07 06:38:10,2026-03-07 07:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,235.7,0.451,Fanduel,POINTS_TOTAL,231.9,0,109.46 +2026-03-24 21:32:00,2026-03-25 01:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,249.6,1,111.37 +2026-04-04 21:01:00,2026-04-05 07:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,123.46 +2026-02-20 09:14:00,2026-02-22 22:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,48.0,0,114.61 +2026-04-12 21:26:52,2026-04-12 21:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,211.8,0.416,Fanduel,POINTS_TOTAL,210.2,0,111.26 +2026-03-29 07:55:18,2026-03-29 07:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,50.2,0.335,BetMGM,POINTS_TOTAL,54.3,0,114.35 +2026-03-24 14:43:31,2026-03-24 15:00:00,NFL,Dallas Cowboys,Buffalo Bills,1.1,0.0,0.314,Fanduel,POINTS_SPREAD,0.0,1,108.49 +2026-03-13 20:15:00,2026-03-15 02:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,0,114.43 +2026-02-25 20:12:26,2026-02-25 19:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,3.5,0.958,Fanduel,POINTS_TOTAL,3.5,0,130.85 +2026-03-18 02:20:00,2026-03-18 19:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,0,118.81 +2026-02-25 14:13:42,2026-02-25 15:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.3,0.0,0.415,Fanduel,POINTS_SPREAD,2.9,1,135.93 +2026-02-17 17:45:00,2026-02-20 16:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,17.7,1,100.05 +2026-02-22 21:46:00,2026-02-24 21:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.6,1,116.66 +2026-03-15 07:34:20,2026-03-15 07:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,10.1,0.513,Fanduel,POINTS_TOTAL,7.6,0,127.58 +2026-04-18 08:23:32,2026-04-18 10:00:00,NHL,Boston Bruins,New York Rangers,-1.6,0.0,0.203,BetMGM,POINTS_SPREAD,4.5,0,100.0 +2026-03-30 06:12:00,2026-03-31 15:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.6,1,118.31 +2026-03-25 09:07:00,2026-03-25 07:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,217.7,0.85,Fanduel,POINTS_TOTAL,221.7,1,124.08 +2026-03-15 00:06:00,2026-03-15 15:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,1,100.0 +2026-02-21 09:10:00,2026-02-22 01:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,157.46 +2026-03-26 04:06:00,2026-03-27 14:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-11 16:18:00,2026-03-14 03:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,48.4,1,108.53 +2026-04-12 20:58:44,2026-04-12 19:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,227.6,0.843,BetMGM,POINTS_TOTAL,234.4,0,105.21 +2026-03-01 03:31:00,2026-03-02 00:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,50.9,1,109.32 +2026-04-12 07:55:22,2026-04-12 07:00:00,NBA,Miami Heat,Los Angeles Lakers,1.8,0.0,0.491,Fanduel,POINTS_SPREAD,0.1,0,111.53 +2026-04-19 20:20:00,2026-04-20 14:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,1,112.46 +2026-04-09 04:43:01,2026-04-09 04:00:00,NFL,Buffalo Bills,San Francisco 49ers,3.2,0.0,0.489,BetMGM,POINTS_SPREAD,1.0,1,112.01 +2026-04-05 09:12:00,2026-04-07 03:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,0,100.04 +2026-04-20 01:07:00,2026-04-20 06:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,0,130.03 +2026-02-27 16:38:20,2026-02-27 17:00:00,NFL,Dallas Cowboys,Buffalo Bills,-4.0,0.0,0.363,Fanduel,POINTS_SPREAD,0.4,1,118.88 +2026-04-13 05:13:00,2026-04-13 07:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,103.32 +2026-03-30 01:32:00,2026-03-30 07:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,219.1,1,124.71 +2026-04-10 09:37:00,2026-04-11 00:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,178.68 +2026-04-18 19:12:44,2026-04-18 18:00:00,NHL,Florida Panthers,New York Rangers,0.0,3.5,0.593,Fanduel,POINTS_TOTAL,10.7,0,100.0 +2026-03-23 06:13:14,2026-03-23 04:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,219.4,0.868,Fanduel,POINTS_TOTAL,217.5,0,100.46 +2026-04-02 20:39:39,2026-04-02 19:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,3.5,0.737,Fanduel,POINTS_TOTAL,7.2,0,106.13 +2026-02-21 18:05:00,2026-02-23 13:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,134.21 +2026-03-02 01:21:00,2026-03-02 18:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,107.22 +2026-03-26 15:51:00,2026-03-27 22:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.0,1,100.0 +2026-03-03 18:45:42,2026-03-03 17:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,48.3,0.865,Fanduel,POINTS_TOTAL,47.5,0,105.43 +2026-04-08 09:29:38,2026-04-08 07:00:00,NBA,Denver Nuggets,Phoenix Suns,-0.0,0.0,0.848,Fanduel,POINTS_SPREAD,2.7,1,113.33 +2026-03-15 00:27:00,2026-03-17 06:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,109.2 +2026-02-22 10:24:00,2026-02-22 12:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.8,1,102.24 +2026-04-01 09:28:44,2026-04-01 09:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.9,0.0,0.543,Fanduel,POINTS_SPREAD,0.7,1,108.0 +2026-02-26 01:27:00,2026-02-27 13:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,41.0,1,103.32 +2026-02-25 18:07:00,2026-02-27 18:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,121.31 +2026-04-08 07:57:00,2026-04-11 00:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,113.65 +2026-03-10 16:39:01,2026-03-10 16:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,51.0,0.539,Fanduel,POINTS_TOTAL,44.9,0,110.01 +2026-02-20 02:28:00,2026-02-23 00:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,34.3,1,119.36 +2026-03-01 02:05:38,2026-03-01 01:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.698,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-12 03:58:00,2026-04-12 08:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.9,1,126.21 +2026-03-23 11:06:00,2026-03-25 01:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,143.06 +2026-03-25 01:59:00,2026-03-26 13:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,0,103.56 +2026-04-11 11:27:32,2026-04-11 11:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,44.5,0.603,BetMGM,POINTS_TOTAL,42.4,0,126.39 +2026-04-07 06:48:00,2026-04-09 17:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,42.5,0,124.19 +2026-04-10 00:20:00,2026-04-11 06:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,119.38 +2026-03-11 15:37:33,2026-03-11 17:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.042,BetMGM,MONEYLINE,0.0,NA,130.25 +2026-02-20 12:12:00,2026-02-20 16:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,10.4,0,128.53 +2026-04-12 04:11:48,2026-04-12 03:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,223.2,0.46,Fanduel,POINTS_TOTAL,223.5,0,104.85 +2026-02-25 23:38:00,2026-02-27 01:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,120.24 +2026-02-26 05:55:00,2026-02-27 16:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,216.4,1,102.73 +2026-03-07 22:34:00,2026-03-09 03:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,64.5,0,100.0 +2026-04-10 19:20:46,2026-04-10 19:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.421,Fanduel,MONEYLINE,0.0,NA,158.8 +2026-04-09 01:32:00,2026-04-10 12:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,0,111.2 +2026-04-04 07:31:00,2026-04-04 09:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,23.3,0,100.0 +2026-03-14 03:03:00,2026-03-16 09:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,127.58 +2026-04-06 08:48:00,2026-04-07 19:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.0,0,100.0 +2026-03-28 22:53:00,2026-03-29 10:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.0,1,100.0 +2026-03-24 22:53:00,2026-03-25 19:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,236.6,0,106.46 +2026-04-04 06:04:00,2026-04-05 20:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,17.5,0,112.94 +2026-02-26 23:32:00,2026-02-27 10:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,15.5,0,121.99 +2026-02-24 18:12:00,2026-02-24 20:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-15 15:41:00,2026-04-18 11:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,112.96 +2026-04-12 16:09:00,2026-04-13 10:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,123.22 +2026-03-26 20:26:00,2026-03-28 04:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,6.8,0,107.44 +2026-03-05 12:17:13,2026-03-05 12:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,-1.1,0.0,0.129,Fanduel,POINTS_SPREAD,0.3,0,127.14 +2026-02-26 05:23:31,2026-02-26 06:00:00,NBA,Phoenix Suns,Golden State Warriors,5.7,0.0,0.064,Fanduel,POINTS_SPREAD,0.7,1,100.0 +2026-03-08 23:14:00,2026-03-10 08:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,229.8,0,100.0 +2026-03-30 12:26:08,2026-03-30 11:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.773,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-13 06:25:12,2026-03-13 08:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.04,BetMGM,MONEYLINE,0.0,NA,118.8 +2026-04-05 17:57:00,2026-04-06 18:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,101.38 +2026-04-02 19:15:08,2026-04-02 20:00:00,NHL,Boston Bruins,Florida Panthers,0.0,3.5,0.523,BetMGM,POINTS_TOTAL,8.9,1,132.43 +2026-03-21 14:07:00,2026-03-22 04:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,136.51 +2026-04-11 15:39:00,2026-04-13 02:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,138.78 +2026-04-13 20:45:00,2026-04-16 07:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,6.9,0,101.14 +2026-03-17 12:42:06,2026-03-17 11:00:00,NBA,Phoenix Suns,Miami Heat,0.0,219.7,0.595,BetMGM,POINTS_TOTAL,220.8,1,117.95 +2026-04-14 23:16:00,2026-04-15 11:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.6,0,117.57 +2026-03-16 01:04:58,2026-03-15 23:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,5.3,0.861,Fanduel,POINTS_TOTAL,8.6,0,116.25 +2026-03-14 08:32:00,2026-03-16 07:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.4,1,100.0 +2026-04-03 11:48:00,2026-04-04 23:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,139.29 +2026-04-18 09:40:00,2026-04-20 14:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,25.6,1,100.0 +2026-03-30 13:42:00,2026-04-01 18:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,1,100.0 +2026-03-29 00:24:00,2026-03-31 17:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,125.67 +2026-03-13 08:34:00,2026-03-16 03:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,0,108.5 +2026-04-13 01:51:00,2026-04-13 03:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-11 05:04:57,2026-04-11 04:00:00,NBA,Phoenix Suns,Boston Celtics,-3.9,0.0,0.522,Fanduel,POINTS_SPREAD,4.3,1,119.65 +2026-04-15 01:29:00,2026-04-16 13:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,119.54 +2026-03-24 21:45:00,2026-03-25 06:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,230.1,0,124.93 +2026-04-11 20:13:31,2026-04-11 21:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.364,BetMGM,MONEYLINE,0.0,NA,138.91 +2026-03-01 03:33:00,2026-03-03 19:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,0,100.0 +2026-04-02 11:57:00,2026-04-03 15:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,231.2,0,101.67 +2026-03-07 14:50:00,2026-03-08 04:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,14.4,0,115.57 +2026-04-09 22:55:00,2026-04-11 10:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,0,103.01 +2026-03-29 16:45:00,2026-03-30 20:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.0,1,132.09 +2026-04-03 22:55:00,2026-04-06 11:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,140.04 +2026-04-10 06:08:00,2026-04-11 12:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.8,1,113.99 +2026-04-12 09:38:28,2026-04-12 10:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,51.2,0.336,Fanduel,POINTS_TOTAL,52.8,1,116.34 +2026-03-05 22:27:00,2026-03-08 15:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,1,127.1 +2026-03-22 12:27:00,2026-03-23 04:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,221.7,1,117.61 +2026-03-03 03:38:52,2026-03-03 02:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.666,BetMGM,MONEYLINE,0.0,NA,123.93 +2026-03-29 22:12:03,2026-03-29 22:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.217,BetMGM,MONEYLINE,0.0,NA,162.15 +2026-03-29 21:05:00,2026-03-30 08:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,130.34 +2026-03-08 18:48:00,2026-03-11 06:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,20.1,1,103.05 +2026-04-16 03:34:00,2026-04-18 05:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,136.87 +2026-04-12 16:58:00,2026-04-13 00:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,143.12 +2026-03-19 18:31:18,2026-03-19 17:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,7.4,0.535,Fanduel,POINTS_TOTAL,6.7,1,109.12 +2026-03-07 07:19:57,2026-03-07 08:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,4.4,0.0,0.172,Fanduel,POINTS_SPREAD,0.5,0,136.09 +2026-03-09 17:15:00,2026-03-10 01:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,226.6,0,108.85 +2026-03-26 11:28:00,2026-03-28 12:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,239.6,0,117.3 +2026-03-15 10:20:00,2026-03-17 07:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,26.3,1,104.67 +2026-04-19 00:53:00,2026-04-19 08:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,128.24 +2026-03-06 16:04:04,2026-03-06 15:00:00,NBA,Golden State Warriors,Denver Nuggets,-3.0,0.0,0.706,Fanduel,POINTS_SPREAD,1.9,1,144.56 +2026-03-09 07:45:00,2026-03-11 04:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,199.8,0,132.03 +2026-03-29 18:01:00,2026-03-30 17:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,0,119.28 +2026-03-18 14:13:00,2026-03-21 13:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,1,100.0 +2026-03-04 00:16:28,2026-03-04 01:00:00,NBA,Denver Nuggets,Miami Heat,4.0,0.0,0.336,BetMGM,POINTS_SPREAD,4.0,1,100.0 +2026-03-29 19:35:26,2026-03-29 19:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,43.5,0.608,Fanduel,POINTS_TOTAL,45.8,0,107.74 +2026-04-12 19:56:32,2026-04-12 21:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,231.5,0.203,Fanduel,POINTS_TOTAL,229.4,1,100.0 +2026-04-12 19:38:32,2026-04-12 19:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,3.5,0.803,Fanduel,POINTS_TOTAL,7.6,0,100.0 +2026-04-01 02:30:00,2026-04-01 12:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,160.9 +2026-03-23 06:36:10,2026-03-23 05:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.851,BetMGM,MONEYLINE,0.0,NA,117.81 +2026-03-06 04:13:00,2026-03-08 21:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.9,0,100.0 +2026-04-18 00:23:16,2026-04-18 00:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.346,Fanduel,MONEYLINE,0.0,NA,116.55 +2026-03-27 18:17:28,2026-03-27 17:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.536,Fanduel,MONEYLINE,0.0,NA,133.78 +2026-03-05 23:51:00,2026-03-07 06:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,123.78 +2026-04-19 20:14:00,2026-04-21 06:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,123.6 +2026-04-10 07:43:00,2026-04-10 08:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,10.4,1,112.15 +2026-02-23 17:02:00,2026-02-25 16:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,109.54 +2026-03-17 14:44:00,2026-03-19 04:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,62.4,0,122.45 +2026-03-23 23:28:55,2026-03-24 00:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.494,Fanduel,MONEYLINE,0.0,NA,126.77 +2026-03-02 06:37:10,2026-03-02 06:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,59.9,0.951,BetMGM,POINTS_TOTAL,56.4,0,122.11 +2026-02-22 22:11:54,2026-02-22 22:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.7,0.0,0.205,Fanduel,POINTS_SPREAD,2.0,1,120.61 +2026-03-09 07:22:00,2026-03-09 16:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,6.0,1,100.0 +2026-04-03 07:33:43,2026-04-03 09:00:00,NBA,Dallas Mavericks,Boston Celtics,-3.3,0.0,0.104,Fanduel,POINTS_SPREAD,3.0,0,117.81 +2026-02-21 11:00:14,2026-02-21 10:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,5.1,0.718,BetMGM,POINTS_TOTAL,4.9,1,109.32 +2026-04-09 00:15:00,2026-04-09 14:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,212.5,1,104.06 +2026-02-24 22:34:00,2026-02-25 08:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,0,100.0 +2026-03-11 20:25:39,2026-03-11 20:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.587,Fanduel,MONEYLINE,0.0,NA,125.31 +2026-03-23 09:06:00,2026-03-26 02:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,1,134.96 +2026-03-06 04:12:00,2026-03-06 21:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,1,129.95 +2026-03-28 18:23:00,2026-03-31 03:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,0,114.19 +2026-04-11 22:18:00,2026-04-13 01:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,222.9,1,104.3 +2026-03-22 07:36:00,2026-03-24 22:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,170.45 +2026-03-17 12:24:15,2026-03-17 13:00:00,NFL,San Francisco 49ers,Detroit Lions,2.4,0.0,0.257,Fanduel,POINTS_SPREAD,2.6,1,116.13 +2026-04-07 05:44:00,2026-04-08 08:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,114.94 +2026-03-30 08:30:00,2026-03-31 07:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,58.9,0,115.93 +2026-03-11 15:10:00,2026-03-12 13:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,53.7,0,100.0 +2026-04-07 21:45:28,2026-04-07 23:00:00,NHL,Boston Bruins,Carolina Hurricanes,-1.6,0.0,0.086,Fanduel,POINTS_SPREAD,0.6,0,116.96 +2026-04-12 15:40:50,2026-04-12 16:00:00,NBA,Boston Celtics,Golden State Warriors,-0.1,0.0,0.588,Fanduel,POINTS_SPREAD,0.4,0,102.93 +2026-04-02 07:37:00,2026-04-03 03:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.6,1,110.51 +2026-03-16 07:56:50,2026-03-16 09:00:00,NBA,Miami Heat,Milwaukee Bucks,-4.8,0.0,0.038,BetMGM,POINTS_SPREAD,2.3,0,100.0 +2026-03-09 21:30:00,2026-03-12 17:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,111.97 +2026-03-10 07:11:00,2026-03-13 04:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,231.6,0,109.21 +2026-03-18 17:23:55,2026-03-18 16:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,3.5,0.844,BetMGM,POINTS_TOTAL,3.9,1,100.0 +2026-02-28 09:16:44,2026-02-28 09:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,61.0,0.743,Fanduel,POINTS_TOTAL,60.0,0,124.34 +2026-02-26 05:21:34,2026-02-26 06:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.381,BetMGM,MONEYLINE,0.0,NA,102.53 +2026-03-08 18:59:36,2026-03-08 17:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.77,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-20 08:35:03,2026-04-20 07:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.767,Fanduel,MONEYLINE,0.0,NA,140.68 +2026-04-12 22:00:00,2026-04-14 00:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,5.2,0,100.0 +2026-04-15 10:02:00,2026-04-15 17:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,0,127.12 +2026-03-29 22:34:30,2026-03-29 23:00:00,NBA,Miami Heat,Boston Celtics,0.0,238.1,0.325,BetMGM,POINTS_TOTAL,249.4,0,100.0 +2026-04-04 18:29:00,2026-04-05 17:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.9,1,102.16 +2026-02-20 02:54:00,2026-02-22 01:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,114.8 +2026-04-13 16:31:20,2026-04-13 16:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,49.8,0.663,Fanduel,POINTS_TOTAL,46.5,1,100.0 +2026-03-23 16:16:00,2026-03-26 00:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,117.56 +2026-04-20 04:58:51,2026-04-20 04:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,213.8,0.727,BetMGM,POINTS_TOTAL,222.2,0,100.0 +2026-03-03 15:38:00,2026-03-03 20:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.9,1,127.29 +2026-03-07 10:10:00,2026-03-10 06:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,133.64 +2026-03-21 15:03:00,2026-03-22 10:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-14 04:15:15,2026-03-14 02:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,-5.6,0.0,0.807,Fanduel,POINTS_SPREAD,1.9,0,103.43 +2026-04-04 00:06:00,2026-04-04 06:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,7.0,1,120.69 +2026-04-15 07:36:00,2026-04-17 00:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,0,109.67 +2026-03-18 09:46:09,2026-03-18 09:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,233.7,0.662,Fanduel,POINTS_TOTAL,229.1,1,100.0 +2026-03-11 16:34:51,2026-03-11 15:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.777,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-10 08:52:27,2026-03-10 09:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,24.0,0.197,Fanduel,POINTS_TOTAL,24.3,0,105.11 +2026-02-25 04:07:00,2026-02-25 23:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-13 06:44:00,2026-03-14 11:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,134.27 +2026-03-31 15:52:00,2026-04-01 03:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,136.58 +2026-03-22 00:34:37,2026-03-22 00:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.809,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-27 02:52:00,2026-02-28 02:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,0,100.0 +2026-03-18 07:18:00,2026-03-20 14:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,1,133.75 +2026-04-18 05:11:00,2026-04-18 10:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,238.3,1,130.35 +2026-02-24 05:02:00,2026-02-25 06:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,155.55 +2026-03-09 05:14:00,2026-03-11 14:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-21 04:20:00,2026-02-22 00:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,212.5,1,116.56 +2026-03-05 12:09:40,2026-03-05 13:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.476,BetMGM,MONEYLINE,0.0,NA,125.23 +2026-03-31 16:38:00,2026-04-01 00:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,1,127.03 +2026-03-03 07:27:00,2026-03-03 16:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.1,0,100.0 +2026-03-02 05:47:00,2026-03-02 18:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,139.46 +2026-03-04 12:55:00,2026-03-07 04:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,7.3,1,106.73 +2026-04-08 19:08:44,2026-04-08 20:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.143,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-10 06:50:55,2026-03-10 08:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,8.3,0.294,BetMGM,POINTS_TOTAL,8.1,0,101.56 +2026-03-12 18:50:28,2026-03-12 19:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,7.5,0.286,Fanduel,POINTS_TOTAL,10.3,1,107.22 +2026-03-16 01:48:00,2026-03-16 09:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,27.1,0,100.68 +2026-02-19 12:58:00,2026-02-20 16:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,116.63 +2026-04-14 12:04:00,2026-04-16 01:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,132.64 +2026-03-09 15:37:58,2026-03-09 17:00:00,NHL,Vegas Golden Knights,Boston Bruins,1.9,0.0,0.161,Fanduel,POINTS_SPREAD,1.1,1,114.28 +2026-04-07 22:47:10,2026-04-07 23:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.501,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-17 00:13:27,2026-04-16 22:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,2.7,0.0,0.847,BetMGM,POINTS_SPREAD,6.0,0,100.0 +2026-03-23 03:24:00,2026-03-25 08:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.2,1,120.43 +2026-02-24 06:59:00,2026-02-26 02:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,1,127.84 +2026-03-20 11:11:00,2026-03-23 07:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,0,100.0 +2026-03-31 13:49:21,2026-03-31 14:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.102,Fanduel,MONEYLINE,0.0,NA,118.01 +2026-04-10 09:32:00,2026-04-13 00:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,127.34 +2026-03-14 11:04:00,2026-03-15 04:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.0,1,143.51 +2026-04-13 15:04:00,2026-04-15 01:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.5,1,134.95 +2026-04-13 17:50:13,2026-04-13 16:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.829,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-08 11:52:00,2026-04-09 23:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,0,127.33 +2026-04-20 18:14:00,2026-04-20 20:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,210.5,1,112.14 +2026-02-21 23:30:36,2026-02-22 00:00:00,NBA,Los Angeles Lakers,Boston Celtics,1.6,0.0,0.37,BetMGM,POINTS_SPREAD,0.9,0,133.83 +2026-03-27 01:50:00,2026-03-29 10:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,35.0,0,115.51 +2026-02-25 03:20:00,2026-02-25 04:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,127.4 +2026-04-16 17:23:57,2026-04-16 16:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.822,BetMGM,MONEYLINE,0.0,NA,161.68 +2026-02-25 09:31:00,2026-02-25 18:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-19 12:54:00,2026-04-21 05:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,5.2,1,178.05 +2026-03-31 19:30:00,2026-04-01 07:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,135.1 +2026-02-20 13:28:00,2026-02-21 05:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,228.3,1,100.0 +2026-02-23 16:11:00,2026-02-24 01:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,49.7,0,108.5 +2026-04-18 06:51:00,2026-04-20 19:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.6,1,101.1 +2026-04-06 01:46:33,2026-04-06 02:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.542,Fanduel,MONEYLINE,0.0,NA,132.23 +2026-03-25 16:45:00,2026-03-27 16:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.9,1,100.26 +2026-04-17 12:37:00,2026-04-19 07:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,0,120.42 +2026-03-27 02:52:00,2026-03-29 10:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,39.6,1,114.25 +2026-03-23 02:04:44,2026-03-23 01:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,57.9,0.393,Fanduel,POINTS_TOTAL,61.4,0,100.0 +2026-02-26 05:48:00,2026-02-27 13:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.7,1,174.79 +2026-03-22 11:51:00,2026-03-23 14:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.0,0,125.95 +2026-02-20 03:46:00,2026-02-21 10:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,147.91 +2026-02-25 15:36:01,2026-02-25 15:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.439,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-06 00:49:00,2026-03-07 00:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,144.42 +2026-03-03 13:25:00,2026-03-06 03:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,25.1,0,100.0 +2026-04-16 22:13:00,2026-04-17 10:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.0,1,100.0 +2026-03-04 13:54:00,2026-03-05 21:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,155.31 +2026-03-09 17:19:00,2026-03-10 05:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.2,1,136.31 +2026-03-04 06:51:00,2026-03-04 20:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,120.21 +2026-03-25 02:37:00,2026-03-26 04:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,43.4,0,110.02 +2026-04-20 07:54:00,2026-04-20 23:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-09 15:58:00,2026-04-11 10:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.2,0,100.0 +2026-04-04 07:00:00,2026-04-06 19:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,126.04 +2026-04-08 02:45:00,2026-04-08 13:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.5,1,128.02 +2026-03-04 09:49:30,2026-03-04 11:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.325,Fanduel,MONEYLINE,0.0,NA,105.28 +2026-03-07 22:26:00,2026-03-10 18:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.6,1,112.24 +2026-03-31 13:13:00,2026-04-01 22:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,0,107.25 +2026-03-14 05:54:00,2026-03-15 09:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,109.57 +2026-02-26 02:21:00,2026-03-01 00:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,154.14 +2026-02-24 16:32:25,2026-02-24 17:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.2,0.0,0.369,Fanduel,POINTS_SPREAD,2.9,0,101.3 +2026-04-07 23:29:00,2026-04-09 22:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,1,100.0 +2026-03-25 06:43:00,2026-03-26 23:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,18.6,0,117.19 +2026-03-28 12:18:00,2026-03-31 01:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,110.22 +2026-03-10 12:32:00,2026-03-10 19:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,5.0,0,100.0 +2026-04-20 01:45:28,2026-04-20 02:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.136,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-19 04:18:14,2026-04-19 03:00:00,NFL,Detroit Lions,Philadelphia Eagles,-0.5,0.0,0.518,BetMGM,POINTS_SPREAD,1.3,1,100.0 +2026-02-22 15:44:00,2026-02-24 01:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,0,111.57 +2026-04-03 21:15:16,2026-04-03 21:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,45.3,0.596,Fanduel,POINTS_TOTAL,49.2,0,128.51 +2026-02-20 19:15:33,2026-02-20 20:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.9,0.0,0.392,Fanduel,POINTS_SPREAD,3.8,1,100.0 +2026-03-23 06:33:00,2026-03-25 05:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,1,100.99 +2026-03-29 19:29:34,2026-03-29 19:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,3.5,0.331,Fanduel,POINTS_TOTAL,3.5,0,100.0 +2026-02-26 12:39:00,2026-02-26 23:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.5,0,117.8 +2026-03-04 08:05:43,2026-03-04 09:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,52.8,0.104,BetMGM,POINTS_TOTAL,49.5,1,107.28 +2026-04-13 10:30:00,2026-04-16 08:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,1,127.24 +2026-04-10 16:03:00,2026-04-11 01:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,0,113.18 +2026-03-25 09:55:00,2026-03-27 08:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,172.86 +2026-03-07 12:29:00,2026-03-09 23:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,166.17 +2026-03-31 07:33:00,2026-04-01 22:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,148.72 +2026-04-09 07:54:51,2026-04-09 08:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,25.3,0.327,Fanduel,POINTS_TOTAL,24.9,1,101.68 +2026-04-18 04:01:00,2026-04-20 04:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-06 07:44:18,2026-04-06 08:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,7.7,0.585,BetMGM,POINTS_TOTAL,12.7,0,101.82 +2026-03-30 04:40:49,2026-03-30 05:00:00,NBA,Phoenix Suns,Los Angeles Lakers,-0.6,0.0,0.449,Fanduel,POINTS_SPREAD,0.6,0,100.0 +2026-04-03 16:12:00,2026-04-05 08:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,0,107.78 +2026-03-21 17:08:00,2026-03-21 21:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.0,0,140.25 +2026-03-23 06:47:00,2026-03-25 03:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,47.4,1,100.57 +2026-04-11 10:15:00,2026-04-11 14:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,235.8,1,114.12 +2026-03-30 01:13:03,2026-03-30 01:00:00,NHL,New York Rangers,Carolina Hurricanes,-2.1,0.0,0.417,Fanduel,POINTS_SPREAD,0.4,0,100.0 +2026-02-27 10:53:00,2026-02-28 09:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.2,0,100.0 +2026-03-11 03:58:00,2026-03-14 00:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,134.72 +2026-02-27 13:14:57,2026-02-27 13:00:00,NHL,Florida Panthers,New York Rangers,0.0,3.5,0.122,Fanduel,POINTS_TOTAL,4.8,0,109.67 +2026-04-14 03:08:00,2026-04-14 12:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.6,1,110.1 +2026-03-31 10:25:00,2026-03-31 12:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,126.11 +2026-03-26 20:32:50,2026-03-26 20:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.538,BetMGM,MONEYLINE,0.0,NA,160.14 +2026-04-18 08:44:00,2026-04-21 06:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,100.0 +2026-04-03 17:08:00,2026-04-04 09:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-07 04:06:46,2026-03-07 05:00:00,NHL,Boston Bruins,Florida Panthers,-1.8,0.0,0.271,BetMGM,POINTS_SPREAD,0.1,1,115.93 +2026-03-08 01:32:49,2026-03-08 02:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.299,BetMGM,MONEYLINE,0.0,NA,113.36 +2026-03-29 05:47:00,2026-03-31 22:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,0,137.75 +2026-03-29 14:45:07,2026-03-29 15:00:00,NFL,Detroit Lions,Buffalo Bills,-1.4,0.0,0.134,BetMGM,POINTS_SPREAD,3.2,0,100.0 +2026-03-07 10:47:00,2026-03-07 20:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,1,139.09 +2026-02-28 14:42:00,2026-03-03 04:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,1,117.92 +2026-03-26 12:09:56,2026-03-26 12:00:00,NFL,Detroit Lions,Baltimore Ravens,1.0,0.0,0.283,Fanduel,POINTS_SPREAD,0.2,0,118.22 +2026-04-11 05:57:00,2026-04-11 17:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-06 05:44:56,2026-03-06 05:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.933,Fanduel,MONEYLINE,0.0,NA,208.2 +2026-04-18 04:36:00,2026-04-18 20:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.4,1,109.11 +2026-02-23 20:59:42,2026-02-23 21:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,249.6,0.315,BetMGM,POINTS_TOTAL,251.6,0,119.85 +2026-04-07 23:14:00,2026-04-09 00:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,0,100.0 +2026-03-31 19:14:00,2026-04-02 17:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.7,1,100.93 +2026-03-29 06:42:00,2026-03-31 13:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,0,100.0 +2026-03-10 07:50:03,2026-03-10 08:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.167,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-13 06:20:26,2026-03-13 06:00:00,NBA,Golden State Warriors,Phoenix Suns,-0.2,0.0,0.208,Fanduel,POINTS_SPREAD,3.8,1,101.19 +2026-03-31 14:38:00,2026-03-31 17:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-14 04:16:00,2026-03-16 09:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,41.3,0,123.74 +2026-04-10 20:55:00,2026-04-12 07:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-12 11:35:00,2026-03-13 06:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-22 15:38:00,2026-02-24 16:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,143.54 +2026-03-14 08:30:01,2026-03-14 09:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.589,BetMGM,MONEYLINE,0.0,NA,131.04 +2026-03-13 01:30:00,2026-03-13 12:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,0,111.69 +2026-04-05 10:32:58,2026-04-05 11:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.361,Fanduel,MONEYLINE,0.0,NA,192.09 +2026-03-03 20:23:18,2026-03-03 19:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,-0.4,0.0,0.835,BetMGM,POINTS_SPREAD,0.2,1,106.47 +2026-03-30 16:03:00,2026-04-01 17:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,15.2,1,116.56 +2026-03-26 22:33:12,2026-03-27 00:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.24,BetMGM,MONEYLINE,0.0,NA,123.75 +2026-03-18 10:00:00,2026-03-21 07:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,227.2,1,107.69 +2026-03-28 20:41:00,2026-03-31 17:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,0,133.8 +2026-02-25 06:47:00,2026-02-27 23:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,196.38 +2026-03-10 06:34:00,2026-03-11 13:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,223.0,0,100.0 +2026-02-22 04:03:00,2026-02-23 04:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,0,120.75 +2026-04-10 12:36:00,2026-04-13 08:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,172.43 +2026-02-23 12:38:34,2026-02-23 14:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.081,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-07 19:58:00,2026-04-08 18:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,218.6,0,112.99 +2026-04-18 03:30:08,2026-04-18 03:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,34.3,0.323,Fanduel,POINTS_TOTAL,36.7,0,120.27 +2026-04-13 03:05:50,2026-04-13 03:00:00,NFL,Kansas City Chiefs,Buffalo Bills,1.4,0.0,0.738,Fanduel,POINTS_SPREAD,1.3,1,110.34 +2026-04-16 04:50:00,2026-04-16 14:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,214.1,1,100.0 +2026-03-29 04:54:00,2026-03-30 00:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,210.1,1,111.37 +2026-02-23 08:25:00,2026-02-25 15:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,0,100.0 +2026-04-11 06:50:00,2026-04-12 05:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,47.8,1,101.11 +2026-02-21 23:11:00,2026-02-24 01:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,211.6,1,107.65 +2026-03-19 20:03:49,2026-03-19 21:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,-3.1,0.0,0.399,BetMGM,POINTS_SPREAD,0.4,1,123.48 +2026-03-09 00:08:55,2026-03-08 23:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.594,BetMGM,MONEYLINE,0.0,NA,100.35 +2026-04-16 13:01:00,2026-04-19 09:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,147.47 +2026-04-07 10:32:00,2026-04-09 11:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,0,127.85 +2026-04-16 05:45:00,2026-04-16 14:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.0,0,126.66 +2026-03-03 05:06:27,2026-03-03 04:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,2.6,0.0,0.447,Fanduel,POINTS_SPREAD,1.5,1,101.19 +2026-03-23 08:51:00,2026-03-24 01:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,1,100.0 +2026-03-24 13:19:00,2026-03-25 22:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,0,100.0 +2026-02-25 02:59:00,2026-02-25 06:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,115.53 +2026-03-10 22:37:00,2026-03-11 03:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,54.7,1,109.97 +2026-03-23 06:00:00,2026-03-26 02:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,229.5,0,100.0 +2026-03-19 16:21:00,2026-03-19 16:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.6,0.0,0.4,BetMGM,POINTS_SPREAD,1.2,1,102.94 +2026-04-09 14:51:00,2026-04-12 14:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,0,100.0 +2026-03-08 03:36:00,2026-03-10 09:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.9,1,123.82 +2026-03-29 06:07:00,2026-03-31 09:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,224.8,1,125.29 +2026-04-10 21:11:00,2026-04-11 11:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,37.1,1,104.8 +2026-03-08 04:22:00,2026-03-08 21:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,19.2,1,111.63 +2026-04-11 15:33:00,2026-04-13 00:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,20.0,1,103.87 +2026-03-13 04:21:56,2026-03-13 05:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.033,BetMGM,MONEYLINE,0.0,NA,106.76 +2026-02-22 20:42:19,2026-02-22 18:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,10.8,0.924,Fanduel,POINTS_TOTAL,19.4,0,106.99 +2026-04-06 19:01:54,2026-04-06 18:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,224.5,0.855,BetMGM,POINTS_TOTAL,222.8,1,100.0 +2026-02-27 00:20:00,2026-02-28 03:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,0,112.19 +2026-03-11 13:21:00,2026-03-11 21:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.0,1,115.72 +2026-03-11 03:20:00,2026-03-12 10:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,19.8,0,116.92 +2026-03-04 06:05:00,2026-03-05 11:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,0,103.07 +2026-03-27 02:55:00,2026-03-29 17:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,113.77 +2026-04-11 22:43:00,2026-04-14 09:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,0,125.39 +2026-04-08 05:33:00,2026-04-09 23:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.1,1,132.26 +2026-03-04 08:09:00,2026-03-04 21:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,47.4,1,130.04 +2026-04-14 04:44:00,2026-04-16 21:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,220.3,0,135.8 +2026-04-18 10:01:00,2026-04-19 21:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,0,100.0 +2026-04-20 03:17:57,2026-04-20 03:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,-4.1,0.0,0.172,Fanduel,POINTS_SPREAD,2.3,1,154.18 +2026-03-25 03:05:00,2026-03-26 10:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,51.0,1,100.0 +2026-02-20 21:13:57,2026-02-20 21:00:00,NHL,Colorado Avalanche,Florida Panthers,3.2,0.0,0.122,BetMGM,POINTS_SPREAD,2.6,1,110.54 +2026-04-17 10:37:00,2026-04-18 14:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,26.3,1,113.13 +2026-04-18 00:07:00,2026-04-19 06:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,1,140.67 +2026-03-08 08:32:55,2026-03-08 07:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,52.6,0.794,BetMGM,POINTS_TOTAL,58.4,0,100.0 +2026-03-12 02:11:04,2026-03-12 01:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,222.6,0.406,Fanduel,POINTS_TOTAL,227.6,0,100.0 +2026-04-18 20:05:14,2026-04-18 20:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.668,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-03 08:15:00,2026-03-05 23:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,121.64 +2026-04-09 14:22:31,2026-04-09 16:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.214,BetMGM,MONEYLINE,0.0,NA,167.35 +2026-03-22 23:29:48,2026-03-23 00:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,5.3,0.36,Fanduel,POINTS_TOTAL,4.2,0,121.94 +2026-03-22 20:01:00,2026-03-25 03:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,146.72 +2026-03-14 07:21:09,2026-03-14 06:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,50.7,0.912,BetMGM,POINTS_TOTAL,53.0,0,105.97 +2026-02-27 23:07:00,2026-02-28 09:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,151.63 +2026-03-17 19:18:00,2026-03-20 06:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,0,116.08 +2026-04-05 17:39:00,2026-04-05 19:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.0,1,118.22 +2026-03-13 00:37:15,2026-03-13 00:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.307,BetMGM,MONEYLINE,0.0,NA,149.94 +2026-04-15 02:19:00,2026-04-16 19:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,0,100.0 +2026-04-18 11:45:00,2026-04-20 18:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,219.9,0,114.42 +2026-03-31 07:27:00,2026-04-02 00:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,51.9,1,105.01 +2026-04-18 22:59:00,2026-04-20 03:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,111.3 +2026-03-16 03:55:00,2026-03-18 03:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,250.2,1,109.65 +2026-04-12 22:31:10,2026-04-12 22:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,46.7,0.951,Fanduel,POINTS_TOTAL,39.3,0,127.09 +2026-03-08 17:17:00,2026-03-10 21:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,1,131.9 +2026-04-14 07:18:14,2026-04-14 06:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,240.4,0.918,BetMGM,POINTS_TOTAL,242.5,0,105.89 +2026-03-14 10:07:49,2026-03-14 09:00:00,NHL,Florida Panthers,New York Rangers,4.7,0.0,0.849,BetMGM,POINTS_SPREAD,0.1,1,100.0 +2026-04-01 04:43:00,2026-04-01 16:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,139.8 +2026-02-26 21:59:31,2026-02-26 21:00:00,NBA,Boston Celtics,Los Angeles Lakers,3.5,0.0,0.764,Fanduel,POINTS_SPREAD,2.4,1,112.23 +2026-02-18 02:02:00,2026-02-20 15:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,222.5,1,103.8 +2026-04-02 16:27:32,2026-04-02 15:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,12.4,0.903,Fanduel,POINTS_TOTAL,13.0,0,108.63 +2026-04-10 00:41:26,2026-04-10 01:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.558,Fanduel,MONEYLINE,0.0,NA,161.44 +2026-02-26 11:53:00,2026-02-28 01:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,5.9,1,121.28 +2026-03-02 02:49:02,2026-03-02 04:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.078,Fanduel,MONEYLINE,0.0,NA,143.18 +2026-03-07 00:41:00,2026-03-09 00:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,12.0,0,108.68 +2026-04-17 20:18:00,2026-04-19 00:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.9,1,109.56 +2026-03-22 06:52:00,2026-03-22 21:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.2,1,100.0 +2026-03-03 02:30:00,2026-03-05 08:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,15.6,0,109.73 +2026-03-19 10:20:00,2026-03-20 21:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,0,100.0 +2026-03-07 05:45:00,2026-03-10 00:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,0,100.0 +2026-02-22 11:42:00,2026-02-23 04:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.7,1,139.54 +2026-03-03 09:22:00,2026-03-04 16:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,234.9,0,118.84 +2026-04-18 05:26:30,2026-04-18 07:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,40.0,0.125,BetMGM,POINTS_TOTAL,41.6,0,100.0 +2026-04-18 01:06:00,2026-04-18 21:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,1,107.71 +2026-04-08 07:30:00,2026-04-09 19:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,143.16 +2026-04-13 14:14:00,2026-04-15 23:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,0,101.8 +2026-04-09 12:26:26,2026-04-09 12:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.608,BetMGM,MONEYLINE,0.0,NA,165.77 +2026-03-15 17:38:24,2026-03-15 18:00:00,NHL,Boston Bruins,Vegas Golden Knights,-3.1,0.0,0.33,Fanduel,POINTS_SPREAD,0.7,1,151.16 +2026-03-13 01:18:00,2026-03-14 22:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,115.46 +2026-02-19 23:24:00,2026-02-22 17:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,232.7,1,107.91 +2026-03-23 09:15:12,2026-03-23 09:00:00,NFL,Philadelphia Eagles,Detroit Lions,4.5,0.0,0.09,BetMGM,POINTS_SPREAD,2.1,1,100.0 +2026-03-04 13:21:36,2026-03-04 14:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,22.5,0.32,BetMGM,POINTS_TOTAL,23.3,1,100.0 +2026-02-25 03:54:00,2026-02-25 20:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.1,0,100.0 +2026-02-26 07:32:39,2026-02-26 08:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.187,Fanduel,MONEYLINE,0.0,NA,113.43 +2026-03-25 22:49:13,2026-03-25 21:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.679,BetMGM,MONEYLINE,0.0,NA,161.92 +2026-02-21 12:58:00,2026-02-22 07:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,5.5,0,117.64 +2026-03-16 06:47:01,2026-03-16 06:00:00,NFL,Buffalo Bills,Dallas Cowboys,1.6,0.0,0.439,Fanduel,POINTS_SPREAD,2.7,1,127.72 +2026-02-24 12:32:33,2026-02-24 12:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,3.5,0.192,Fanduel,POINTS_TOTAL,3.8,1,104.99 +2026-03-25 17:21:49,2026-03-25 17:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.799,Fanduel,MONEYLINE,0.0,NA,117.0 +2026-04-14 19:46:00,2026-04-17 11:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,155.6 +2026-03-03 23:27:00,2026-03-06 19:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,139.1 +2026-03-08 07:06:52,2026-03-08 08:00:00,NBA,Miami Heat,Golden State Warriors,-2.4,0.0,0.266,BetMGM,POINTS_SPREAD,0.7,1,121.29 +2026-04-04 04:39:24,2026-04-04 06:00:00,NBA,Denver Nuggets,Miami Heat,3.2,0.0,0.33,Fanduel,POINTS_SPREAD,1.0,0,114.08 +2026-04-19 04:37:34,2026-04-19 04:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.881,BetMGM,MONEYLINE,0.0,NA,121.51 +2026-03-20 03:00:00,2026-03-21 05:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,7.1,1,113.51 +2026-03-30 23:32:51,2026-03-31 00:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.377,Fanduel,MONEYLINE,0.0,NA,110.57 +2026-04-15 09:26:50,2026-04-15 10:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,51.4,0.588,BetMGM,POINTS_TOTAL,51.2,0,118.48 +2026-04-08 21:25:00,2026-04-11 14:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.6,1,103.63 +2026-03-28 09:43:33,2026-03-28 10:00:00,NHL,Florida Panthers,New York Rangers,0.0,24.9,0.542,BetMGM,POINTS_TOTAL,29.3,1,109.64 +2026-04-10 05:19:45,2026-04-10 07:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,8.4,0.182,Fanduel,POINTS_TOTAL,8.3,0,100.0 +2026-03-15 23:48:00,2026-03-16 06:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,235.5,1,107.83 +2026-03-13 07:32:00,2026-03-14 05:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.6,0,110.22 +2026-03-14 20:19:00,2026-03-16 21:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-12 02:37:26,2026-03-12 01:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.558,Fanduel,MONEYLINE,0.0,NA,106.43 +2026-02-27 09:36:00,2026-03-02 04:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.8,1,100.0 +2026-03-01 23:41:28,2026-03-01 23:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,226.5,0.486,Fanduel,POINTS_TOTAL,226.8,1,120.48 +2026-04-18 03:04:00,2026-04-18 04:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,18.9,0,103.24 +2026-04-05 16:22:15,2026-04-05 16:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,49.3,0.607,Fanduel,POINTS_TOTAL,45.6,0,125.96 +2026-03-31 22:03:00,2026-04-02 06:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,57.6,1,140.01 +2026-03-05 07:31:00,2026-03-06 00:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,114.58 +2026-03-04 16:57:50,2026-03-04 18:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.138,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-29 18:57:10,2026-03-29 19:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.201,Fanduel,MONEYLINE,0.0,NA,168.92 +2026-03-02 22:06:00,2026-03-04 11:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,229.5,0,100.38 +2026-03-01 08:30:51,2026-03-01 07:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,237.6,0.577,Fanduel,POINTS_TOTAL,229.6,1,104.36 +2026-02-21 11:27:00,2026-02-22 12:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.9,1,120.36 +2026-04-15 01:06:00,2026-04-15 18:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,212.3,1,115.6 +2026-04-04 21:30:00,2026-04-06 02:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,28.1,1,100.99 +2026-04-13 12:27:00,2026-04-13 23:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,205.4,1,102.0 +2026-03-11 00:48:30,2026-03-11 00:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.475,BetMGM,MONEYLINE,0.0,NA,106.88 +2026-03-23 16:22:00,2026-03-25 01:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,116.17 +2026-04-16 16:50:00,2026-04-18 23:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,1,112.65 +2026-03-06 05:17:00,2026-03-08 13:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,136.84 +2026-04-12 11:12:32,2026-04-12 09:00:00,NHL,Florida Panthers,New York Rangers,0.0,11.7,0.753,Fanduel,POINTS_TOTAL,12.5,1,107.62 +2026-03-03 02:20:43,2026-03-03 01:00:00,NBA,Golden State Warriors,Boston Celtics,-3.7,0.0,0.754,BetMGM,POINTS_SPREAD,0.6,0,100.0 +2026-03-18 01:26:00,2026-03-18 07:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.3,0,125.46 +2026-03-14 14:49:00,2026-03-16 23:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,218.7,1,111.7 +2026-04-07 14:32:18,2026-04-07 16:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,49.1,0.185,BetMGM,POINTS_TOTAL,47.2,0,117.4 +2026-03-30 05:18:08,2026-03-30 05:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.873,Fanduel,MONEYLINE,0.0,NA,136.61 +2026-04-04 12:31:00,2026-04-04 14:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,0,100.0 +2026-02-24 08:38:00,2026-02-25 05:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,4.0,1,100.0 +2026-04-13 02:13:00,2026-04-16 02:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.5,1,111.4 +2026-03-12 01:40:00,2026-03-12 03:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,120.12 +2026-03-15 16:13:58,2026-03-15 17:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.211,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-19 04:54:00,2026-03-19 05:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,7.7,0.25,Fanduel,POINTS_TOTAL,7.8,1,126.57 +2026-03-21 18:14:00,2026-03-23 00:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,135.44 +2026-03-18 10:40:00,2026-03-20 12:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,226.9,1,133.72 +2026-03-11 07:13:00,2026-03-14 07:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,136.8 +2026-03-06 18:46:00,2026-03-07 01:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,0,100.0 +2026-04-08 20:08:00,2026-04-10 19:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,150.29 +2026-03-12 00:50:00,2026-03-14 08:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,111.52 +2026-02-26 11:14:00,2026-02-27 16:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,1,100.0 +2026-03-15 13:11:51,2026-03-15 11:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,25.1,0.877,Fanduel,POINTS_TOTAL,34.4,0,100.0 +2026-02-21 23:06:00,2026-02-23 20:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.9,1,126.6 +2026-02-28 09:09:00,2026-03-01 10:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,238.5,1,122.54 +2026-02-25 07:20:18,2026-02-25 08:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.035,Fanduel,MONEYLINE,0.0,NA,118.81 +2026-04-13 12:30:00,2026-04-13 15:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,45.1,1,113.96 +2026-03-25 14:42:00,2026-03-26 08:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,153.38 +2026-04-12 22:02:00,2026-04-15 10:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.1,1,100.0 +2026-03-16 06:18:09,2026-03-16 06:00:00,NBA,Golden State Warriors,Milwaukee Bucks,-2.1,0.0,0.862,BetMGM,POINTS_SPREAD,3.2,1,100.0 +2026-02-21 06:05:00,2026-02-21 17:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.6,1,103.53 +2026-03-05 10:48:34,2026-03-05 09:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,223.8,0.881,BetMGM,POINTS_TOTAL,229.3,1,116.57 +2026-03-10 05:11:09,2026-03-10 04:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,223.7,0.612,Fanduel,POINTS_TOTAL,222.1,1,115.45 +2026-04-20 23:20:24,2026-04-20 23:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,230.9,0.38,BetMGM,POINTS_TOTAL,236.2,0,101.28 +2026-03-02 07:04:04,2026-03-02 08:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.156,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-09 08:52:15,2026-04-09 11:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,46.1,0.057,Fanduel,POINTS_TOTAL,48.3,0,131.79 +2026-03-24 19:16:00,2026-03-26 10:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,1,104.29 +2026-02-28 11:55:00,2026-03-02 02:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-22 09:23:15,2026-03-22 10:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,245.6,0.307,BetMGM,POINTS_TOTAL,247.7,0,100.0 +2026-03-20 21:54:00,2026-03-23 03:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.8,0,117.62 +2026-02-25 02:00:00,2026-02-27 08:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,1,100.0 +2026-04-03 23:23:00,2026-04-06 21:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,100.0 +2026-03-13 13:41:00,2026-03-15 06:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,32.1,0,104.23 +2026-04-06 06:10:00,2026-04-06 17:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,185.83 +2026-03-05 15:41:00,2026-03-07 22:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,36.4,1,108.15 +2026-03-06 13:56:07,2026-03-06 14:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,39.5,0.534,Fanduel,POINTS_TOTAL,42.0,1,141.09 +2026-03-24 01:24:00,2026-03-25 06:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,51.5,0,123.11 +2026-03-25 18:56:56,2026-03-25 18:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,240.6,0.383,BetMGM,POINTS_TOTAL,240.4,1,108.67 +2026-02-23 12:38:00,2026-02-24 05:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,0,100.0 +2026-03-28 18:53:00,2026-03-29 04:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,230.1,0,100.0 +2026-03-17 12:16:21,2026-03-17 14:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,41.4,0.052,BetMGM,POINTS_TOTAL,36.2,0,101.79 +2026-02-22 09:13:00,2026-02-25 06:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,108.98 +2026-03-02 01:18:00,2026-03-04 12:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,152.41 +2026-03-16 04:39:00,2026-03-16 05:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,39.4,0,110.74 +2026-03-06 03:53:00,2026-03-07 03:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.5,0,100.0 +2026-02-22 10:43:00,2026-02-25 08:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,53.4,1,113.21 +2026-03-28 04:43:37,2026-03-28 04:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,42.4,0.309,Fanduel,POINTS_TOTAL,42.1,0,113.24 +2026-02-18 04:59:00,2026-02-20 22:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,164.35 +2026-02-28 10:14:00,2026-03-01 19:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,117.59 +2026-04-01 07:18:00,2026-04-02 08:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,238.5,0,100.0 +2026-02-25 18:37:00,2026-02-28 08:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,5.0,0,100.0 +2026-04-18 00:09:00,2026-04-19 20:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,113.74 +2026-02-26 12:12:56,2026-02-26 12:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.133,Fanduel,MONEYLINE,0.0,NA,120.07 +2026-03-28 15:05:20,2026-03-28 14:00:00,NHL,Colorado Avalanche,New York Rangers,1.2,0.0,0.713,BetMGM,POINTS_SPREAD,1.5,1,100.0 +2026-03-01 18:40:00,2026-03-02 16:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,4.1,0,121.89 +2026-03-09 23:50:51,2026-03-09 23:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,-2.7,0.0,0.927,Fanduel,POINTS_SPREAD,2.9,0,118.98 +2026-02-19 13:56:00,2026-02-21 01:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,59.5,0,115.18 +2026-04-09 15:55:00,2026-04-10 11:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,1,100.0 +2026-02-21 16:56:00,2026-02-23 13:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,50.3,0,131.08 +2026-04-10 20:12:19,2026-04-10 18:00:00,NHL,Florida Panthers,Boston Bruins,0.0,4.0,0.874,BetMGM,POINTS_TOTAL,6.2,1,107.88 +2026-03-14 15:05:00,2026-03-17 05:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,53.5,1,124.39 +2026-03-31 08:02:00,2026-04-02 06:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,104.27 +2026-03-14 02:38:10,2026-03-14 04:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.101,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-14 21:18:19,2026-04-14 22:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,39.1,0.524,BetMGM,POINTS_TOTAL,33.8,1,100.0 +2026-03-23 08:05:12,2026-03-23 07:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.59,Fanduel,MONEYLINE,0.0,NA,169.42 +2026-03-01 23:36:40,2026-03-02 00:00:00,NBA,Phoenix Suns,Milwaukee Bucks,1.5,0.0,0.226,Fanduel,POINTS_SPREAD,3.1,0,107.9 +2026-03-11 01:16:21,2026-03-11 01:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.852,Fanduel,MONEYLINE,0.0,NA,130.67 +2026-04-18 19:36:15,2026-04-18 20:00:00,NFL,Miami Dolphins,Buffalo Bills,2.9,0.0,0.157,BetMGM,POINTS_SPREAD,1.0,1,100.0 +2026-04-14 16:50:44,2026-04-14 15:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.893,BetMGM,MONEYLINE,0.0,NA,104.29 +2026-02-28 03:41:00,2026-03-02 06:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,5.2,1,152.86 +2026-04-12 12:14:00,2026-04-14 18:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,110.78 +2026-03-01 22:26:00,2026-03-02 07:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.9,0,127.78 +2026-04-14 00:12:32,2026-04-14 02:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,4.6,0.153,Fanduel,POINTS_TOTAL,14.3,1,126.69 +2026-03-02 06:18:00,2026-03-03 10:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,0,100.0 +2026-03-24 23:34:00,2026-03-26 10:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,231.0,1,100.0 +2026-03-26 10:33:31,2026-03-26 09:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.814,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-03 01:50:00,2026-04-03 13:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,119.34 +2026-03-22 11:13:00,2026-03-22 13:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-18 15:58:00,2026-02-21 13:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,209.6,0,121.45 +2026-03-05 19:59:00,2026-03-07 01:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,1,132.46 +2026-04-18 16:14:00,2026-04-18 19:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,224.3,0,105.63 +2026-04-17 02:34:00,2026-04-17 21:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.8,0,100.0 +2026-03-14 02:39:00,2026-03-17 02:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,143.58 +2026-04-19 06:14:12,2026-04-19 07:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,10.0,0.09,Fanduel,POINTS_TOTAL,12.5,0,106.46 +2026-03-28 18:30:31,2026-03-28 19:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.114,BetMGM,MONEYLINE,0.0,NA,189.81 +2026-03-29 19:18:00,2026-03-30 03:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,0,129.54 +2026-04-16 13:54:00,2026-04-17 12:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,108.71 +2026-03-22 18:43:00,2026-03-24 09:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,120.66 +2026-04-13 10:34:00,2026-04-14 02:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,28.4,0,113.33 +2026-03-10 12:35:52,2026-03-10 12:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,228.6,0.816,BetMGM,POINTS_TOTAL,232.2,0,100.0 +2026-04-13 13:42:00,2026-04-15 03:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,121.86 +2026-04-17 20:47:00,2026-04-18 22:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.2,1,107.72 +2026-03-31 18:00:00,2026-04-03 07:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,100.0 +2026-03-04 20:46:00,2026-03-06 07:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.2,0,108.27 +2026-04-19 17:24:00,2026-04-20 10:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,147.88 +2026-04-18 10:02:00,2026-04-20 07:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,241.1,1,125.4 +2026-02-19 02:35:00,2026-02-21 01:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,110.24 +2026-04-14 16:50:00,2026-04-15 21:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,224.2,1,107.09 +2026-04-18 09:47:14,2026-04-18 10:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,214.7,0.068,BetMGM,POINTS_TOTAL,220.0,1,131.54 +2026-04-14 21:59:00,2026-04-16 09:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,216.6,0,100.0 +2026-03-08 20:21:00,2026-03-08 23:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-06 10:57:24,2026-03-06 11:00:00,NHL,Florida Panthers,Vegas Golden Knights,-0.7,0.0,0.58,Fanduel,POINTS_SPREAD,0.2,1,105.73 +2026-04-11 22:58:00,2026-04-12 07:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-11 15:33:00,2026-03-12 23:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.0,0,141.2 +2026-02-22 07:37:00,2026-02-23 17:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-14 21:19:00,2026-04-15 20:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,0,129.86 +2026-03-25 19:27:00,2026-03-28 04:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.8 +2026-03-06 08:33:00,2026-03-08 20:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,8.0,0,103.41 +2026-03-21 03:47:00,2026-03-22 20:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,115.17 +2026-04-17 14:48:00,2026-04-18 09:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,226.3,0,148.17 +2026-02-26 18:15:00,2026-02-27 07:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,127.22 +2026-04-03 21:29:00,2026-04-06 15:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,1,106.16 +2026-04-15 02:37:15,2026-04-15 03:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.107,BetMGM,MONEYLINE,0.0,NA,111.11 +2026-02-28 15:51:00,2026-03-01 04:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,128.46 +2026-04-07 22:33:00,2026-04-09 12:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,237.0,1,107.77 +2026-04-17 10:07:00,2026-04-19 02:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,128.34 +2026-02-22 16:09:13,2026-02-22 16:00:00,NBA,Golden State Warriors,Denver Nuggets,0.5,0.0,0.179,Fanduel,POINTS_SPREAD,2.3,1,111.29 +2026-02-28 01:34:00,2026-03-02 01:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,48.6,1,106.33 +2026-03-09 17:15:00,2026-03-11 02:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,1,100.0 +2026-04-19 08:34:04,2026-04-19 06:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,4.2,0.906,Fanduel,POINTS_TOTAL,3.5,1,126.29 +2026-03-29 05:41:00,2026-03-29 15:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,164.69 +2026-03-11 14:43:00,2026-03-13 20:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,133.01 +2026-04-05 23:21:00,2026-04-08 07:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,207.0,1,107.02 +2026-03-10 03:09:00,2026-03-13 00:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,110.25 +2026-03-27 22:14:00,2026-03-29 22:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,1,100.0 +2026-03-15 20:35:00,2026-03-17 07:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.9,0,100.0 +2026-03-02 23:02:49,2026-03-03 01:00:00,NBA,Phoenix Suns,Golden State Warriors,1.2,0.0,0.049,Fanduel,POINTS_SPREAD,3.3,0,113.03 +2026-02-22 13:43:00,2026-02-25 08:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.3,0,116.19 +2026-04-05 16:18:00,2026-04-07 13:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,1,100.0 +2026-03-01 21:22:00,2026-03-02 00:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.3,0,116.72 +2026-03-08 14:52:00,2026-03-08 15:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,1,100.0 +2026-04-07 12:53:00,2026-04-09 20:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,109.49 +2026-03-09 11:03:00,2026-03-11 04:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,119.99 +2026-03-06 09:57:00,2026-03-08 04:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,101.42 +2026-03-28 08:01:49,2026-03-28 08:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.149,Fanduel,MONEYLINE,0.0,NA,117.29 +2026-03-05 06:55:00,2026-03-06 15:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,5.3,1,132.45 +2026-02-20 20:28:00,2026-02-22 22:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,107.04 +2026-03-31 10:29:00,2026-04-03 06:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.6,1,106.81 +2026-03-15 13:27:00,2026-03-17 14:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,1,150.56 +2026-04-16 19:33:00,2026-04-17 23:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,228.1,0,104.7 +2026-03-20 21:56:00,2026-03-21 10:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,125.24 +2026-04-04 16:34:00,2026-04-06 04:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,1,100.0 +2026-03-17 23:37:00,2026-03-18 19:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,125.64 +2026-03-02 14:52:00,2026-03-04 13:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,1,119.92 +2026-02-21 15:23:00,2026-02-24 15:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,0,130.96 +2026-02-27 18:22:00,2026-03-01 21:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.5,0,113.86 +2026-03-28 13:14:07,2026-03-28 13:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,3.5,0.834,Fanduel,POINTS_TOTAL,9.1,1,123.62 +2026-02-20 17:03:58,2026-02-20 17:00:00,NHL,Florida Panthers,Boston Bruins,-0.4,0.0,0.511,BetMGM,POINTS_SPREAD,0.4,0,102.13 +2026-03-14 11:51:01,2026-03-14 14:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.039,BetMGM,MONEYLINE,0.0,NA,106.09 +2026-03-08 13:21:00,2026-03-11 12:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,118.68 +2026-03-08 19:03:00,2026-03-09 16:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,229.3,0,124.43 +2026-03-14 02:43:00,2026-03-15 03:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,218.3,1,126.54 +2026-03-13 03:18:00,2026-03-16 03:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.7,1,121.68 +2026-02-26 06:36:00,2026-02-26 08:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,227.1,0,119.52 +2026-04-03 07:49:46,2026-04-03 07:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,214.1,0.521,BetMGM,POINTS_TOTAL,212.9,1,100.0 +2026-04-14 17:38:32,2026-04-14 18:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.303,Fanduel,MONEYLINE,0.0,NA,141.97 +2026-03-27 17:09:52,2026-03-27 18:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,44.8,0.066,Fanduel,POINTS_TOTAL,44.3,0,121.99 +2026-03-22 01:22:00,2026-03-22 15:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,48.4,0,107.68 +2026-04-02 20:28:02,2026-04-02 20:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.428,Fanduel,MONEYLINE,0.0,NA,157.17 +2026-04-07 22:07:51,2026-04-07 22:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.127,BetMGM,MONEYLINE,0.0,NA,114.26 +2026-03-28 22:58:00,2026-03-29 02:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,18.0,1,118.14 +2026-04-12 13:09:00,2026-04-13 07:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,150.78 +2026-04-09 06:57:04,2026-04-09 06:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.456,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-22 05:36:25,2026-03-22 04:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,10.2,0.819,Fanduel,POINTS_TOTAL,6.7,0,119.73 +2026-03-18 10:29:51,2026-03-18 10:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,5.5,0.0,0.727,Fanduel,POINTS_SPREAD,3.1,1,100.0 +2026-04-05 12:04:00,2026-04-07 16:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,115.05 +2026-04-14 17:58:25,2026-04-14 17:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,53.5,0.519,Fanduel,POINTS_TOTAL,60.5,1,120.69 +2026-02-22 07:41:00,2026-02-23 02:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,23.2,1,115.35 +2026-02-20 04:17:00,2026-02-23 01:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,1,100.0 +2026-03-08 01:32:02,2026-03-08 01:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.828,Fanduel,MONEYLINE,0.0,NA,117.55 +2026-03-09 21:32:00,2026-03-10 17:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,126.54 +2026-04-09 17:54:00,2026-04-12 03:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-24 18:20:00,2026-02-27 10:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,61.3,0,113.1 +2026-03-13 19:38:00,2026-03-16 09:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,221.9,0,117.53 +2026-04-06 23:38:00,2026-04-09 11:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,172.59 +2026-03-12 10:49:09,2026-03-12 11:00:00,NBA,Golden State Warriors,Los Angeles Lakers,-0.6,0.0,0.212,Fanduel,POINTS_SPREAD,3.1,0,107.22 +2026-03-04 03:22:00,2026-03-04 08:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-03 00:15:30,2026-04-03 00:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,3.5,0.275,BetMGM,POINTS_TOTAL,3.5,0,100.0 +2026-03-12 00:22:00,2026-03-13 10:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-19 03:46:34,2026-04-19 03:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.431,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-24 01:07:27,2026-03-24 00:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,5.3,0.397,Fanduel,POINTS_TOTAL,8.0,0,100.0 +2026-03-20 09:21:00,2026-03-23 03:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,129.98 +2026-04-01 04:14:15,2026-04-01 04:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,46.7,0.807,BetMGM,POINTS_TOTAL,50.2,0,100.0 +2026-04-01 04:22:00,2026-04-03 12:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,7.6,0,109.44 +2026-03-15 21:33:00,2026-03-17 09:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,1,105.3 +2026-03-04 23:47:00,2026-03-07 15:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,219.6,0,108.67 +2026-03-20 22:04:14,2026-03-20 22:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,41.8,0.068,BetMGM,POINTS_TOTAL,44.6,0,100.0 +2026-03-26 11:27:00,2026-03-29 11:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.8,1,141.05 +2026-02-20 03:19:00,2026-02-22 06:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.7,0,106.7 +2026-04-11 19:31:46,2026-04-11 19:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,52.5,0.421,BetMGM,POINTS_TOTAL,50.5,1,100.0 +2026-04-20 04:45:22,2026-04-20 04:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.841,Fanduel,MONEYLINE,0.0,NA,149.53 +2026-03-31 18:07:25,2026-03-31 18:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.269,Fanduel,MONEYLINE,0.0,NA,149.62 +2026-02-26 20:03:00,2026-02-27 06:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.4,0,125.93 +2026-03-23 06:38:00,2026-03-25 10:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.3,1,134.69 +2026-04-05 04:23:50,2026-04-05 04:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,-1.3,0.0,0.638,BetMGM,POINTS_SPREAD,2.5,1,100.69 +2026-03-27 18:35:52,2026-03-27 19:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.616,BetMGM,MONEYLINE,0.0,NA,126.59 +2026-04-03 01:31:08,2026-04-03 02:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,-0.9,0.0,0.223,Fanduel,POINTS_SPREAD,3.1,1,104.51 +2026-04-17 18:25:07,2026-04-17 17:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.634,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-24 10:42:00,2026-02-26 03:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,130.29 +2026-04-19 05:15:10,2026-04-19 06:00:00,NHL,Toronto Maple Leafs,Boston Bruins,-1.8,0.0,0.051,BetMGM,POINTS_SPREAD,0.7,0,104.68 +2026-04-12 20:23:00,2026-04-14 01:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,118.39 +2026-02-28 08:39:00,2026-03-02 02:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,30.5,1,120.74 +2026-03-30 13:36:08,2026-03-30 12:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,214.6,0.673,Fanduel,POINTS_TOTAL,216.0,1,117.29 +2026-04-01 16:07:13,2026-04-01 16:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.779,Fanduel,MONEYLINE,0.0,NA,158.69 +2026-03-19 08:17:00,2026-03-21 05:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,0,146.17 +2026-04-07 08:57:00,2026-04-07 21:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.9,0,114.37 +2026-03-20 18:12:00,2026-03-22 02:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,0,116.52 +2026-03-25 06:31:14,2026-03-25 08:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.218,BetMGM,MONEYLINE,0.0,NA,163.39 +2026-02-20 09:22:00,2026-02-21 09:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,180.78 +2026-02-22 10:21:09,2026-02-22 10:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.212,Fanduel,MONEYLINE,0.0,NA,115.97 +2026-04-08 21:48:00,2026-04-11 00:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.4,0,100.0 +2026-03-30 08:03:00,2026-03-31 14:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,245.6,0,120.31 +2026-03-31 13:22:49,2026-03-31 14:00:00,NBA,Denver Nuggets,Dallas Mavericks,-0.2,0.0,0.399,BetMGM,POINTS_SPREAD,1.7,0,100.0 +2026-03-08 05:31:00,2026-03-09 16:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,233.3,0,100.05 +2026-03-24 02:41:00,2026-03-24 16:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.3,0,100.0 +2026-02-24 04:32:00,2026-02-25 09:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,120.64 +2026-03-21 08:19:00,2026-03-22 04:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,105.06 +2026-03-25 15:52:00,2026-03-27 03:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,15.5,0,100.0 +2026-04-06 20:27:00,2026-04-07 12:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,106.29 +2026-04-03 02:29:00,2026-04-05 16:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,209.7,1,125.48 +2026-03-16 04:29:00,2026-03-17 07:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,230.0,0,100.46 +2026-03-04 22:47:00,2026-03-06 06:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.2,1,100.0 +2026-02-22 08:41:00,2026-02-24 06:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,100.0 +2026-03-25 06:47:00,2026-03-27 16:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,48.5,0,121.6 +2026-03-19 00:57:00,2026-03-19 10:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,123.28 +2026-03-13 08:42:00,2026-03-14 01:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.0,0,121.25 +2026-03-02 15:36:00,2026-03-04 20:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,113.16 +2026-04-19 11:14:33,2026-04-19 10:00:00,NFL,Detroit Lions,Buffalo Bills,-0.4,0.0,0.692,BetMGM,POINTS_SPREAD,1.7,1,111.03 +2026-03-13 05:04:52,2026-03-13 05:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,39.1,0.316,BetMGM,POINTS_TOTAL,44.4,0,100.0 +2026-03-30 10:43:00,2026-04-02 05:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.3,1,121.24 +2026-04-02 07:28:18,2026-04-02 09:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.035,Fanduel,MONEYLINE,0.0,NA,182.01 +2026-02-28 15:05:00,2026-03-02 03:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,102.91 +2026-02-20 19:19:19,2026-02-20 19:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,3.5,0.224,BetMGM,POINTS_TOTAL,3.5,0,100.0 +2026-03-03 14:28:00,2026-03-03 22:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.7,0,100.0 +2026-03-02 18:45:00,2026-03-04 10:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,165.32 +2026-03-08 10:29:00,2026-03-11 04:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,0,104.31 +2026-04-11 06:03:55,2026-04-11 05:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,49.9,0.944,Fanduel,POINTS_TOTAL,46.7,0,107.11 +2026-03-01 00:50:19,2026-03-01 00:00:00,NHL,Toronto Maple Leafs,Florida Panthers,2.9,0.0,0.424,BetMGM,POINTS_SPREAD,0.5,0,135.28 +2026-02-24 17:23:38,2026-02-24 17:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,43.8,0.148,Fanduel,POINTS_TOTAL,43.3,0,100.0 +2026-03-04 22:19:44,2026-03-04 22:00:00,NBA,Phoenix Suns,Golden State Warriors,6.4,0.0,0.593,BetMGM,POINTS_SPREAD,0.1,0,154.55 +2026-03-25 02:35:12,2026-03-25 01:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.69,BetMGM,MONEYLINE,0.0,NA,116.11 +2026-03-16 18:58:42,2026-03-16 19:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,1.4,0.0,0.315,BetMGM,POINTS_SPREAD,6.2,0,100.0 +2026-03-28 20:19:10,2026-03-28 19:00:00,NHL,Toronto Maple Leafs,Florida Panthers,-3.6,0.0,0.801,BetMGM,POINTS_SPREAD,1.2,0,100.0 +2026-03-15 05:03:00,2026-03-17 08:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,113.76 +2026-04-08 00:42:00,2026-04-10 22:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,0,100.0 +2026-02-25 13:14:00,2026-02-26 22:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,115.51 +2026-03-19 02:41:00,2026-03-19 23:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,1,124.77 +2026-04-12 00:47:00,2026-04-13 16:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,115.29 +2026-03-26 22:14:43,2026-03-26 22:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,3.5,0.104,BetMGM,POINTS_TOTAL,6.2,1,119.79 +2026-03-30 23:34:40,2026-03-31 00:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.326,Fanduel,MONEYLINE,0.0,NA,107.94 +2026-02-23 20:43:00,2026-02-24 19:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,1,100.0 +2026-04-06 08:47:40,2026-04-06 09:00:00,NBA,Golden State Warriors,Milwaukee Bucks,-5.4,0.0,0.526,BetMGM,POINTS_SPREAD,0.6,0,100.0 +2026-02-21 08:10:12,2026-02-21 07:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,7.0,0.59,Fanduel,POINTS_TOTAL,6.1,1,105.71 +2026-04-03 15:34:00,2026-04-06 05:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,51.4,0,107.82 +2026-04-09 18:04:00,2026-04-11 01:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.9,0,114.29 +2026-04-01 01:48:24,2026-04-01 03:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.23,Fanduel,MONEYLINE,0.0,NA,158.58 +2026-04-11 21:19:00,2026-04-14 17:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.9,0,100.0 +2026-04-08 13:38:00,2026-04-08 18:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-12 21:03:00,2026-03-14 03:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.3,1,137.45 +2026-03-26 05:12:00,2026-03-27 19:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,33.0,0,100.0 +2026-03-27 03:07:04,2026-03-27 03:00:00,NBA,Boston Celtics,Dallas Mavericks,-1.9,0.0,0.506,Fanduel,POINTS_SPREAD,2.2,1,128.36 +2026-04-07 02:32:00,2026-04-08 14:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,1,100.0 +2026-03-22 00:27:28,2026-03-21 23:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.686,Fanduel,MONEYLINE,0.0,NA,139.85 +2026-03-12 06:33:00,2026-03-12 09:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,1,112.89 +2026-02-19 18:43:00,2026-02-22 10:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,123.87 +2026-04-06 04:31:00,2026-04-08 18:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.5,0,155.16 +2026-02-22 09:52:00,2026-02-23 06:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,148.95 +2026-04-13 09:54:00,2026-04-14 22:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,124.04 +2026-04-19 06:03:00,2026-04-20 19:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,1,103.25 +2026-03-26 12:21:00,2026-03-29 02:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.0,1,107.17 +2026-02-24 15:40:00,2026-02-25 23:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-13 18:15:00,2026-03-16 14:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,5.2,0,100.0 +2026-02-23 14:27:00,2026-02-24 20:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,0,113.4 +2026-03-19 02:12:54,2026-03-19 00:00:00,NBA,Phoenix Suns,Golden State Warriors,1.2,0.0,0.805,Fanduel,POINTS_SPREAD,0.5,1,102.82 +2026-02-24 05:07:00,2026-02-24 21:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,207.9,0,114.69 +2026-03-15 16:13:00,2026-03-18 06:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,214.1,0,102.39 +2026-03-12 03:49:00,2026-03-13 14:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,231.6,0,100.09 +2026-02-23 19:18:00,2026-02-26 05:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.2 +2026-04-02 07:57:00,2026-04-02 20:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,143.87 +2026-03-04 05:51:03,2026-03-04 06:00:00,NFL,Buffalo Bills,Miami Dolphins,6.1,0.0,0.667,Fanduel,POINTS_SPREAD,4.0,0,126.79 +2026-03-01 03:29:33,2026-03-01 02:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.792,BetMGM,MONEYLINE,0.0,NA,167.38 +2026-04-05 02:28:50,2026-04-05 03:00:00,NHL,Edmonton Oilers,New York Rangers,6.2,0.0,0.138,Fanduel,POINTS_SPREAD,2.7,0,111.75 +2026-03-15 18:34:00,2026-03-16 14:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-20 20:03:00,2026-04-20 21:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,12.5,0.4,Fanduel,POINTS_TOTAL,13.5,1,101.13 +2026-04-05 04:23:57,2026-04-05 02:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.872,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-19 22:25:00,2026-02-22 20:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,46.1,0,129.68 +2026-03-10 04:33:00,2026-03-11 17:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,27.9,1,100.0 +2026-03-24 10:08:19,2026-03-24 10:00:00,NHL,Florida Panthers,Edmonton Oilers,1.7,0.0,0.274,Fanduel,POINTS_SPREAD,3.5,0,122.3 +2026-03-05 03:37:44,2026-03-05 04:00:00,NHL,Edmonton Oilers,Boston Bruins,-0.5,0.0,0.043,BetMGM,POINTS_SPREAD,1.3,1,102.38 +2026-03-05 04:26:00,2026-03-07 22:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,1,127.05 +2026-02-23 22:57:00,2026-02-26 20:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-18 20:53:00,2026-03-19 17:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,57.3,1,118.85 +2026-03-14 20:10:03,2026-03-14 19:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.617,Fanduel,MONEYLINE,0.0,NA,154.84 +2026-03-18 17:08:00,2026-03-21 07:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,17.3,1,107.76 +2026-04-10 10:53:21,2026-04-10 10:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.552,BetMGM,MONEYLINE,0.0,NA,125.27 +2026-04-04 17:55:24,2026-04-04 18:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.68,BetMGM,MONEYLINE,0.0,NA,105.28 +2026-04-09 15:38:20,2026-04-09 17:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.263,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-06 16:20:58,2026-04-06 17:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,44.8,0.161,BetMGM,POINTS_TOTAL,47.3,0,103.28 +2026-03-01 22:19:27,2026-03-01 23:00:00,NBA,Milwaukee Bucks,Boston Celtics,-1.1,0.0,0.297,Fanduel,POINTS_SPREAD,2.1,1,128.04 +2026-03-01 20:35:30,2026-03-01 22:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,8.9,0.125,Fanduel,POINTS_TOTAL,3.7,0,114.41 +2026-04-17 22:36:00,2026-04-20 14:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.6,1,115.77 +2026-03-05 09:19:00,2026-03-05 19:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,101.93 +2026-03-08 13:05:00,2026-03-09 07:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,113.56 +2026-04-09 19:54:33,2026-04-09 18:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,2.4,0.0,0.692,Fanduel,POINTS_SPREAD,1.5,0,127.24 +2026-04-04 07:18:04,2026-04-04 07:00:00,NBA,Boston Celtics,Milwaukee Bucks,3.8,0.0,0.856,Fanduel,POINTS_SPREAD,1.7,0,150.73 +2026-03-31 03:01:42,2026-03-31 03:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.765,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-19 03:47:00,2026-04-19 18:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.6,1,105.04 +2026-04-03 18:06:00,2026-04-05 19:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,115.9 +2026-04-14 14:50:00,2026-04-17 03:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,53.0,0,100.0 +2026-03-24 12:30:40,2026-03-24 13:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.376,BetMGM,MONEYLINE,0.0,NA,117.99 +2026-03-22 07:18:04,2026-03-22 07:00:00,NBA,Milwaukee Bucks,Miami Heat,4.4,0.0,0.756,BetMGM,POINTS_SPREAD,1.6,0,110.39 +2026-04-13 12:44:08,2026-04-13 11:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,2.6,0.0,0.823,Fanduel,POINTS_SPREAD,3.6,1,124.27 +2026-03-29 13:17:49,2026-03-29 13:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,232.8,0.349,Fanduel,POINTS_TOTAL,234.0,1,118.05 +2026-04-11 06:22:00,2026-04-13 17:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,1,127.26 +2026-03-02 21:50:00,2026-03-02 20:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,-0.1,0.0,0.75,BetMGM,POINTS_SPREAD,2.5,1,113.28 +2026-03-20 00:14:00,2026-03-22 07:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,1,103.43 +2026-04-11 10:44:00,2026-04-12 17:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,37.0,0,111.58 +2026-03-20 09:41:00,2026-03-21 01:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,146.15 +2026-03-05 15:24:00,2026-03-08 01:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,102.04 +2026-03-21 18:59:33,2026-03-21 17:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,30.3,0.792,BetMGM,POINTS_TOTAL,30.1,0,111.04 +2026-03-11 03:29:00,2026-03-11 08:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,233.4,0,100.0 +2026-03-22 13:17:48,2026-03-22 12:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.46,BetMGM,MONEYLINE,0.0,NA,106.56 +2026-04-19 17:25:56,2026-04-19 18:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.233,Fanduel,MONEYLINE,0.0,NA,121.79 +2026-03-12 23:14:00,2026-03-15 19:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,126.11 +2026-02-22 04:43:10,2026-02-22 05:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.101,Fanduel,MONEYLINE,0.0,NA,149.23 +2026-03-22 09:11:25,2026-03-22 11:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.9,0.0,0.069,Fanduel,POINTS_SPREAD,8.0,1,151.41 +2026-04-12 14:20:00,2026-04-13 09:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,105.51 +2026-03-04 13:13:00,2026-03-05 03:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-20 15:28:56,2026-04-20 15:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.883,Fanduel,MONEYLINE,0.0,NA,136.23 +2026-04-19 11:08:00,2026-04-21 12:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,0,100.0 +2026-02-24 05:40:00,2026-02-24 15:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.0,1,100.0 +2026-03-15 13:09:00,2026-03-16 04:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,6.5,1,117.51 +2026-03-22 23:46:00,2026-03-25 21:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,32.1,1,106.21 +2026-04-15 19:19:52,2026-04-15 19:00:00,NHL,New York Rangers,Vegas Golden Knights,-0.6,0.0,0.316,Fanduel,POINTS_SPREAD,3.1,0,100.0 +2026-03-18 01:50:00,2026-03-19 07:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,111.95 +2026-03-12 07:12:26,2026-03-12 08:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.458,BetMGM,MONEYLINE,0.0,NA,133.14 +2026-04-08 05:12:00,2026-04-08 11:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,5.4,1,136.97 +2026-02-25 14:50:00,2026-02-28 02:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,137.27 +2026-03-05 13:19:20,2026-03-05 14:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,48.8,0.463,Fanduel,POINTS_TOTAL,45.1,1,102.44 +2026-03-31 08:42:00,2026-04-01 03:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,7.1,0,100.0 +2026-02-23 07:07:00,2026-02-25 08:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.7,0,100.0 +2026-04-09 01:13:00,2026-04-10 04:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,119.69 +2026-04-04 10:13:00,2026-04-06 20:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,59.3,1,112.47 +2026-04-04 07:29:00,2026-04-06 00:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,107.9 +2026-02-20 19:35:58,2026-02-20 19:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.1,0.0,0.561,BetMGM,POINTS_SPREAD,0.6,0,100.0 +2026-03-18 21:11:00,2026-03-19 21:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,0,113.27 +2026-03-31 15:27:39,2026-03-31 16:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,229.7,0.187,Fanduel,POINTS_TOTAL,225.1,0,124.15 +2026-03-19 12:24:00,2026-03-21 19:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,216.4,1,100.83 +2026-03-03 19:02:00,2026-03-04 19:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,39.8,0,113.46 +2026-03-29 13:44:00,2026-03-31 16:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,52.7,0,106.52 +2026-03-05 18:03:00,2026-03-06 20:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,136.56 +2026-03-12 05:41:00,2026-03-13 20:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.2,0,126.48 +2026-03-11 21:13:24,2026-03-11 20:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,-5.8,0.0,0.58,BetMGM,POINTS_SPREAD,1.7,0,100.0 +2026-02-22 17:30:00,2026-02-24 09:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,5.6,1,114.04 +2026-04-05 22:01:00,2026-04-06 10:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.6,1,136.82 +2026-04-10 16:33:13,2026-04-10 15:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,47.7,0.679,Fanduel,POINTS_TOTAL,47.1,0,118.35 +2026-03-23 08:40:00,2026-03-24 09:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,198.8,0,108.63 +2026-03-18 09:46:24,2026-03-18 08:00:00,NBA,Phoenix Suns,Denver Nuggets,-0.4,0.0,0.88,BetMGM,POINTS_SPREAD,1.5,0,124.83 +2026-03-01 23:13:38,2026-03-01 22:00:00,NBA,Los Angeles Lakers,Golden State Warriors,1.1,0.0,0.448,Fanduel,POINTS_SPREAD,1.4,0,131.7 +2026-03-16 04:02:22,2026-03-16 02:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,53.0,0.741,Fanduel,POINTS_TOTAL,55.4,0,105.26 +2026-03-08 22:35:00,2026-03-10 18:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.2,0,100.0 +2026-03-08 15:40:00,2026-03-11 00:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,129.79 +2026-03-25 22:33:08,2026-03-26 00:00:00,NBA,Miami Heat,Dallas Mavericks,-1.2,0.0,0.223,BetMGM,POINTS_SPREAD,3.1,0,109.07 +2026-03-24 16:03:57,2026-03-24 17:00:00,NHL,Carolina Hurricanes,Boston Bruins,-0.9,0.0,0.172,Fanduel,POINTS_SPREAD,2.1,0,100.0 +2026-04-02 05:55:00,2026-04-04 08:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,126.94 +2026-03-25 20:14:10,2026-03-25 21:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.151,Fanduel,MONEYLINE,0.0,NA,148.25 +2026-03-23 18:30:00,2026-03-25 13:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-18 15:54:00,2026-03-21 06:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,109.38 +2026-03-13 14:25:00,2026-03-14 20:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,132.85 +2026-04-09 04:27:51,2026-04-09 04:00:00,NFL,Miami Dolphins,Baltimore Ravens,-1.4,0.0,0.877,Fanduel,POINTS_SPREAD,0.8,1,126.77 +2026-03-05 05:31:06,2026-03-05 07:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.5,0.0,0.145,Fanduel,POINTS_SPREAD,3.0,0,132.73 +2026-03-30 12:54:00,2026-04-02 09:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-07 09:35:00,2026-04-09 21:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,55.3,1,137.81 +2026-03-16 16:28:00,2026-03-16 19:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,1,100.0 +2026-03-18 17:18:00,2026-03-20 08:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,1,100.0 +2026-04-14 00:03:00,2026-04-15 23:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,183.12 +2026-04-06 13:05:00,2026-04-07 06:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,0,157.32 +2026-03-18 04:50:00,2026-03-20 13:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,151.86 +2026-03-14 02:41:09,2026-03-14 01:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.6,0.0,0.762,BetMGM,POINTS_SPREAD,1.3,1,108.98 +2026-02-26 01:39:00,2026-02-27 02:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,122.34 +2026-04-09 23:31:00,2026-04-10 21:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.0,0,100.0 +2026-02-22 10:11:00,2026-02-24 00:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.2,1,106.1 +2026-03-07 15:39:00,2026-03-09 14:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,221.9,0,110.23 +2026-03-13 14:23:00,2026-03-13 20:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,127.23 +2026-04-14 13:44:00,2026-04-17 06:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,229.2,1,106.13 +2026-04-16 06:34:00,2026-04-16 19:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,109.78 +2026-03-24 20:27:00,2026-03-27 10:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,135.41 +2026-03-28 12:15:04,2026-03-28 11:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.856,Fanduel,MONEYLINE,0.0,NA,147.9 +2026-02-21 01:28:00,2026-02-21 09:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.2,1,113.74 +2026-04-04 23:15:00,2026-04-06 10:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,0,100.0 +2026-03-10 16:16:00,2026-03-10 19:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,110.46 +2026-04-11 18:35:04,2026-04-11 20:00:00,NBA,Miami Heat,Boston Celtics,0.0,224.6,0.156,BetMGM,POINTS_TOTAL,223.6,1,100.0 +2026-04-07 21:38:00,2026-04-09 14:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,16.0,1,104.61 +2026-02-17 20:42:00,2026-02-20 20:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,231.6,1,108.14 +2026-03-30 09:14:00,2026-03-30 13:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,228.9,0,102.31 +2026-04-05 05:37:40,2026-04-05 07:00:00,NHL,Florida Panthers,New York Rangers,0.0,3.5,0.126,Fanduel,POINTS_TOTAL,3.5,0,102.59 +2026-03-01 07:04:00,2026-03-03 11:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,118.45 +2026-03-19 22:18:24,2026-03-19 22:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.83,BetMGM,MONEYLINE,0.0,NA,125.0 +2026-03-10 18:58:18,2026-03-10 18:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,42.7,0.735,BetMGM,POINTS_TOTAL,45.1,0,104.78 +2026-03-28 17:19:00,2026-03-31 05:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,182.66 +2026-04-19 08:03:56,2026-04-19 08:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,4.9,0.0,0.733,Fanduel,POINTS_SPREAD,1.7,0,165.48 +2026-03-20 01:10:00,2026-03-20 20:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.1,1,100.0 +2026-03-25 03:30:00,2026-03-25 08:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,137.93 +2026-03-03 00:49:15,2026-03-03 01:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.407,BetMGM,MONEYLINE,0.0,NA,119.7 +2026-04-07 06:19:00,2026-04-08 08:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,218.4,1,100.0 +2026-04-11 19:36:00,2026-04-13 12:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,0,130.63 +2026-03-04 13:59:24,2026-03-04 14:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.63,BetMGM,MONEYLINE,0.0,NA,102.46 +2026-02-25 20:05:00,2026-02-27 20:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-24 14:55:01,2026-03-24 16:00:00,NFL,San Francisco 49ers,Buffalo Bills,2.3,0.0,0.389,Fanduel,POINTS_SPREAD,1.7,1,111.37 +2026-04-13 21:23:07,2026-04-13 23:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.184,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-19 22:20:00,2026-03-22 22:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.6,1,126.02 +2026-04-09 04:48:00,2026-04-10 21:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-16 12:18:54,2026-03-16 13:00:00,NBA,Phoenix Suns,Golden State Warriors,2.1,0.0,0.155,Fanduel,POINTS_SPREAD,2.0,0,109.3 +2026-03-28 22:53:34,2026-03-28 22:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.631,BetMGM,MONEYLINE,0.0,NA,165.2 +2026-03-22 11:30:00,2026-03-22 15:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,42.7,1,100.0 +2026-04-08 17:00:00,2026-04-11 12:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,104.8 +2026-03-10 22:38:32,2026-03-10 22:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.353,Fanduel,MONEYLINE,0.0,NA,118.99 +2026-03-07 17:46:00,2026-03-08 07:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.2,0,155.5 +2026-04-05 17:20:00,2026-04-07 18:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-14 07:08:00,2026-04-15 08:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-26 19:37:00,2026-02-28 23:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,59.1,0,100.0 +2026-03-16 19:00:00,2026-03-17 08:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,1,100.0 +2026-04-18 00:10:00,2026-04-18 21:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,0,102.11 +2026-02-26 14:27:00,2026-02-27 21:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.9,0,108.75 +2026-03-11 10:44:00,2026-03-13 13:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,57.9,0,110.61 +2026-03-18 20:08:18,2026-03-18 19:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.635,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-15 14:54:00,2026-04-16 10:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,1,110.92 +2026-04-13 17:12:00,2026-04-15 11:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,0,100.0 +2026-03-13 15:45:00,2026-03-15 01:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.4,1,159.38 +2026-04-11 22:23:56,2026-04-12 00:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,223.0,0.033,BetMGM,POINTS_TOTAL,224.7,0,109.32 +2026-03-14 01:11:14,2026-03-14 01:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,7.7,0.568,BetMGM,POINTS_TOTAL,3.5,1,112.92 +2026-04-01 02:30:22,2026-04-01 01:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.941,Fanduel,MONEYLINE,0.0,NA,125.42 +2026-03-09 17:49:00,2026-03-10 02:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.0,0,157.29 +2026-04-07 00:26:00,2026-04-07 21:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-14 05:56:00,2026-03-16 21:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,101.05 +2026-04-15 20:13:00,2026-04-17 00:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,213.9,1,118.86 +2026-03-15 03:39:00,2026-03-16 11:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-31 06:42:00,2026-03-31 16:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,104.49 +2026-02-27 21:46:16,2026-02-27 20:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.846,Fanduel,MONEYLINE,0.0,NA,167.98 +2026-03-25 14:17:00,2026-03-27 22:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,116.67 +2026-02-20 21:24:25,2026-02-20 21:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.169,BetMGM,MONEYLINE,0.0,NA,142.84 +2026-03-08 22:16:28,2026-03-08 20:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,3.5,0.936,BetMGM,POINTS_TOTAL,3.5,0,110.43 +2026-03-06 23:03:00,2026-03-08 08:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,226.0,0,100.0 +2026-02-23 06:12:00,2026-02-25 07:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,17.4,0,112.69 +2026-02-24 07:40:00,2026-02-27 07:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.9,1,128.52 +2026-03-15 18:17:00,2026-03-17 21:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,40.3,1,114.96 +2026-04-02 22:57:36,2026-04-02 21:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,12.7,0.92,Fanduel,POINTS_TOTAL,17.4,0,104.52 +2026-03-24 22:26:48,2026-03-24 22:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,225.1,0.31,BetMGM,POINTS_TOTAL,220.1,0,109.79 +2026-03-25 05:48:00,2026-03-26 23:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,123.75 +2026-03-22 15:40:00,2026-03-23 11:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-05 13:35:00,2026-03-06 06:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,0,100.0 +2026-04-13 06:32:00,2026-04-15 00:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,1,100.0 +2026-04-06 00:11:00,2026-04-07 01:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,140.66 +2026-03-30 12:34:00,2026-03-31 18:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.0,0,137.7 +2026-03-16 19:55:43,2026-03-16 19:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,18.2,0.404,Fanduel,POINTS_TOTAL,18.7,0,106.36 +2026-03-28 20:31:00,2026-03-30 04:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,37.7,0,119.14 +2026-03-31 08:20:00,2026-04-02 08:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,0,112.78 +2026-04-10 06:55:00,2026-04-13 05:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,1,138.08 +2026-03-06 04:19:00,2026-03-08 09:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,144.16 +2026-04-18 19:35:58,2026-04-18 19:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.661,BetMGM,MONEYLINE,0.0,NA,127.95 +2026-03-30 18:39:00,2026-03-30 21:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,220.7,1,104.43 +2026-04-14 10:35:00,2026-04-17 02:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,225.0,1,110.11 +2026-02-23 10:32:32,2026-02-23 10:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,217.1,0.353,BetMGM,POINTS_TOTAL,215.1,1,100.0 +2026-03-18 03:24:30,2026-03-18 04:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.425,BetMGM,MONEYLINE,0.0,NA,146.45 +2026-04-15 01:56:45,2026-04-15 02:00:00,NFL,Philadelphia Eagles,Miami Dolphins,1.2,0.0,0.432,BetMGM,POINTS_SPREAD,0.1,0,114.15 +2026-02-18 23:57:00,2026-02-21 14:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.3,1,100.0 +2026-03-04 18:55:00,2026-03-06 15:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,51.7,0,100.0 +2026-03-04 03:41:00,2026-03-06 22:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,147.4 +2026-03-06 02:02:50,2026-03-06 02:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,40.7,0.338,Fanduel,POINTS_TOTAL,36.9,0,112.82 +2026-03-14 01:20:00,2026-03-14 08:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,5.4,0,100.0 +2026-03-23 11:25:00,2026-03-24 02:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,105.14 +2026-03-25 04:55:00,2026-03-26 10:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.0,0,100.0 +2026-03-15 23:02:00,2026-03-17 22:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,241.0,1,113.57 +2026-03-24 04:44:00,2026-03-25 05:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,0,114.06 +2026-03-12 11:43:00,2026-03-15 01:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,32.4,0,103.32 +2026-03-12 09:41:00,2026-03-14 16:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,6.2,0,100.0 +2026-03-14 19:28:00,2026-03-14 23:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,32.6,1,100.04 +2026-03-01 01:57:00,2026-03-02 09:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.2,0,106.58 +2026-04-01 15:52:00,2026-04-02 03:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,149.9 +2026-02-23 07:49:56,2026-02-23 08:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,214.3,0.083,BetMGM,POINTS_TOTAL,220.2,0,100.0 +2026-04-07 03:10:00,2026-04-07 07:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,133.61 +2026-03-16 11:09:00,2026-03-18 09:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,5.0,0,116.56 +2026-04-19 23:42:00,2026-04-20 05:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,66.7,1,123.28 +2026-03-08 19:13:22,2026-03-08 17:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.791,BetMGM,MONEYLINE,0.0,NA,106.97 +2026-03-07 01:08:00,2026-03-09 10:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,226.4,1,103.2 +2026-04-19 13:14:00,2026-04-21 12:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,114.14 +2026-03-27 21:09:00,2026-03-27 23:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,1,103.53 +2026-02-23 18:06:00,2026-02-26 15:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.8,0,125.88 +2026-03-02 05:16:40,2026-03-02 03:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.926,BetMGM,MONEYLINE,0.0,NA,135.78 +2026-04-02 09:52:00,2026-04-03 01:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,12.1,0,105.61 +2026-03-12 14:21:00,2026-03-13 17:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.28 +2026-04-09 12:55:00,2026-04-11 03:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,117.32 +2026-02-26 10:23:00,2026-02-28 06:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,5.2,1,100.0 +2026-04-05 06:06:33,2026-04-05 08:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,45.6,0.042,Fanduel,POINTS_TOTAL,43.1,0,109.18 +2026-04-12 08:16:15,2026-04-12 10:00:00,NFL,Baltimore Ravens,Dallas Cowboys,3.0,0.0,0.157,Fanduel,POINTS_SPREAD,2.9,1,116.12 +2026-03-26 22:12:36,2026-03-26 22:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,38.2,0.17,Fanduel,POINTS_TOTAL,36.8,0,115.5 +2026-03-16 05:22:00,2026-03-19 02:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,144.45 +2026-04-13 19:56:32,2026-04-13 19:00:00,NBA,Boston Celtics,Phoenix Suns,4.5,0.0,0.853,BetMGM,POINTS_SPREAD,3.3,0,114.41 +2026-04-04 08:16:07,2026-04-04 06:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,4.0,0.834,BetMGM,POINTS_TOTAL,3.6,0,122.1 +2026-04-14 10:10:00,2026-04-15 16:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,1,113.57 +2026-03-07 15:04:00,2026-03-10 12:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,130.23 +2026-04-16 06:21:00,2026-04-19 01:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-09 22:35:00,2026-03-10 23:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-17 11:30:00,2026-04-19 17:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,100.0 +2026-03-26 01:37:32,2026-03-26 00:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.803,BetMGM,MONEYLINE,0.0,NA,109.14 +2026-04-10 06:54:00,2026-04-11 11:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-01 05:57:32,2026-03-01 05:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.953,Fanduel,MONEYLINE,0.0,NA,141.5 +2026-04-11 18:01:00,2026-04-14 04:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.9,1,129.08 +2026-04-20 13:02:10,2026-04-20 13:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,226.8,0.751,Fanduel,POINTS_TOTAL,230.3,1,115.42 +2026-04-05 13:10:00,2026-04-07 01:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,4.5,0,116.62 +2026-04-19 01:00:00,2026-04-20 07:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,12.2,1,104.83 +2026-04-08 08:21:00,2026-04-10 05:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,133.98 +2026-03-29 00:22:00,2026-03-29 09:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,42.6,0,101.94 +2026-04-11 23:02:00,2026-04-14 21:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,41.8,0,108.35 +2026-02-20 09:31:00,2026-02-20 14:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,121.15 +2026-02-22 00:48:00,2026-02-22 10:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,138.32 +2026-03-29 10:05:12,2026-03-29 10:00:00,NFL,Detroit Lions,Dallas Cowboys,-1.1,0.0,0.49,Fanduel,POINTS_SPREAD,0.4,0,115.61 +2026-03-23 03:25:00,2026-03-23 23:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,117.17 +2026-03-03 13:22:40,2026-03-03 12:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.876,BetMGM,MONEYLINE,0.0,NA,120.94 +2026-03-15 22:59:24,2026-03-15 23:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.28,BetMGM,MONEYLINE,0.0,NA,135.98 +2026-02-26 13:18:00,2026-02-27 12:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,130.09 +2026-04-06 05:38:00,2026-04-06 15:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,1,114.5 +2026-03-15 12:27:58,2026-03-15 14:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.8,0.0,0.061,BetMGM,POINTS_SPREAD,3.4,1,100.0 +2026-03-23 08:09:00,2026-03-24 12:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,100.0 +2026-04-01 23:12:00,2026-04-04 01:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,231.3,0,106.92 +2026-02-21 23:03:00,2026-02-24 17:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,157.09 +2026-03-05 00:38:00,2026-03-07 16:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,5.8,0,144.02 +2026-02-20 04:28:00,2026-02-20 23:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,128.98 +2026-03-29 18:42:14,2026-03-29 18:00:00,NBA,Boston Celtics,Dallas Mavericks,-0.4,0.0,0.268,BetMGM,POINTS_SPREAD,1.1,0,118.54 +2026-04-21 02:10:00,2026-04-21 11:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,157.24 +2026-03-16 19:43:00,2026-03-17 08:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,10.1,0,115.83 +2026-03-19 14:27:00,2026-03-21 20:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,217.1,0,114.97 +2026-03-15 06:18:00,2026-03-15 21:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,143.29 +2026-04-09 17:24:00,2026-04-10 23:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,111.91 +2026-02-25 04:23:00,2026-02-27 22:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,224.8,0,101.96 +2026-04-09 07:14:42,2026-04-09 07:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.665,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-20 18:53:00,2026-03-22 10:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,44.4,0,100.0 +2026-04-15 02:30:09,2026-04-15 02:00:00,NBA,Milwaukee Bucks,Boston Celtics,1.9,0.0,0.862,BetMGM,POINTS_SPREAD,1.0,0,100.0 +2026-03-14 17:59:00,2026-03-16 12:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,46.5,1,140.25 +2026-03-06 10:14:00,2026-03-06 12:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,123.54 +2026-04-18 15:06:00,2026-04-20 00:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-08 16:31:00,2026-04-11 01:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,110.92 +2026-04-12 04:21:20,2026-04-12 04:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,49.2,0.563,BetMGM,POINTS_TOTAL,51.9,1,100.0 +2026-03-26 12:19:00,2026-03-28 16:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,234.3,1,103.18 +2026-04-05 00:27:00,2026-04-05 01:00:00,NFL,Kansas City Chiefs,Miami Dolphins,3.5,0.0,0.2,BetMGM,POINTS_SPREAD,0.8,0,115.05 +2026-03-31 03:35:00,2026-04-01 18:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-20 03:35:12,2026-04-20 05:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,4.8,0.0,0.29,Fanduel,POINTS_SPREAD,2.0,0,128.6 +2026-02-24 07:37:00,2026-02-26 12:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,15.5,0,100.0 +2026-04-13 06:22:40,2026-04-13 06:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.626,Fanduel,MONEYLINE,0.0,NA,134.19 +2026-04-18 07:53:34,2026-04-18 07:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,-0.8,0.0,0.881,BetMGM,POINTS_SPREAD,3.3,1,101.2 +2026-03-22 11:17:00,2026-03-24 15:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,216.0,0,117.72 +2026-04-19 16:37:00,2026-04-21 04:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,156.74 +2026-03-17 03:12:00,2026-03-17 16:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.33 +2026-04-11 19:15:49,2026-04-11 17:00:00,NBA,Miami Heat,Phoenix Suns,0.0,229.2,0.849,Fanduel,POINTS_TOTAL,229.1,0,117.33 +2026-04-01 00:02:21,2026-04-01 00:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.652,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-24 18:10:55,2026-03-24 18:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,14.5,0.494,Fanduel,POINTS_TOTAL,25.5,0,100.0 +2026-04-04 04:50:00,2026-04-04 08:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,220.8,1,107.15 +2026-03-22 01:07:00,2026-03-24 00:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,107.24 +2026-03-14 21:45:00,2026-03-16 04:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,107.26 +2026-03-25 19:58:03,2026-03-25 21:00:00,NBA,Dallas Mavericks,Phoenix Suns,-1.5,0.0,0.067,Fanduel,POINTS_SPREAD,0.8,0,133.69 +2026-04-15 00:18:43,2026-04-14 22:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,-1.8,0.0,0.954,Fanduel,POINTS_SPREAD,2.0,0,100.67 +2026-02-20 03:00:00,2026-02-21 06:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.2,0,121.0 +2026-04-03 15:12:00,2026-04-06 06:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.0,0,100.0 +2026-02-26 02:27:00,2026-02-27 23:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,48.7,0,113.51 +2026-02-26 12:12:00,2026-02-26 13:00:00,NFL,Detroit Lions,Buffalo Bills,-1.3,0.0,0.4,BetMGM,POINTS_SPREAD,2.4,0,100.0 +2026-04-06 17:11:00,2026-04-08 08:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,221.4,1,137.41 +2026-03-12 12:32:00,2026-03-15 05:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.1,0,113.75 +2026-04-20 02:44:00,2026-04-21 06:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,0,143.63 +2026-03-25 22:27:00,2026-03-27 17:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,229.8,1,100.0 +2026-04-13 08:38:00,2026-04-16 03:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,53.6,1,104.94 +2026-04-09 19:34:44,2026-04-09 18:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.593,Fanduel,MONEYLINE,0.0,NA,119.59 +2026-02-23 01:08:00,2026-02-24 00:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,0,108.27 +2026-04-12 03:33:00,2026-04-13 03:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,12.3,1,100.0 +2026-04-18 23:30:00,2026-04-21 08:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,0,128.44 +2026-03-31 00:30:00,2026-04-02 10:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,5.7,0,100.0 +2026-03-05 07:50:00,2026-03-08 07:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,154.28 +2026-03-02 01:18:00,2026-03-02 02:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,233.7,0,101.64 +2026-03-11 18:03:00,2026-03-14 16:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,6.3,1,100.0 +2026-02-25 13:07:55,2026-02-25 12:00:00,NBA,Phoenix Suns,Denver Nuggets,-0.6,0.0,0.694,Fanduel,POINTS_SPREAD,1.8,1,138.47 +2026-04-14 00:38:58,2026-04-14 00:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,46.7,0.311,Fanduel,POINTS_TOTAL,43.5,0,126.96 +2026-02-18 15:20:00,2026-02-21 13:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,5.0,0,105.39 +2026-03-13 02:34:03,2026-03-13 02:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.567,BetMGM,MONEYLINE,0.0,NA,115.4 +2026-04-18 03:48:00,2026-04-18 16:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,1,119.45 +2026-04-14 18:37:00,2026-04-17 05:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.0,0,100.0 +2026-04-05 04:57:04,2026-04-05 05:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.156,Fanduel,MONEYLINE,0.0,NA,136.91 +2026-03-04 00:50:10,2026-03-03 22:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,1.8,0.0,0.951,BetMGM,POINTS_SPREAD,0.3,1,100.0 +2026-03-14 03:22:00,2026-03-16 01:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,0,127.24 +2026-02-20 14:19:00,2026-02-23 09:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,111.76 +2026-04-02 11:37:00,2026-04-05 06:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.0,1,141.92 +2026-02-25 12:21:00,2026-02-26 02:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-02 13:18:00,2026-03-04 20:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,125.84 +2026-02-21 03:49:00,2026-02-21 06:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,167.07 +2026-04-13 09:34:00,2026-04-15 10:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-12 13:30:39,2026-04-12 12:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.887,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-18 07:01:00,2026-04-20 18:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,0,117.97 +2026-04-09 18:52:00,2026-04-12 15:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,0,100.0 +2026-04-18 01:56:00,2026-04-18 05:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,222.0,0,100.0 +2026-02-22 02:47:00,2026-02-22 23:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,111.54 +2026-02-21 17:19:33,2026-02-21 17:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,233.1,0.392,BetMGM,POINTS_TOTAL,228.9,1,100.0 +2026-04-19 00:09:02,2026-04-19 00:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,8.4,0.828,BetMGM,POINTS_TOTAL,3.5,1,100.0 +2026-03-03 01:03:00,2026-03-04 05:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,0,100.0 +2026-04-13 07:42:00,2026-04-13 21:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-11 22:03:10,2026-04-11 23:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,251.1,0.051,Fanduel,POINTS_TOTAL,248.1,0,107.99 +2026-04-07 23:16:51,2026-04-08 00:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.527,BetMGM,MONEYLINE,0.0,NA,142.21 +2026-03-03 23:04:31,2026-03-03 23:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.264,Fanduel,MONEYLINE,0.0,NA,131.75 +2026-03-11 10:06:00,2026-03-12 16:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,113.93 +2026-03-19 12:39:26,2026-03-19 14:00:00,NHL,New York Rangers,Florida Panthers,-1.8,0.0,0.308,Fanduel,POINTS_SPREAD,1.2,1,137.07 +2026-03-28 11:41:00,2026-03-29 20:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,158.92 +2026-03-23 19:33:07,2026-03-23 20:00:00,NHL,New York Rangers,Florida Panthers,-0.0,0.0,0.384,BetMGM,POINTS_SPREAD,0.9,1,112.3 +2026-03-08 10:43:24,2026-03-08 10:00:00,NHL,Colorado Avalanche,Edmonton Oilers,-0.9,0.0,0.78,Fanduel,POINTS_SPREAD,1.7,0,120.07 +2026-04-02 05:08:00,2026-04-03 10:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,164.35 +2026-04-02 20:21:00,2026-04-03 12:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-25 11:43:00,2026-02-25 14:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,127.07 +2026-04-18 11:39:00,2026-04-18 19:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,1,100.0 +2026-04-14 17:06:08,2026-04-14 17:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,61.1,0.273,BetMGM,POINTS_TOTAL,69.9,0,100.0 +2026-03-07 21:13:52,2026-03-07 22:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,228.6,0.316,Fanduel,POINTS_TOTAL,228.0,0,110.39 +2026-03-01 20:42:00,2026-03-02 22:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.2,1,100.0 +2026-04-14 06:59:00,2026-04-15 16:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,1,100.0 +2026-04-08 17:49:00,2026-04-11 10:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,180.66 +2026-03-22 00:14:22,2026-03-22 00:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,11.5,0.291,Fanduel,POINTS_TOTAL,10.7,1,115.53 +2026-03-24 14:29:00,2026-03-26 00:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,44.0,0,113.84 +2026-02-22 13:42:46,2026-02-22 14:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.471,Fanduel,MONEYLINE,0.0,NA,152.96 +2026-03-25 20:37:00,2026-03-26 18:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,6.8,1,122.34 +2026-02-28 05:52:00,2026-03-02 09:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,52.4,1,118.42 +2026-03-01 09:29:00,2026-03-01 12:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,27.5,0,113.03 +2026-04-12 10:22:34,2026-04-12 11:00:00,NBA,Denver Nuggets,Phoenix Suns,3.3,0.0,0.381,Fanduel,POINTS_SPREAD,4.2,0,106.72 +2026-03-03 17:09:04,2026-03-03 15:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.856,BetMGM,MONEYLINE,0.0,NA,148.69 +2026-02-19 21:22:00,2026-02-22 04:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,125.11 +2026-02-25 18:54:00,2026-02-28 07:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.8,0,100.0 +2026-04-12 04:44:00,2026-04-13 02:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,0,101.17 +2026-03-26 03:16:13,2026-03-26 04:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,-1.3,0.0,0.079,BetMGM,POINTS_SPREAD,0.6,1,126.9 +2026-03-23 16:54:00,2026-03-25 04:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,143.74 +2026-04-19 07:04:55,2026-04-19 09:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,-4.1,0.0,0.044,Fanduel,POINTS_SPREAD,0.6,0,100.0 +2026-04-03 15:38:00,2026-04-04 05:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,0,100.0 +2026-03-13 20:20:00,2026-03-15 09:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-21 15:50:21,2026-02-21 16:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,1.3,0.0,0.152,BetMGM,POINTS_SPREAD,2.5,0,133.34 +2026-03-29 17:16:00,2026-03-31 10:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.7,0,147.12 +2026-03-26 20:53:00,2026-03-29 10:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-02 16:08:00,2026-04-04 04:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,0,102.44 +2026-02-23 15:17:00,2026-02-24 10:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,18.2,1,118.32 +2026-03-19 19:54:38,2026-03-19 20:00:00,NBA,Denver Nuggets,Golden State Warriors,-0.0,0.0,0.398,Fanduel,POINTS_SPREAD,2.2,0,104.83 +2026-02-21 05:16:24,2026-02-21 07:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,2.9,0.0,0.03,Fanduel,POINTS_SPREAD,3.0,1,102.78 +2026-03-26 02:58:00,2026-03-26 11:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.0,1,100.0 +2026-03-26 03:27:06,2026-03-26 04:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,3.5,0.045,BetMGM,POINTS_TOTAL,3.5,1,100.0 +2026-02-21 06:32:00,2026-02-22 13:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.9,1,100.0 +2026-03-11 20:22:00,2026-03-12 10:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,45.2,1,100.0 +2026-04-10 22:50:00,2026-04-11 18:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,220.4,1,100.0 +2026-03-09 11:53:48,2026-03-09 14:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.06,Fanduel,MONEYLINE,0.0,NA,136.63 +2026-03-17 20:04:00,2026-03-18 15:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,108.42 +2026-02-27 19:51:07,2026-02-27 20:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.634,Fanduel,MONEYLINE,0.0,NA,163.17 +2026-03-29 19:25:00,2026-03-31 09:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,107.8 +2026-04-02 06:54:00,2026-04-03 00:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.0,1,104.24 +2026-03-19 17:04:00,2026-03-20 17:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,0,104.99 +2026-02-24 01:46:09,2026-02-24 01:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,-0.8,0.0,0.462,Fanduel,POINTS_SPREAD,3.7,0,118.04 +2026-03-24 22:16:00,2026-03-26 12:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,10.4,1,101.0 +2026-04-08 12:25:00,2026-04-10 05:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-14 19:19:50,2026-03-14 19:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,41.8,0.338,BetMGM,POINTS_TOTAL,41.5,1,102.21 +2026-03-08 11:44:00,2026-03-09 21:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,113.94 +2026-04-01 02:51:00,2026-04-01 07:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,40.8,0,113.57 +2026-04-12 14:27:00,2026-04-13 19:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,1,130.67 +2026-03-15 03:44:00,2026-03-18 02:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,119.02 +2026-03-15 11:25:00,2026-03-18 06:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,142.21 +2026-03-02 01:50:30,2026-03-02 00:00:00,NBA,Golden State Warriors,Miami Heat,-1.5,0.0,0.725,Fanduel,POINTS_SPREAD,2.7,0,118.14 +2026-02-28 07:50:26,2026-02-28 07:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.458,Fanduel,MONEYLINE,0.0,NA,115.99 +2026-04-08 06:49:50,2026-04-08 06:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,44.3,0.388,Fanduel,POINTS_TOTAL,44.0,0,127.47 +2026-02-23 11:51:00,2026-02-24 18:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,235.9,0,100.0 +2026-04-05 17:10:28,2026-04-05 15:00:00,NBA,Golden State Warriors,Miami Heat,0.8,0.0,0.786,BetMGM,POINTS_SPREAD,2.5,1,120.33 +2026-04-09 16:59:00,2026-04-12 12:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,0,116.1 +2026-03-06 16:22:00,2026-03-07 10:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.8,0,115.92 +2026-03-13 22:08:48,2026-03-13 21:00:00,NBA,Golden State Warriors,Miami Heat,0.3,0.0,0.51,Fanduel,POINTS_SPREAD,0.4,1,127.24 +2026-03-31 09:08:00,2026-04-01 23:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,49.9,0,104.71 +2026-03-11 00:01:18,2026-03-10 22:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.835,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-28 10:27:00,2026-03-29 23:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.9,1,106.38 +2026-04-12 02:06:00,2026-04-14 06:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,103.27 +2026-04-19 10:53:00,2026-04-21 09:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,30.7,0,100.0 +2026-03-30 08:27:00,2026-03-30 19:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,15.8,1,100.0 +2026-03-04 21:32:00,2026-03-06 18:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,213.0,1,105.58 +2026-04-08 17:19:00,2026-04-11 00:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,1,134.11 +2026-03-01 07:24:00,2026-03-02 04:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.2,1,123.33 +2026-04-15 10:39:00,2026-04-16 07:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,5.7,1,100.0 +2026-04-06 22:03:00,2026-04-07 01:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,5.1,1,100.03 +2026-04-02 12:33:00,2026-04-02 15:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,0,123.54 +2026-03-05 23:18:21,2026-03-05 23:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,224.1,0.302,Fanduel,POINTS_TOTAL,217.0,1,106.67 +2026-03-18 16:16:12,2026-03-18 17:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,33.0,0.19,Fanduel,POINTS_TOTAL,35.1,1,130.57 +2026-02-21 14:49:31,2026-02-21 14:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,44.0,0.414,BetMGM,POINTS_TOTAL,41.5,0,112.58 +2026-03-10 15:40:51,2026-03-10 16:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,227.9,0.177,Fanduel,POINTS_TOTAL,225.5,1,113.99 +2026-02-25 17:00:00,2026-02-27 01:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,110.09 +2026-03-17 13:05:00,2026-03-18 14:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,1,100.43 +2026-03-04 16:51:00,2026-03-05 14:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,0,141.31 +2026-02-28 11:58:16,2026-02-28 12:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.346,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-09 20:02:54,2026-03-09 18:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.805,Fanduel,MONEYLINE,0.0,NA,125.22 +2026-03-25 12:19:00,2026-03-26 05:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,15.8,1,139.9 +2026-03-08 17:03:00,2026-03-11 04:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,1,100.0 +2026-04-15 12:54:07,2026-04-15 14:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,-3.2,0.0,0.284,BetMGM,POINTS_SPREAD,1.7,1,119.21 +2026-03-03 01:01:10,2026-03-03 02:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.451,Fanduel,MONEYLINE,0.0,NA,117.81 +2026-03-16 13:49:00,2026-03-18 23:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,116.53 +2026-02-21 16:32:00,2026-02-22 05:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,1,100.0 +2026-04-01 13:50:00,2026-04-03 22:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,43.9,0,124.59 +2026-04-15 03:05:00,2026-04-17 04:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,10.7,1,121.03 +2026-03-14 12:17:07,2026-03-14 12:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,217.2,0.634,BetMGM,POINTS_TOTAL,218.6,1,103.53 +2026-04-03 06:36:00,2026-04-04 21:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-15 22:08:00,2026-04-17 18:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,16.4,1,100.0 +2026-03-02 07:50:27,2026-03-02 08:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.497,Fanduel,MONEYLINE,0.0,NA,156.87 +2026-03-08 15:46:39,2026-03-08 16:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,252.8,0.437,BetMGM,POINTS_TOTAL,246.0,0,116.33 +2026-03-31 04:51:56,2026-03-31 03:00:00,NBA,Milwaukee Bucks,Golden State Warriors,3.3,0.0,0.683,BetMGM,POINTS_SPREAD,4.9,1,100.0 +2026-03-18 08:43:39,2026-03-18 09:00:00,NBA,Boston Celtics,Phoenix Suns,-0.3,0.0,0.137,BetMGM,POINTS_SPREAD,3.6,0,100.0 +2026-02-26 19:28:00,2026-02-27 06:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,220.6,1,100.0 +2026-03-27 03:40:00,2026-03-28 07:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,140.4 +2026-03-29 20:26:00,2026-04-01 13:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,0,100.0 +2026-03-29 11:38:25,2026-03-29 11:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.319,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-21 13:46:00,2026-03-24 03:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.4,0,110.96 +2026-03-29 05:09:00,2026-03-29 17:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,25.4,0,100.0 +2026-02-27 05:13:12,2026-02-27 05:00:00,NHL,Florida Panthers,Toronto Maple Leafs,-3.5,0.0,0.19,Fanduel,POINTS_SPREAD,0.9,0,100.0 +2026-03-20 07:58:06,2026-03-20 07:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.345,BetMGM,MONEYLINE,0.0,NA,120.87 +2026-04-02 09:13:00,2026-04-04 14:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,1,104.52 +2026-04-20 18:00:03,2026-04-20 19:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.317,BetMGM,MONEYLINE,0.0,NA,147.03 +2026-03-03 16:08:08,2026-03-03 15:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,42.5,0.573,BetMGM,POINTS_TOTAL,39.3,1,110.8 +2026-03-05 18:50:00,2026-03-08 15:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,228.2,0,100.0 +2026-03-26 22:58:00,2026-03-29 04:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,22.8,1,108.83 +2026-03-19 20:42:56,2026-03-19 21:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.683,Fanduel,MONEYLINE,0.0,NA,111.51 +2026-04-09 16:28:00,2026-04-11 05:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,133.48 +2026-02-25 11:39:00,2026-02-25 14:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,106.35 +2026-04-14 23:51:00,2026-04-17 16:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,1,100.0 +2026-03-25 19:05:00,2026-03-27 15:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.0,1,123.0 +2026-03-30 10:30:00,2026-04-02 04:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,9.3,1,115.77 +2026-02-22 13:59:00,2026-02-22 21:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,53.0,0,100.13 +2026-03-28 11:16:42,2026-03-28 10:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,-2.1,0.0,0.715,BetMGM,POINTS_SPREAD,1.7,1,114.99 +2026-04-05 05:59:00,2026-04-05 17:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,1,100.0 +2026-04-17 09:20:00,2026-04-20 02:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,6.5,0,100.0 +2026-04-09 00:57:00,2026-04-11 15:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.8,0,100.0 +2026-02-28 16:10:00,2026-03-01 10:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-27 09:19:00,2026-03-29 09:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,19.7,1,112.3 +2026-04-15 05:21:00,2026-04-16 10:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,220.3,0,100.0 +2026-03-22 08:45:01,2026-03-22 08:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,53.5,0.939,BetMGM,POINTS_TOTAL,55.4,0,106.68 +2026-03-10 22:34:56,2026-03-10 20:00:00,NHL,Boston Bruins,Carolina Hurricanes,-2.2,0.0,0.883,Fanduel,POINTS_SPREAD,1.6,0,100.08 +2026-03-21 18:37:08,2026-03-21 19:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.273,Fanduel,MONEYLINE,0.0,NA,146.87 +2026-03-20 21:52:45,2026-03-20 21:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.882,BetMGM,MONEYLINE,0.0,NA,139.47 +2026-02-24 17:18:00,2026-02-24 19:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,168.66 +2026-04-12 05:10:00,2026-04-13 11:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,246.0,1,121.9 +2026-03-27 18:48:56,2026-03-27 19:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,16.2,0.583,Fanduel,POINTS_TOTAL,13.4,1,100.0 +2026-04-11 16:01:00,2026-04-12 19:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,0,124.28 +2026-03-14 14:48:09,2026-03-14 14:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.712,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-13 12:41:00,2026-04-16 07:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,46.6,0,110.18 +2026-03-10 16:26:36,2026-03-10 16:00:00,NHL,Florida Panthers,New York Rangers,0.0,13.1,0.87,Fanduel,POINTS_TOTAL,13.5,0,124.84 +2026-04-11 23:03:00,2026-04-14 05:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,140.42 +2026-04-10 17:20:32,2026-04-10 16:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.753,BetMGM,MONEYLINE,0.0,NA,151.29 +2026-04-12 11:25:16,2026-04-12 11:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.246,BetMGM,MONEYLINE,0.0,NA,138.46 +2026-04-06 10:27:49,2026-04-06 10:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,229.5,0.799,BetMGM,POINTS_TOTAL,228.7,1,100.0 +2026-04-19 23:42:00,2026-04-20 16:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,0,100.0 +2026-02-22 03:28:00,2026-02-24 17:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,0,101.58 +2026-04-12 19:42:56,2026-04-12 20:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.233,Fanduel,MONEYLINE,0.0,NA,125.94 +2026-03-17 06:22:00,2026-03-19 19:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,115.77 +2026-03-23 03:02:20,2026-03-23 03:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,18.1,0.563,Fanduel,POINTS_TOTAL,27.8,0,100.0 +2026-03-05 10:35:00,2026-03-08 08:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.5,0,116.0 +2026-03-20 00:01:58,2026-03-20 01:00:00,NFL,Baltimore Ravens,Miami Dolphins,4.8,0.0,0.261,Fanduel,POINTS_SPREAD,1.8,1,100.0 +2026-03-22 22:57:00,2026-03-24 10:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,1,121.57 +2026-04-16 07:37:00,2026-04-18 21:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,11.9,1,120.46 +2026-04-03 21:27:56,2026-04-03 21:00:00,NBA,Boston Celtics,Miami Heat,-1.9,0.0,0.533,BetMGM,POINTS_SPREAD,2.5,0,100.0 +2026-03-23 11:40:00,2026-03-24 11:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,1,100.0 +2026-03-08 01:39:00,2026-03-09 19:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,228.4,0,110.27 +2026-03-16 08:06:00,2026-03-17 10:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,29.6,0,114.25 +2026-03-14 20:36:00,2026-03-16 22:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,145.53 +2026-03-16 04:48:22,2026-03-16 04:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,228.7,0.791,Fanduel,POINTS_TOTAL,222.8,1,100.0 +2026-04-17 22:30:09,2026-04-17 21:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.612,Fanduel,MONEYLINE,0.0,NA,133.97 +2026-02-20 21:15:16,2026-02-20 21:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,64.3,0.196,BetMGM,POINTS_TOTAL,60.5,0,114.17 +2026-03-25 06:06:00,2026-03-27 10:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,120.81 +2026-02-25 01:27:00,2026-02-25 10:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,39.4,1,100.0 +2026-04-14 17:00:00,2026-04-15 22:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,1,106.45 +2026-03-12 17:00:00,2026-03-14 09:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,221.7,1,113.08 +2026-04-01 02:49:00,2026-04-02 08:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,1,100.0 +2026-04-11 21:01:00,2026-04-11 23:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,100.0 +2026-03-23 13:29:00,2026-03-25 15:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,215.3,0,126.08 +2026-03-13 23:10:56,2026-03-13 23:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,49.0,0.733,Fanduel,POINTS_TOTAL,52.1,1,117.4 +2026-03-13 22:35:00,2026-03-14 05:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,0,109.14 +2026-03-05 20:03:00,2026-03-07 20:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,42.1,1,102.47 +2026-04-01 09:42:00,2026-04-02 15:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,11.3,1,102.45 +2026-04-02 04:57:00,2026-04-03 08:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,135.79 +2026-04-17 14:10:00,2026-04-20 02:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,0,106.14 +2026-03-24 04:46:00,2026-03-27 02:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,236.2,1,130.4 +2026-04-06 08:49:00,2026-04-06 23:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,151.85 +2026-03-19 02:54:16,2026-03-19 02:00:00,NHL,Florida Panthers,Vegas Golden Knights,4.9,0.0,0.696,Fanduel,POINTS_SPREAD,0.4,1,110.2 +2026-04-06 06:06:00,2026-04-06 23:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,247.5,0,100.0 +2026-04-01 15:49:00,2026-04-03 12:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.1,1,127.25 +2026-04-05 01:49:43,2026-04-05 02:00:00,NBA,Los Angeles Lakers,Phoenix Suns,1.9,0.0,0.504,Fanduel,POINTS_SPREAD,3.1,0,100.0 +2026-02-19 01:26:00,2026-02-20 21:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,103.27 +2026-02-24 22:51:00,2026-02-26 15:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.1,0,110.35 +2026-03-18 17:12:00,2026-03-21 16:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,9.8,0,100.0 +2026-04-03 22:48:00,2026-04-06 11:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,18.1,1,109.65 +2026-02-28 11:06:00,2026-03-01 16:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,116.86 +2026-03-16 04:41:00,2026-03-18 20:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.5,0,100.0 +2026-02-22 17:16:00,2026-02-24 05:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.1,1,100.0 +2026-04-16 00:13:00,2026-04-16 15:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,227.2,1,100.0 +2026-02-23 21:39:00,2026-02-24 19:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-07 05:51:00,2026-03-09 14:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,1,100.0 +2026-02-19 16:11:00,2026-02-22 08:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.7,0,100.0 +2026-04-10 12:55:00,2026-04-11 21:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,164.0 +2026-04-17 22:11:07,2026-04-17 21:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.584,Fanduel,MONEYLINE,0.0,NA,156.44 +2026-03-03 23:55:00,2026-03-06 22:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,109.09 +2026-04-02 13:12:24,2026-04-02 14:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,215.3,0.28,Fanduel,POINTS_TOTAL,214.0,0,120.47 +2026-02-24 05:28:00,2026-02-25 18:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,118.72 +2026-03-08 21:25:00,2026-03-10 13:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,13.6,1,127.57 +2026-04-20 02:23:39,2026-04-20 00:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.937,Fanduel,MONEYLINE,0.0,NA,133.2 +2026-03-01 08:23:21,2026-03-01 09:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,15.7,0.502,Fanduel,POINTS_TOTAL,21.6,0,100.86 +2026-04-03 08:00:00,2026-04-04 01:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.7,0,112.4 +2026-03-14 20:47:00,2026-03-14 21:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.4,0,100.0 +2026-03-23 17:56:00,2026-03-26 03:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,1,100.0 +2026-03-31 22:02:00,2026-04-03 07:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,242.8,1,106.58 +2026-02-27 01:29:00,2026-02-27 19:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,124.32 +2026-04-02 04:40:00,2026-04-04 03:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,150.71 +2026-03-26 13:45:00,2026-03-28 07:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,1,125.52 +2026-03-07 02:58:02,2026-03-07 04:00:00,NHL,Vegas Golden Knights,New York Rangers,-1.8,0.0,0.428,BetMGM,POINTS_SPREAD,1.6,1,101.8 +2026-02-26 18:34:00,2026-02-28 19:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-20 16:49:48,2026-04-20 16:00:00,NHL,New York Rangers,Toronto Maple Leafs,2.7,0.0,0.71,Fanduel,POINTS_SPREAD,5.7,0,167.75 +2026-02-24 17:01:00,2026-02-27 13:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,113.66 +2026-02-23 19:53:00,2026-02-24 04:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,121.73 +2026-03-18 15:08:00,2026-03-20 05:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.9,1,100.0 +2026-03-14 18:13:54,2026-03-14 19:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,43.1,0.355,Fanduel,POINTS_TOTAL,44.7,1,124.73 +2026-04-01 15:59:00,2026-04-02 11:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,134.31 +2026-04-01 00:48:00,2026-04-01 22:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,140.83 +2026-03-05 08:24:08,2026-03-05 08:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,1.8,0.0,0.323,BetMGM,POINTS_SPREAD,1.1,0,131.26 +2026-02-21 19:46:00,2026-02-24 15:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-18 08:45:00,2026-03-19 12:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,5.5,0,111.9 +2026-03-27 02:08:10,2026-03-27 04:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,237.1,0.051,Fanduel,POINTS_TOTAL,239.0,1,115.88 +2026-04-15 16:19:22,2026-04-15 15:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,228.7,0.791,Fanduel,POINTS_TOTAL,224.7,0,137.02 +2026-02-28 10:34:00,2026-03-02 23:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,125.9 +2026-03-10 21:41:00,2026-03-11 02:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,36.9,1,104.2 +2026-04-10 14:33:18,2026-04-10 13:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.685,BetMGM,MONEYLINE,0.0,NA,169.81 +2026-03-30 01:10:00,2026-04-01 16:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,0,103.71 +2026-04-15 19:53:00,2026-04-16 09:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,0,146.27 +2026-04-11 02:33:00,2026-04-11 05:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.9,1,113.54 +2026-04-06 15:36:13,2026-04-06 13:00:00,NHL,Colorado Avalanche,Edmonton Oilers,7.7,0.0,0.929,Fanduel,POINTS_SPREAD,0.1,1,100.0 +2026-03-03 07:03:00,2026-03-06 01:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-29 17:11:01,2026-03-29 17:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,38.9,0.739,Fanduel,POINTS_TOTAL,41.5,1,115.98 +2026-02-24 06:50:28,2026-02-24 05:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,6.4,0.0,0.736,BetMGM,POINTS_SPREAD,0.1,0,145.37 +2026-04-16 12:28:04,2026-04-16 13:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,59.4,0.356,Fanduel,POINTS_TOTAL,57.4,0,110.79 +2026-02-19 07:06:00,2026-02-21 08:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,1,105.23 +2026-03-21 20:36:00,2026-03-22 23:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-25 09:43:04,2026-02-25 10:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.206,Fanduel,MONEYLINE,0.0,NA,106.3 +2026-03-25 09:08:00,2026-03-26 13:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,8.3,0,123.51 +2026-04-05 10:11:00,2026-04-06 03:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,24.7,0,119.13 +2026-03-17 13:52:00,2026-03-19 00:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,158.26 +2026-03-26 12:30:00,2026-03-29 11:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-07 14:59:00,2026-03-07 20:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.3,0,104.92 +2026-03-19 20:15:43,2026-03-19 21:00:00,NHL,Boston Bruins,Florida Panthers,0.0,7.6,0.204,BetMGM,POINTS_TOTAL,9.1,0,113.26 +2026-03-29 09:35:00,2026-03-30 07:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.4,1,147.21 +2026-03-25 12:34:00,2026-03-27 00:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,1,140.17 +2026-03-18 16:11:00,2026-03-18 18:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,46.1,1,100.0 +2026-02-20 19:36:00,2026-02-20 21:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,101.34 +2026-04-02 04:13:00,2026-04-04 20:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,138.36 +2026-03-08 22:01:00,2026-03-09 17:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-08 05:28:00,2026-04-09 20:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,58.5,0,100.0 +2026-03-07 14:39:46,2026-03-07 15:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.621,Fanduel,MONEYLINE,0.0,NA,105.49 +2026-03-11 13:50:00,2026-03-14 00:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,151.26 +2026-04-01 03:05:00,2026-04-02 10:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,36.7,1,100.2 +2026-03-04 17:55:00,2026-03-05 02:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.0,1,123.98 +2026-03-13 13:32:00,2026-03-14 01:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.0,1,110.57 +2026-03-20 23:23:00,2026-03-22 14:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,1,105.55 +2026-04-10 01:04:04,2026-04-10 02:00:00,NBA,Golden State Warriors,Miami Heat,2.8,0.0,0.356,BetMGM,POINTS_SPREAD,3.5,0,155.55 +2026-03-02 04:31:00,2026-03-04 14:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,0,100.0 +2026-03-25 13:25:00,2026-03-28 01:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,0,100.0 +2026-03-07 13:06:49,2026-03-07 14:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,3.5,0.149,Fanduel,POINTS_TOTAL,3.5,1,119.5 +2026-03-16 15:37:00,2026-03-17 22:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.8,0,116.45 +2026-03-20 07:24:00,2026-03-21 03:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,1,132.96 +2026-02-21 09:47:00,2026-02-23 18:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,42.2,1,116.7 +2026-03-15 09:07:00,2026-03-15 11:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.2,1,100.0 +2026-03-09 21:16:09,2026-03-09 20:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,37.0,0.562,BetMGM,POINTS_TOTAL,29.1,0,106.26 +2026-04-11 02:56:00,2026-04-13 14:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,103.83 +2026-03-27 06:14:00,2026-03-29 09:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,140.4 +2026-03-14 20:52:49,2026-03-14 21:00:00,NBA,Denver Nuggets,Phoenix Suns,-0.2,0.0,0.399,BetMGM,POINTS_SPREAD,4.2,0,100.0 +2026-04-10 00:52:00,2026-04-11 16:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,7.7,0,100.0 +2026-04-01 09:26:00,2026-04-02 11:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,213.2,0,112.1 +2026-03-30 23:50:02,2026-03-31 00:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,-3.6,0.0,0.628,Fanduel,POINTS_SPREAD,0.8,0,100.0 +2026-04-03 04:12:00,2026-04-03 11:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.7,1,109.64 +2026-03-15 22:24:00,2026-03-16 04:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,127.97 +2026-03-20 13:07:00,2026-03-20 21:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,0,115.92 +2026-03-31 12:04:00,2026-04-02 07:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-22 12:32:25,2026-02-22 12:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,39.8,0.669,Fanduel,POINTS_TOTAL,44.6,1,125.01 +2026-02-20 21:36:00,2026-02-22 09:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,125.36 +2026-03-01 21:44:00,2026-03-04 04:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,0,140.35 +2026-02-25 06:01:00,2026-02-28 06:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,0,117.91 +2026-03-29 23:12:00,2026-03-30 21:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-07 12:43:00,2026-04-10 10:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,39.3,0,116.09 +2026-02-28 02:48:43,2026-02-28 02:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.954,Fanduel,MONEYLINE,0.0,NA,104.07 +2026-03-03 19:33:56,2026-03-03 21:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.033,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-16 11:45:00,2026-03-18 04:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.0,1,100.5 +2026-03-04 22:17:10,2026-03-04 23:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.301,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-20 17:32:45,2026-02-20 16:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,216.1,0.782,BetMGM,POINTS_TOTAL,214.7,1,113.34 +2026-03-09 12:15:12,2026-03-09 11:00:00,NBA,Miami Heat,Denver Nuggets,0.0,221.7,0.54,Fanduel,POINTS_TOTAL,221.8,1,118.7 +2026-04-07 22:55:00,2026-04-09 18:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,121.16 +2026-02-23 05:13:00,2026-02-25 10:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.8,0,101.5 +2026-04-04 08:53:49,2026-04-04 08:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,55.5,0.749,Fanduel,POINTS_TOTAL,56.5,0,100.0 +2026-03-24 16:14:00,2026-03-24 17:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.6,0,139.53 +2026-03-15 12:55:18,2026-03-15 11:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.835,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-06 10:50:00,2026-04-09 06:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-21 13:08:10,2026-02-21 12:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.401,BetMGM,MONEYLINE,0.0,NA,147.61 +2026-03-06 09:36:00,2026-03-08 08:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,229.1,1,101.56 +2026-03-15 10:57:00,2026-03-16 18:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,143.26 +2026-02-26 16:32:00,2026-02-27 06:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.0,0,100.0 +2026-03-12 02:01:00,2026-03-13 08:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,104.07 +2026-03-14 09:26:58,2026-03-14 10:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.461,BetMGM,MONEYLINE,0.0,NA,147.85 +2026-03-15 00:46:00,2026-03-15 11:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,229.7,1,113.73 +2026-03-01 02:24:00,2026-03-02 02:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,1,114.15 +2026-04-16 21:29:00,2026-04-16 22:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,227.6,1,101.29 +2026-04-14 16:32:16,2026-04-14 14:00:00,NBA,Golden State Warriors,Los Angeles Lakers,-3.4,0.0,0.896,BetMGM,POINTS_SPREAD,1.1,0,100.0 +2026-04-15 07:11:00,2026-04-17 03:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,109.07 +2026-04-15 17:49:37,2026-04-15 16:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,62.0,0.959,Fanduel,POINTS_TOTAL,58.2,0,120.58 +2026-03-04 01:06:00,2026-03-06 22:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,112.66 +2026-02-27 20:10:00,2026-03-02 20:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.2,1,100.0 +2026-03-04 01:12:00,2026-03-04 23:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,10.3,0,103.19 +2026-04-13 18:20:00,2026-04-16 00:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-13 08:21:00,2026-03-16 04:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,22.1,1,120.35 +2026-03-27 05:18:00,2026-03-29 22:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,10.8,0,106.43 +2026-03-15 09:09:00,2026-03-17 14:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,1,100.0 +2026-03-20 07:17:00,2026-03-23 06:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,6.5,0,102.17 +2026-04-10 02:03:06,2026-04-10 02:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.595,Fanduel,MONEYLINE,0.0,NA,106.84 +2026-03-19 02:55:00,2026-03-21 07:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,0,112.11 +2026-03-20 21:46:00,2026-03-22 13:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-20 10:20:00,2026-03-22 08:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-05 07:16:00,2026-03-06 06:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,130.34 +2026-04-20 07:14:24,2026-04-20 05:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,50.0,0.93,BetMGM,POINTS_TOTAL,51.0,0,111.98 +2026-04-02 02:22:38,2026-04-02 01:00:00,NHL,New York Rangers,Colorado Avalanche,-1.3,0.0,0.498,BetMGM,POINTS_SPREAD,0.9,0,109.05 +2026-04-09 09:35:16,2026-04-09 07:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.946,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-14 14:48:00,2026-03-15 20:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,100.0 +2026-04-19 13:49:03,2026-04-19 15:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,15.1,0.167,BetMGM,POINTS_TOTAL,13.3,1,109.93 +2026-03-08 18:21:09,2026-03-08 20:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,3.5,0.162,Fanduel,POINTS_TOTAL,3.5,0,108.55 +2026-04-15 22:32:00,2026-04-17 08:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.74 +2026-03-20 08:51:00,2026-03-20 11:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-07 22:48:00,2026-04-08 05:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,138.51 +2026-03-26 12:27:46,2026-03-26 11:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.921,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-26 14:35:00,2026-02-28 04:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,117.47 +2026-03-28 14:02:00,2026-03-29 23:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-09 14:55:00,2026-03-11 02:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,5.9,1,100.0 +2026-02-28 01:22:34,2026-02-28 02:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.431,Fanduel,MONEYLINE,0.0,NA,141.44 +2026-04-16 16:49:00,2026-04-18 08:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,14.2,1,100.0 +2026-04-05 02:32:00,2026-04-06 15:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,142.78 +2026-03-17 14:51:00,2026-03-18 11:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,107.1 +2026-03-04 13:33:00,2026-03-06 09:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.3,0,104.82 +2026-03-02 07:24:00,2026-03-04 06:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,72.9,0,105.44 +2026-03-03 22:35:00,2026-03-05 16:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,8.3,0,120.32 +2026-03-03 03:24:00,2026-03-03 07:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,112.53 +2026-03-03 08:12:00,2026-03-04 02:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,27.6,1,100.0 +2026-04-08 09:06:04,2026-04-08 08:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,2.6,0.0,0.456,BetMGM,POINTS_SPREAD,2.3,0,118.78 +2026-03-18 19:20:48,2026-03-18 18:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,-3.2,0.0,0.61,Fanduel,POINTS_SPREAD,0.4,0,100.0 +2026-04-19 16:57:39,2026-04-19 16:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.937,Fanduel,MONEYLINE,0.0,NA,158.08 +2026-03-18 12:50:00,2026-03-19 10:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,158.06 +2026-04-15 21:48:00,2026-04-17 10:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,170.06 +2026-03-05 16:18:00,2026-03-06 20:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,0,100.0 +2026-03-07 17:30:25,2026-03-07 17:00:00,NFL,San Francisco 49ers,Detroit Lions,-0.3,0.0,0.769,Fanduel,POINTS_SPREAD,0.8,1,138.21 +2026-04-05 04:10:00,2026-04-07 20:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,233.0,1,117.1 +2026-03-04 18:47:00,2026-03-06 16:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.8,1,100.9 +2026-03-09 19:21:00,2026-03-11 12:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,141.9 +2026-04-03 09:27:44,2026-04-03 09:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,23.1,0.843,BetMGM,POINTS_TOTAL,19.0,1,100.0 +2026-03-01 05:10:00,2026-03-02 02:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,168.85 +2026-03-18 14:25:00,2026-03-20 06:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.8,1,123.29 +2026-04-03 11:16:48,2026-04-03 10:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,1.1,0.0,0.76,BetMGM,POINTS_SPREAD,1.2,0,100.0 +2026-02-22 13:20:00,2026-02-23 01:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.1,0,121.12 +2026-04-07 15:39:00,2026-04-09 08:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,232.9,0,100.0 +2026-03-17 16:26:28,2026-03-17 15:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.836,Fanduel,MONEYLINE,0.0,NA,134.87 +2026-03-21 19:46:00,2026-03-23 10:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-03 14:21:16,2026-03-03 15:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.046,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-28 01:49:00,2026-03-28 16:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,132.12 +2026-03-27 10:16:00,2026-03-28 10:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.5,0,114.51 +2026-04-10 09:46:00,2026-04-12 00:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,0,113.49 +2026-03-25 22:37:00,2026-03-27 07:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.5,0,135.31 +2026-03-20 10:32:00,2026-03-20 12:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.15,BetMGM,MONEYLINE,0.0,NA,120.14 +2026-03-13 05:44:58,2026-03-13 04:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.711,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-07 21:53:00,2026-04-10 14:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,119.84 +2026-03-30 00:28:00,2026-03-30 13:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,13.8,1,124.89 +2026-03-30 07:35:00,2026-03-31 17:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,1,113.61 +2026-04-19 08:22:00,2026-04-20 01:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,10.5,0,100.0 +2026-04-07 09:41:00,2026-04-09 21:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,223.0,1,100.0 +2026-02-22 20:25:00,2026-02-25 03:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,226.4,0,137.65 +2026-03-12 19:23:00,2026-03-13 14:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,114.51 +2026-03-27 12:29:54,2026-03-27 13:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.105,BetMGM,MONEYLINE,0.0,NA,162.55 +2026-03-02 17:19:04,2026-03-02 16:00:00,NHL,Boston Bruins,Colorado Avalanche,-0.2,0.0,0.606,BetMGM,POINTS_SPREAD,2.6,0,100.0 +2026-03-18 09:43:38,2026-03-18 11:00:00,NBA,Phoenix Suns,Milwaukee Bucks,-2.5,0.0,0.098,Fanduel,POINTS_SPREAD,0.3,1,129.71 +2026-03-26 22:45:18,2026-03-26 22:00:00,NBA,Milwaukee Bucks,Miami Heat,-2.6,0.0,0.335,BetMGM,POINTS_SPREAD,0.2,0,102.95 +2026-03-30 09:17:00,2026-03-30 18:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,113.83 +2026-04-11 11:32:42,2026-04-11 13:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,-3.5,0.0,0.115,BetMGM,POINTS_SPREAD,0.3,0,100.0 +2026-03-30 10:06:00,2026-04-01 15:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,234.6,0,115.63 +2026-03-03 21:59:00,2026-03-06 09:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,216.6,0,123.24 +2026-03-14 03:40:00,2026-03-16 15:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,212.9,0,111.75 +2026-04-15 21:48:54,2026-04-15 20:00:00,NFL,Philadelphia Eagles,Detroit Lions,2.6,0.0,0.655,Fanduel,POINTS_SPREAD,0.7,1,102.11 +2026-03-27 07:43:00,2026-03-28 12:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,0,119.41 +2026-04-17 17:13:00,2026-04-18 00:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,32.8,0,106.03 +2026-04-14 19:50:00,2026-04-15 02:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,153.21 +2026-04-16 18:03:00,2026-04-19 00:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.4,1,100.0 +2026-02-26 21:03:00,2026-02-27 16:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,118.91 +2026-04-09 06:52:39,2026-04-09 07:00:00,NHL,New York Rangers,Boston Bruins,0.0,5.9,0.737,Fanduel,POINTS_TOTAL,6.3,1,120.36 +2026-03-22 01:34:00,2026-03-24 23:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,0,100.0 +2026-03-16 00:06:00,2026-03-18 01:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,1,100.0 +2026-04-08 15:51:01,2026-04-08 16:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.139,Fanduel,MONEYLINE,0.0,NA,133.19 +2026-04-14 16:15:24,2026-04-14 16:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.18,Fanduel,MONEYLINE,0.0,NA,120.48 +2026-02-21 09:29:00,2026-02-21 21:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.2,0,118.7 +2026-03-09 11:24:00,2026-03-11 00:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,226.9,1,107.11 +2026-03-14 15:56:00,2026-03-16 03:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,208.8,1,100.0 +2026-03-16 10:20:00,2026-03-18 12:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,126.14 +2026-03-27 12:39:26,2026-03-27 14:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,1.0,0.0,0.208,BetMGM,POINTS_SPREAD,2.0,0,122.35 +2026-03-13 07:04:31,2026-03-13 05:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,3.5,0.814,Fanduel,POINTS_TOTAL,7.1,0,109.47 +2026-04-14 15:38:54,2026-04-14 15:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,220.3,0.605,BetMGM,POINTS_TOTAL,222.1,1,114.8 +2026-03-28 18:57:00,2026-03-29 16:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-01 11:00:00,2026-04-04 03:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,209.2,1,113.03 +2026-02-21 01:01:00,2026-02-21 05:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,0,106.15 +2026-03-20 01:06:48,2026-03-20 01:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,3.5,0.16,BetMGM,POINTS_TOTAL,3.5,0,115.72 +2026-03-13 15:10:31,2026-03-13 13:00:00,NHL,New York Rangers,Boston Bruins,-0.9,0.0,0.914,Fanduel,POINTS_SPREAD,1.9,0,100.0 +2026-04-07 12:46:00,2026-04-08 23:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,1,130.14 +2026-03-21 03:00:00,2026-03-23 07:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.5,0,109.33 +2026-04-10 02:21:00,2026-04-11 03:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,24.7,1,120.18 +2026-04-14 09:49:00,2026-04-17 08:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,149.3 +2026-03-14 15:50:00,2026-03-15 01:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,140.83 +2026-03-22 16:11:00,2026-03-24 04:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,0,100.0 +2026-03-16 05:42:00,2026-03-18 18:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,230.7,0,110.22 +2026-03-30 00:50:00,2026-04-01 04:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,239.6,1,117.04 +2026-03-07 02:53:46,2026-03-07 03:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,12.7,0.321,Fanduel,POINTS_TOTAL,12.5,0,107.73 +2026-03-04 10:05:00,2026-03-05 13:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.0,0,100.0 +2026-03-17 07:07:54,2026-03-17 06:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,-3.8,0.0,0.555,BetMGM,POINTS_SPREAD,3.1,0,100.0 +2026-04-03 11:38:00,2026-04-04 12:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,235.3,0,103.96 +2026-04-18 22:13:56,2026-04-18 22:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.333,BetMGM,MONEYLINE,0.0,NA,188.06 +2026-02-22 02:21:00,2026-02-23 14:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,149.56 +2026-03-08 05:05:00,2026-03-09 17:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.0,0,100.0 +2026-04-16 02:16:00,2026-04-17 20:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,245.1,1,127.96 +2026-03-04 04:34:26,2026-03-04 04:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.858,BetMGM,MONEYLINE,0.0,NA,100.92 +2026-03-10 16:23:00,2026-03-11 17:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,101.54 +2026-03-02 01:25:00,2026-03-04 10:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,1,100.0 +2026-03-03 12:12:56,2026-03-03 10:00:00,NBA,Boston Celtics,Miami Heat,0.0,243.8,0.933,BetMGM,POINTS_TOTAL,244.0,1,109.88 +2026-03-23 23:42:00,2026-03-25 15:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,41.5,1,100.0 +2026-03-12 13:13:00,2026-03-13 01:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-04 07:59:06,2026-03-04 06:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.745,BetMGM,MONEYLINE,0.0,NA,111.48 +2026-03-19 12:42:00,2026-03-22 08:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,30.7,1,108.12 +2026-04-08 03:43:00,2026-04-09 21:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,223.4,0,124.16 +2026-03-18 11:40:00,2026-03-19 20:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,236.1,0,107.74 +2026-03-28 15:27:00,2026-03-30 22:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.3,1,113.13 +2026-03-24 04:42:00,2026-03-24 06:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.0,0,132.52 +2026-04-18 22:32:00,2026-04-19 05:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,0,116.9 +2026-03-05 23:03:00,2026-03-07 02:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,134.87 +2026-02-26 01:36:00,2026-02-26 19:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,235.6,1,132.03 +2026-03-15 18:15:07,2026-03-15 18:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,1.5,0.0,0.484,Fanduel,POINTS_SPREAD,0.5,1,100.0 +2026-03-27 12:44:00,2026-03-27 20:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,171.88 +2026-04-16 16:52:00,2026-04-17 16:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,230.6,0,108.35 +2026-03-14 17:21:25,2026-03-14 16:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.519,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-04 07:07:01,2026-04-04 07:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,236.5,0.589,Fanduel,POINTS_TOTAL,240.2,0,100.0 +2026-03-04 18:56:57,2026-03-04 21:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.072,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-24 17:07:00,2026-03-26 22:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,117.51 +2026-03-19 10:10:00,2026-03-20 00:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.6,0,107.06 +2026-03-19 10:20:00,2026-03-20 19:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,67.3,1,111.59 +2026-04-01 09:35:00,2026-04-01 13:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.5,1,126.29 +2026-03-16 23:41:00,2026-03-18 05:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,134.35 +2026-04-07 12:19:00,2026-04-09 06:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,42.4,1,110.8 +2026-02-23 04:57:18,2026-02-23 07:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,3.5,0.035,Fanduel,POINTS_TOTAL,3.5,1,100.0 +2026-03-13 19:42:00,2026-03-14 00:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,209.0,1,110.88 +2026-03-16 15:51:58,2026-03-16 16:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,35.5,0.161,BetMGM,POINTS_TOTAL,37.3,1,100.0 +2026-04-15 19:19:00,2026-04-18 10:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,58.6,0,128.08 +2026-03-25 06:02:00,2026-03-27 13:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,203.2,1,124.39 +2026-03-15 11:07:00,2026-03-18 07:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.6,0,120.9 +2026-02-25 01:08:09,2026-02-25 01:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,37.9,0.212,BetMGM,POINTS_TOTAL,32.5,1,110.54 +2026-03-11 22:50:56,2026-03-12 00:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,232.6,0.333,BetMGM,POINTS_TOTAL,225.6,0,135.8 +2026-04-12 17:10:00,2026-04-13 19:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,4.2,0,115.99 +2026-03-20 05:23:00,2026-03-20 09:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,0,138.26 +2026-02-24 20:52:40,2026-02-24 19:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.676,Fanduel,MONEYLINE,0.0,NA,118.26 +2026-03-19 00:32:27,2026-03-19 00:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,38.2,0.697,BetMGM,POINTS_TOTAL,33.6,1,101.35 +2026-04-07 08:23:25,2026-04-07 08:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,-0.1,0.0,0.519,Fanduel,POINTS_SPREAD,0.7,0,135.32 +2026-03-13 07:03:26,2026-03-13 05:00:00,NBA,Denver Nuggets,Miami Heat,-0.1,0.0,0.908,Fanduel,POINTS_SPREAD,3.4,0,100.0 +2026-03-01 11:12:45,2026-03-01 10:00:00,NBA,Boston Celtics,Milwaukee Bucks,3.1,0.0,0.532,Fanduel,POINTS_SPREAD,0.8,1,104.28 +2026-03-27 17:19:00,2026-03-29 16:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,123.38 +2026-04-04 00:16:13,2026-04-03 22:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.879,BetMGM,MONEYLINE,0.0,NA,132.28 +2026-04-16 05:04:00,2026-04-17 03:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,201.6,0,112.15 +2026-04-14 14:00:55,2026-04-14 12:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.744,Fanduel,MONEYLINE,0.0,NA,119.58 +2026-04-19 20:52:07,2026-04-19 22:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.084,Fanduel,MONEYLINE,0.0,NA,109.99 +2026-03-27 23:24:00,2026-03-30 00:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,19.4,1,100.0 +2026-02-24 22:29:00,2026-02-27 02:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,103.83 +2026-02-19 17:59:00,2026-02-21 21:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-02 15:07:39,2026-04-02 13:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.837,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-16 05:31:18,2026-04-16 06:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,1.0,0.0,0.085,BetMGM,POINTS_SPREAD,0.7,1,100.0 +2026-03-02 06:17:00,2026-03-03 18:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,143.42 +2026-03-30 15:25:37,2026-03-30 14:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,3.5,0.759,Fanduel,POINTS_TOTAL,3.5,0,118.48 +2026-04-15 01:55:56,2026-04-15 02:00:00,NBA,Denver Nuggets,Miami Heat,0.0,235.4,0.183,BetMGM,POINTS_TOTAL,237.8,1,111.56 +2026-03-03 09:07:00,2026-03-05 09:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,21.1,1,117.32 +2026-03-02 05:39:00,2026-03-04 05:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,5.6,1,106.45 +2026-03-06 20:33:00,2026-03-08 14:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,226.5,0,103.17 +2026-03-10 20:30:00,2026-03-13 08:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,13.6,0,117.57 +2026-03-11 02:22:16,2026-03-11 03:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,3.5,0.046,BetMGM,POINTS_TOTAL,3.5,0,100.0 +2026-03-08 22:21:00,2026-03-10 09:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,1,100.0 +2026-04-08 08:00:06,2026-04-08 10:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.045,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-21 03:53:09,2026-04-21 04:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.562,Fanduel,MONEYLINE,0.0,NA,115.52 +2026-04-19 17:52:00,2026-04-21 06:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,112.51 +2026-03-01 06:49:00,2026-03-01 09:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.2,0,111.5 +2026-03-09 10:48:00,2026-03-10 06:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,128.97 +2026-04-12 14:11:00,2026-04-15 02:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,118.45 +2026-03-06 17:58:00,2026-03-06 19:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,136.0 +2026-04-07 18:54:04,2026-04-07 18:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.506,BetMGM,MONEYLINE,0.0,NA,145.25 +2026-04-17 22:49:00,2026-04-20 09:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,223.8,1,109.75 +2026-03-02 00:20:45,2026-03-01 22:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,53.8,0.932,BetMGM,POINTS_TOTAL,56.9,1,119.43 +2026-02-25 14:17:00,2026-02-26 06:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,131.76 +2026-02-25 09:10:00,2026-02-26 10:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-15 07:53:00,2026-03-15 12:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,159.28 +2026-02-23 02:58:04,2026-02-23 03:00:00,NBA,Boston Celtics,Dallas Mavericks,3.8,0.0,0.506,Fanduel,POINTS_SPREAD,0.7,0,132.16 +2026-03-13 21:50:00,2026-03-15 11:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,139.82 +2026-03-04 23:16:00,2026-03-07 16:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,1,143.8 +2026-04-20 10:53:49,2026-04-20 11:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,38.5,0.149,BetMGM,POINTS_TOTAL,38.6,0,122.21 +2026-03-07 14:38:48,2026-03-07 15:00:00,NHL,Boston Bruins,Vegas Golden Knights,2.3,0.0,0.56,BetMGM,POINTS_SPREAD,0.3,0,100.75 +2026-03-15 08:10:00,2026-03-16 00:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,125.16 +2026-02-25 12:19:00,2026-02-26 19:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,138.66 +2026-03-11 04:55:00,2026-03-13 01:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,56.5,1,100.0 +2026-02-27 11:52:43,2026-02-27 11:00:00,NFL,San Francisco 49ers,Detroit Lions,0.7,0.0,0.754,BetMGM,POINTS_SPREAD,4.3,1,142.54 +2026-02-24 08:26:00,2026-02-26 03:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.5,0,100.0 +2026-04-02 21:44:48,2026-04-02 23:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,-2.8,0.0,0.26,BetMGM,POINTS_SPREAD,1.0,0,100.0 +2026-03-09 06:25:00,2026-03-12 06:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,126.34 +2026-03-12 04:52:00,2026-03-13 15:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,1,100.0 +2026-03-06 06:45:00,2026-03-07 23:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,116.71 +2026-03-21 01:31:00,2026-03-21 11:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,130.58 +2026-03-14 20:35:12,2026-03-14 21:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,51.0,0.44,Fanduel,POINTS_TOTAL,49.7,0,105.08 +2026-04-19 13:13:14,2026-04-19 11:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,244.2,0.918,Fanduel,POINTS_TOTAL,248.6,1,116.21 +2026-03-28 14:06:00,2026-03-30 05:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,39.8,0,118.21 +2026-03-09 06:37:00,2026-03-09 19:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.9,0,111.92 +2026-02-25 08:55:00,2026-02-26 12:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,221.5,1,121.22 +2026-03-16 12:40:00,2026-03-17 17:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.4,0,100.0 +2026-04-05 06:24:00,2026-04-07 12:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.5,0,136.05 +2026-03-17 23:04:34,2026-03-18 00:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,35.6,0.331,BetMGM,POINTS_TOTAL,40.3,1,127.81 +2026-04-18 16:22:00,2026-04-19 09:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,7.6,1,109.19 +2026-03-03 05:17:38,2026-03-03 04:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.848,BetMGM,MONEYLINE,0.0,NA,113.98 +2026-02-25 21:22:00,2026-02-26 11:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-06 05:25:00,2026-04-09 03:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,1,116.28 +2026-02-24 16:42:00,2026-02-25 10:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-14 08:53:00,2026-03-14 19:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,44.2,1,121.61 +2026-03-22 19:11:00,2026-03-25 05:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,122.21 +2026-04-20 07:04:00,2026-04-20 19:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,5.0,0,114.83 +2026-04-14 13:56:00,2026-04-15 04:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-01 22:43:00,2026-03-02 03:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,126.93 +2026-04-06 23:04:01,2026-04-07 01:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,20.3,0.089,BetMGM,POINTS_TOTAL,31.2,0,100.0 +2026-04-09 06:26:00,2026-04-11 20:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,107.74 +2026-04-20 00:40:00,2026-04-21 11:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,221.3,1,122.53 +2026-04-16 05:42:00,2026-04-16 09:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,132.04 +2026-03-21 14:17:33,2026-03-21 16:00:00,NHL,Florida Panthers,Boston Bruins,0.0,15.3,0.042,BetMGM,POINTS_TOTAL,8.7,1,100.0 +2026-03-29 17:06:00,2026-03-31 09:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,231.1,0,100.0 +2026-03-05 21:29:32,2026-03-05 23:00:00,NBA,Dallas Mavericks,Miami Heat,-0.4,0.0,0.203,BetMGM,POINTS_SPREAD,7.9,1,142.01 +2026-03-19 16:37:01,2026-03-19 15:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.8,0.0,0.739,Fanduel,POINTS_SPREAD,0.3,1,124.69 +2026-02-25 17:55:06,2026-02-25 16:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,47.7,0.645,BetMGM,POINTS_TOTAL,52.1,1,121.62 +2026-03-19 09:53:00,2026-03-22 03:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.6,0,100.0 +2026-03-23 04:14:00,2026-03-25 16:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,173.62 +2026-04-10 02:33:57,2026-04-10 03:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,-1.5,0.0,0.372,BetMGM,POINTS_SPREAD,2.0,1,115.36 +2026-04-15 05:21:00,2026-04-17 22:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-15 01:28:49,2026-03-15 03:00:00,NFL,San Francisco 49ers,Miami Dolphins,-2.0,0.0,0.149,Fanduel,POINTS_SPREAD,1.7,0,106.63 +2026-03-31 18:39:00,2026-04-02 01:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,53.5,1,113.47 +2026-02-28 04:50:00,2026-02-28 14:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,1,100.0 +2026-04-12 17:37:00,2026-04-14 07:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,0,103.35 +2026-04-06 21:06:19,2026-04-06 21:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,2.2,0.0,0.224,BetMGM,POINTS_SPREAD,0.2,1,100.0 +2026-03-10 05:25:00,2026-03-11 17:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,1,103.5 +2026-03-14 13:08:00,2026-03-15 20:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,140.13 +2026-04-14 15:36:00,2026-04-14 21:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,50.7,1,108.85 +2026-04-11 14:25:00,2026-04-13 21:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.1,0,100.0 +2026-03-19 01:02:04,2026-03-19 02:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.156,Fanduel,MONEYLINE,0.0,NA,173.88 +2026-04-06 05:54:00,2026-04-06 14:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,6.8,1,122.62 +2026-03-13 15:56:00,2026-03-16 06:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,1,100.0 +2026-02-20 06:25:00,2026-02-21 18:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,172.72 +2026-03-23 03:52:44,2026-03-23 06:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.043,BetMGM,MONEYLINE,0.0,NA,139.06 +2026-02-23 01:46:00,2026-02-24 07:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,0,100.0 +2026-03-24 11:46:18,2026-03-24 12:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,239.2,0.485,Fanduel,POINTS_TOTAL,237.6,1,110.39 +2026-02-26 05:19:00,2026-02-28 07:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,1,119.28 +2026-03-03 05:38:26,2026-03-03 06:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.408,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-25 21:15:00,2026-03-27 20:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,134.5 +2026-04-16 09:04:39,2026-04-16 07:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,-3.0,0.0,0.887,Fanduel,POINTS_SPREAD,1.8,0,100.0 +2026-04-19 14:32:34,2026-04-19 14:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.331,BetMGM,MONEYLINE,0.0,NA,114.28 +2026-03-17 04:02:00,2026-03-19 04:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,1,110.26 +2026-03-29 14:55:00,2026-03-30 14:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,225.1,0,105.83 +2026-03-24 07:52:00,2026-03-25 17:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.0,1,112.11 +2026-04-11 01:46:00,2026-04-12 06:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,205.8,0,106.78 +2026-03-27 04:46:00,2026-03-29 01:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,106.5 +2026-03-24 04:55:40,2026-03-24 04:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.626,BetMGM,MONEYLINE,0.0,NA,136.29 +2026-03-14 17:09:08,2026-03-14 15:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,4.8,0.923,Fanduel,POINTS_TOTAL,3.9,1,100.0 +2026-03-15 00:43:00,2026-03-17 01:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.4,0,100.0 +2026-03-30 17:47:00,2026-04-01 12:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,42.4,0,107.92 +2026-03-27 06:41:00,2026-03-28 22:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,1,141.28 +2026-03-27 16:00:00,2026-03-29 22:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,25.8,0,120.98 +2026-03-18 02:24:32,2026-03-18 01:00:00,NFL,Baltimore Ravens,Miami Dolphins,11.2,0.0,0.753,BetMGM,POINTS_SPREAD,5.4,1,100.0 +2026-03-18 09:19:00,2026-03-19 13:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,6.8,0,100.0 +2026-03-15 19:11:00,2026-03-15 23:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,111.88 +2026-03-03 10:22:37,2026-03-03 10:00:00,NFL,Miami Dolphins,Philadelphia Eagles,-0.1,0.0,0.759,BetMGM,POINTS_SPREAD,1.9,0,109.18 +2026-04-15 00:46:00,2026-04-15 07:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,35.3,1,121.87 +2026-03-12 03:01:00,2026-03-14 21:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,1,113.52 +2026-04-07 09:14:00,2026-04-08 15:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,0,104.41 +2026-04-20 00:32:00,2026-04-20 02:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,55.8,1,100.15 +2026-03-29 02:30:00,2026-03-29 07:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,0,128.0 +2026-04-02 11:29:00,2026-04-03 16:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.36 +2026-03-25 08:55:55,2026-03-25 08:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.894,Fanduel,MONEYLINE,0.0,NA,186.9 +2026-03-10 01:35:39,2026-03-10 02:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.337,Fanduel,MONEYLINE,0.0,NA,107.56 +2026-03-01 12:37:00,2026-03-01 22:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,223.8,1,110.88 +2026-03-09 23:03:42,2026-03-09 22:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,50.8,0.715,BetMGM,POINTS_TOTAL,40.4,0,129.57 +2026-02-27 14:11:00,2026-02-28 18:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,39.8,0,120.5 +2026-04-09 10:23:00,2026-04-12 05:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.5,1,114.25 +2026-04-16 13:12:21,2026-04-16 11:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,-0.9,0.0,0.952,BetMGM,POINTS_SPREAD,0.4,1,101.17 +2026-03-21 18:42:00,2026-03-22 06:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.8,1,100.0 +2026-04-02 23:51:01,2026-04-03 00:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.139,BetMGM,MONEYLINE,0.0,NA,105.87 +2026-02-27 04:15:00,2026-02-28 09:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,38.5,1,108.84 +2026-03-07 06:32:00,2026-03-09 04:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-19 20:33:00,2026-02-21 17:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,120.17 +2026-03-24 15:18:00,2026-03-26 14:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,116.08 +2026-03-19 11:56:26,2026-03-19 13:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,55.4,0.158,Fanduel,POINTS_TOTAL,55.7,0,100.0 +2026-02-21 19:51:00,2026-02-22 20:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,18.7,0,109.33 +2026-04-03 05:46:00,2026-04-05 20:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,0,134.15 +2026-03-13 12:44:38,2026-03-13 11:00:00,NFL,Detroit Lions,Baltimore Ravens,-0.5,0.0,0.698,Fanduel,POINTS_SPREAD,3.2,0,120.4 +2026-03-15 16:12:00,2026-03-16 11:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,11.3,0,100.0 +2026-04-15 23:48:52,2026-04-15 22:00:00,NBA,Boston Celtics,Denver Nuggets,4.7,0.0,0.716,BetMGM,POINTS_SPREAD,2.2,0,136.64 +2026-03-18 15:54:00,2026-03-19 14:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,150.75 +2026-03-10 04:05:00,2026-03-10 07:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,5.7,1,100.0 +2026-04-10 12:40:00,2026-04-11 22:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.5,0,130.65 +2026-02-21 05:16:56,2026-02-21 05:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.233,BetMGM,MONEYLINE,0.0,NA,105.36 +2026-04-06 08:29:00,2026-04-07 16:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,7.5,1,111.16 +2026-02-25 11:38:00,2026-02-28 05:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,13.6,0,104.61 +2026-03-13 07:11:45,2026-03-13 08:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,218.6,0.182,BetMGM,POINTS_TOTAL,217.0,0,106.26 +2026-03-18 17:59:00,2026-03-19 05:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-30 03:05:00,2026-03-30 23:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,235.3,1,101.77 +2026-03-18 04:36:00,2026-03-18 12:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,47.3,0,100.0 +2026-03-21 07:02:24,2026-03-21 07:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,38.0,0.53,Fanduel,POINTS_TOTAL,32.1,1,100.0 +2026-03-06 17:36:00,2026-03-09 06:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,222.2,1,106.22 +2026-03-26 21:40:00,2026-03-27 09:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,114.75 +2026-03-31 01:08:00,2026-04-02 10:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-27 00:24:00,2026-02-28 17:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,59.2,1,136.31 +2026-03-03 04:18:00,2026-03-04 06:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,218.3,1,126.61 +2026-04-13 04:18:00,2026-04-15 04:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.0,0,100.0 +2026-03-14 03:21:00,2026-03-15 21:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.0,1,123.41 +2026-03-28 16:01:00,2026-03-30 23:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,122.95 +2026-04-01 07:41:00,2026-04-02 22:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.0,1,100.0 +2026-04-07 19:53:34,2026-04-07 21:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,208.6,0.131,BetMGM,POINTS_TOTAL,210.1,1,101.89 +2026-02-21 16:24:00,2026-02-24 09:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,144.69 +2026-03-25 18:20:00,2026-03-26 09:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-26 13:19:28,2026-03-26 15:00:00,NHL,Florida Panthers,New York Rangers,0.0,3.5,0.086,Fanduel,POINTS_TOTAL,3.5,0,103.95 +2026-04-03 02:12:00,2026-04-04 15:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,8.9,1,104.27 +2026-04-14 23:25:00,2026-04-16 21:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,44.5,1,102.69 +2026-03-12 16:11:00,2026-03-13 04:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,0,125.66 +2026-04-06 11:58:00,2026-04-07 02:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.5,0,115.49 +2026-03-08 15:00:00,2026-03-09 12:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,1,115.16 +2026-04-04 05:59:00,2026-04-06 07:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,54.4,1,100.0 +2026-03-08 03:00:00,2026-03-08 08:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,23.8,0,100.48 +2026-03-16 03:21:00,2026-03-16 21:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.3,0,124.46 +2026-03-18 18:58:00,2026-03-21 17:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.9,1,109.33 +2026-03-29 09:06:00,2026-04-01 04:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.3,1,100.0 +2026-03-20 19:31:38,2026-03-20 19:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.948,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-24 23:33:28,2026-03-25 00:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.436,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-07 04:50:00,2026-03-09 17:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.5,1,123.69 +2026-02-25 07:34:00,2026-02-26 18:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.6,0,100.0 +2026-04-02 06:00:00,2026-04-03 05:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.1,1,125.95 +2026-04-21 00:53:00,2026-04-21 06:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,231.6,1,100.0 +2026-04-08 08:58:00,2026-04-11 04:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,140.03 +2026-03-27 10:41:00,2026-03-28 17:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,36.9,1,111.38 +2026-03-22 19:41:02,2026-03-22 21:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.128,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-14 07:18:00,2026-03-16 13:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,114.08 +2026-03-11 03:34:00,2026-03-12 18:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,0,135.3 +2026-02-19 23:33:00,2026-02-22 07:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,139.61 +2026-04-11 15:26:00,2026-04-12 05:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,46.8,0,108.94 +2026-03-15 13:30:48,2026-03-15 12:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,-0.5,0.0,0.91,Fanduel,POINTS_SPREAD,0.5,1,115.44 +2026-04-09 13:52:00,2026-04-11 10:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,231.1,0,108.13 +2026-02-19 03:23:00,2026-02-21 13:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.0,1,102.09 +2026-04-18 22:05:00,2026-04-20 04:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.7,0,100.0 +2026-04-14 13:36:57,2026-04-14 13:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,3.7,0.872,BetMGM,POINTS_TOTAL,3.9,1,108.41 +2026-03-22 23:21:00,2026-03-25 15:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,0,137.81 +2026-03-12 23:12:00,2026-03-15 09:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,0,104.66 +2026-03-10 08:53:00,2026-03-10 14:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,8.2,0,106.04 +2026-04-06 23:36:09,2026-04-07 00:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.412,Fanduel,MONEYLINE,0.0,NA,145.23 +2026-03-20 19:22:00,2026-03-22 14:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,52.2,1,126.85 +2026-03-17 22:53:14,2026-03-18 01:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.068,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-19 07:50:00,2026-03-20 01:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,230.0,1,123.44 +2026-04-08 14:46:00,2026-04-11 06:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,10.2,0,114.7 +2026-03-04 22:13:00,2026-03-06 14:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,236.3,1,124.51 +2026-04-10 15:18:00,2026-04-12 01:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,145.92 +2026-03-21 04:47:00,2026-03-23 06:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,107.39 +2026-03-19 04:13:00,2026-03-21 08:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,21.4,0,113.62 +2026-04-16 11:07:00,2026-04-19 05:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-01 10:26:00,2026-03-03 02:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,220.6,1,102.56 +2026-04-07 19:02:48,2026-04-07 18:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,238.7,0.41,BetMGM,POINTS_TOTAL,238.2,0,108.4 +2026-02-27 04:47:00,2026-03-01 16:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,134.56 +2026-04-05 07:52:00,2026-04-06 01:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,1,100.0 +2026-02-26 00:50:00,2026-02-26 14:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,167.21 +2026-02-24 21:56:00,2026-02-26 01:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,48.7,1,100.0 +2026-03-17 01:51:00,2026-03-18 04:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,104.01 +2026-04-16 10:13:00,2026-04-17 00:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,53.4,1,103.81 +2026-03-21 06:42:00,2026-03-24 00:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,155.44 +2026-03-14 20:10:00,2026-03-15 03:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,12.8,1,112.35 +2026-04-06 15:11:28,2026-04-06 15:00:00,NFL,San Francisco 49ers,Miami Dolphins,3.2,0.0,0.536,BetMGM,POINTS_SPREAD,3.1,0,100.0 +2026-02-19 10:34:00,2026-02-21 03:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,48.3,0,111.88 +2026-02-28 23:19:00,2026-03-02 15:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,18.1,0,100.15 +2026-03-07 07:19:00,2026-03-07 09:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,111.58 +2026-04-14 01:43:02,2026-04-14 02:00:00,NBA,Milwaukee Bucks,Phoenix Suns,3.6,0.0,0.478,BetMGM,POINTS_SPREAD,0.5,0,112.25 +2026-04-17 03:52:00,2026-04-17 06:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.4,0,128.81 +2026-03-11 14:21:00,2026-03-13 16:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,110.41 +2026-04-12 00:43:00,2026-04-14 05:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,0,130.61 +2026-04-03 13:25:57,2026-04-03 11:00:00,NBA,Milwaukee Bucks,Denver Nuggets,-1.4,0.0,0.872,BetMGM,POINTS_SPREAD,3.5,0,125.15 +2026-02-22 14:55:00,2026-02-23 06:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,110.09 +2026-02-25 13:33:00,2026-02-28 10:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,141.68 +2026-04-10 23:22:00,2026-04-11 09:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.6,0,116.29 +2026-03-07 11:17:00,2026-03-08 13:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,0,119.9 +2026-04-11 08:07:49,2026-04-11 08:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,-3.1,0.0,0.149,BetMGM,POINTS_SPREAD,2.4,1,117.94 +2026-03-13 12:53:00,2026-03-14 00:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-14 05:47:00,2026-04-15 06:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.0,1,124.13 +2026-02-22 06:37:38,2026-02-22 06:00:00,NBA,Los Angeles Lakers,Miami Heat,5.1,0.0,0.548,Fanduel,POINTS_SPREAD,0.3,0,127.12 +2026-03-01 14:48:34,2026-03-01 15:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.081,Fanduel,MONEYLINE,0.0,NA,118.13 +2026-04-13 01:30:00,2026-04-14 03:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,120.01 +2026-02-23 03:36:32,2026-02-23 02:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,3.5,0.653,BetMGM,POINTS_TOTAL,3.5,0,100.0 +2026-04-05 12:47:00,2026-04-06 03:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.8,1,100.0 +2026-02-25 01:19:00,2026-02-27 11:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,125.96 +2026-03-03 01:07:00,2026-03-04 14:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,40.5,0,114.49 +2026-04-14 05:18:00,2026-04-16 18:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,38.5,1,124.4 +2026-04-06 15:54:00,2026-04-08 11:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,0,107.39 +2026-04-18 11:16:25,2026-04-18 10:00:00,NFL,Baltimore Ravens,Buffalo Bills,-0.6,0.0,0.819,BetMGM,POINTS_SPREAD,0.4,0,123.91 +2026-03-31 11:09:00,2026-03-31 18:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,215.5,1,100.0 +2026-03-17 18:04:42,2026-03-17 16:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.865,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-08 07:30:00,2026-04-08 22:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,7.7,1,116.92 +2026-04-10 13:36:33,2026-04-10 14:00:00,NFL,Detroit Lions,Miami Dolphins,1.5,0.0,0.292,BetMGM,POINTS_SPREAD,3.6,1,109.43 +2026-02-23 17:25:00,2026-02-25 12:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,120.54 +2026-02-22 01:36:00,2026-02-22 08:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-12 09:15:00,2026-04-13 11:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,39.0,0,132.45 +2026-04-12 07:02:00,2026-04-13 01:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,125.63 +2026-03-13 01:27:00,2026-03-15 13:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,216.9,1,100.0 +2026-03-19 18:36:00,2026-03-22 04:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,0,122.72 +2026-03-26 13:06:00,2026-03-26 23:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-16 07:35:00,2026-03-17 12:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-29 23:09:00,2026-03-30 06:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,102.95 +2026-03-19 08:06:00,2026-03-21 06:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,41.2,1,113.38 +2026-04-19 22:45:00,2026-04-20 20:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,0,100.0 +2026-02-19 05:07:00,2026-02-21 14:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.0,1,118.79 +2026-02-22 21:13:00,2026-02-24 09:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,1,112.6 +2026-03-23 05:40:00,2026-03-23 11:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,58.0,1,111.84 +2026-03-05 23:18:00,2026-03-06 23:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,0,100.0 +2026-03-23 11:34:57,2026-03-23 11:00:00,NBA,Boston Celtics,Milwaukee Bucks,-2.0,0.0,0.622,Fanduel,POINTS_SPREAD,1.0,0,100.0 +2026-04-07 18:02:45,2026-04-07 18:00:00,NBA,Miami Heat,Boston Celtics,0.0,217.9,0.182,Fanduel,POINTS_TOTAL,215.6,0,107.29 +2026-04-13 17:13:20,2026-04-13 18:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,1.4,0.0,0.463,BetMGM,POINTS_SPREAD,1.7,0,117.45 +2026-02-22 09:14:06,2026-02-22 07:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,46.4,0.795,Fanduel,POINTS_TOTAL,45.7,1,100.0 +2026-03-12 19:11:00,2026-03-15 14:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,120.81 +2026-03-08 09:22:56,2026-03-08 08:00:00,NFL,Buffalo Bills,Philadelphia Eagles,2.7,0.0,0.683,BetMGM,POINTS_SPREAD,3.2,1,100.0 +2026-03-27 20:21:00,2026-03-30 00:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,126.96 +2026-02-25 01:21:00,2026-02-27 19:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-14 00:59:00,2026-04-15 04:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-20 11:36:00,2026-04-20 14:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-19 01:20:00,2026-03-19 05:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,117.89 +2026-03-03 14:33:48,2026-03-03 14:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,40.7,0.21,BetMGM,POINTS_TOTAL,44.6,0,104.04 +2026-03-09 00:59:00,2026-03-09 20:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,245.3,1,100.0 +2026-04-02 11:27:44,2026-04-02 12:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,3.1,0.0,0.493,BetMGM,POINTS_SPREAD,2.2,0,152.46 +2026-03-04 21:13:19,2026-03-04 21:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.124,Fanduel,MONEYLINE,0.0,NA,129.05 +2026-03-10 04:00:00,2026-03-12 15:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,1,100.0 +2026-02-22 00:56:00,2026-02-23 01:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,42.6,1,105.08 +2026-03-11 06:29:00,2026-03-14 01:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-07 18:07:00,2026-04-09 01:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,109.77 +2026-03-10 08:18:00,2026-03-11 17:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.7,1,100.0 +2026-04-21 05:58:03,2026-04-21 07:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,242.5,0.267,BetMGM,POINTS_TOTAL,240.9,0,107.32 +2026-04-01 07:11:00,2026-04-03 18:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-01 21:36:18,2026-04-01 21:00:00,NBA,Miami Heat,Boston Celtics,0.0,223.3,0.535,BetMGM,POINTS_TOTAL,222.7,1,100.89 +2026-04-18 18:09:00,2026-04-21 02:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,42.3,0,120.07 +2026-04-19 22:57:00,2026-04-21 10:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,26.0,0,131.59 +2026-03-18 22:35:36,2026-03-18 23:00:00,NBA,Miami Heat,Golden State Warriors,4.2,0.0,0.62,Fanduel,POINTS_SPREAD,0.8,0,128.54 +2026-02-26 08:48:43,2026-02-26 08:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,202.6,0.854,Fanduel,POINTS_TOTAL,211.6,1,130.47 +2026-02-21 20:25:16,2026-02-21 20:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.8,0.0,0.146,Fanduel,POINTS_SPREAD,0.2,1,125.47 +2026-03-25 07:00:00,2026-03-25 12:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,1,122.34 +2026-03-03 07:44:00,2026-03-03 21:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-25 08:12:19,2026-03-25 06:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.774,BetMGM,MONEYLINE,0.0,NA,117.27 +2026-02-22 20:45:00,2026-02-25 04:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,1,100.0 +2026-03-31 21:11:00,2026-04-02 01:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,112.13 +2026-04-04 15:38:28,2026-04-04 14:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,-2.3,0.0,0.836,Fanduel,POINTS_SPREAD,0.2,0,100.0 +2026-03-30 02:15:00,2026-04-01 17:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,124.52 +2026-03-02 23:22:15,2026-03-02 23:00:00,NBA,Golden State Warriors,Los Angeles Lakers,-5.8,0.0,0.557,Fanduel,POINTS_SPREAD,1.0,0,100.0 +2026-04-01 03:34:00,2026-04-03 18:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,45.0,0,115.76 +2026-04-01 05:52:00,2026-04-04 00:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,142.22 +2026-03-22 07:05:00,2026-03-24 22:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,123.36 +2026-03-26 14:03:00,2026-03-27 08:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,120.5 +2026-03-04 13:24:51,2026-03-04 14:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.527,BetMGM,MONEYLINE,0.0,NA,148.35 +2026-03-19 04:48:10,2026-03-19 06:00:00,NHL,Vegas Golden Knights,New York Rangers,-1.2,0.0,0.101,BetMGM,POINTS_SPREAD,0.1,1,117.62 +2026-03-25 17:01:00,2026-03-25 23:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,1,100.0 +2026-04-13 23:53:19,2026-04-14 00:00:00,NBA,Milwaukee Bucks,Phoenix Suns,-4.1,0.0,0.424,BetMGM,POINTS_SPREAD,1.1,0,100.0 +2026-03-11 07:17:00,2026-03-12 22:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,121.4 +2026-03-17 05:36:06,2026-03-17 06:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,219.8,0.595,BetMGM,POINTS_TOTAL,225.9,1,109.93 +2026-04-08 15:01:00,2026-04-09 16:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,0,111.67 +2026-03-01 20:33:00,2026-03-02 19:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.0,0,100.0 +2026-04-10 21:55:00,2026-04-12 17:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-05 18:03:00,2026-03-05 19:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,222.5,0,113.49 +2026-04-04 23:26:00,2026-04-05 23:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,0,100.03 +2026-04-14 03:52:00,2026-04-14 11:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-11 19:15:00,2026-03-13 20:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,18.4,1,116.95 +2026-03-20 13:34:00,2026-03-21 18:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,7.0,1,105.26 +2026-02-20 13:03:00,2026-02-23 13:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,0,101.46 +2026-04-16 23:56:00,2026-04-19 04:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,137.87 +2026-04-02 23:33:00,2026-04-04 00:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,110.71 +2026-04-09 09:58:55,2026-04-09 10:00:00,NHL,New York Rangers,Toronto Maple Leafs,-1.9,0.0,0.144,BetMGM,POINTS_SPREAD,0.8,0,100.0 +2026-04-08 22:09:37,2026-04-08 22:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.759,BetMGM,MONEYLINE,0.0,NA,141.95 +2026-04-09 22:54:00,2026-04-12 20:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,1,100.0 +2026-03-27 09:50:00,2026-03-29 22:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-10 02:13:14,2026-04-10 02:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,2.5,0.0,0.418,Fanduel,POINTS_SPREAD,0.9,0,118.8 +2026-02-24 19:49:00,2026-02-26 19:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,158.99 +2026-03-26 15:45:00,2026-03-27 16:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,218.0,1,108.72 +2026-04-03 00:37:00,2026-04-05 08:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,1,100.0 +2026-04-15 09:55:00,2026-04-18 00:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,223.6,1,100.0 +2026-04-12 04:07:09,2026-04-12 04:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.462,BetMGM,MONEYLINE,0.0,NA,177.48 +2026-03-28 04:36:00,2026-03-30 09:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,6.3,1,107.27 +2026-03-03 23:08:00,2026-03-05 15:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,1,100.0 +2026-03-21 01:29:00,2026-03-21 13:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-21 08:42:57,2026-02-21 07:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,2.4,0.0,0.872,BetMGM,POINTS_SPREAD,2.3,0,122.05 +2026-03-22 01:30:00,2026-03-22 04:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,0,136.49 +2026-03-01 14:35:00,2026-03-02 14:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,0,119.78 +2026-03-03 10:28:00,2026-03-05 00:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,118.08 +2026-03-28 07:03:00,2026-03-28 23:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,247.9,0,118.77 +2026-03-27 18:00:00,2026-03-28 19:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.8,0,118.52 +2026-03-09 14:53:46,2026-03-09 15:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.471,BetMGM,MONEYLINE,0.0,NA,149.03 +2026-04-04 09:20:00,2026-04-06 07:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,114.78 +2026-04-08 13:34:00,2026-04-09 20:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,232.8,0,101.44 +2026-04-03 09:12:37,2026-04-03 07:00:00,NHL,New York Rangers,Carolina Hurricanes,1.2,0.0,0.759,BetMGM,POINTS_SPREAD,1.9,0,112.96 +2026-03-28 20:09:50,2026-03-28 18:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,7.1,0.738,BetMGM,POINTS_TOTAL,7.2,0,100.0 +2026-03-07 04:55:32,2026-03-07 04:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,232.2,0.653,Fanduel,POINTS_TOTAL,231.3,0,125.66 +2026-03-08 03:07:00,2026-03-10 20:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,220.3,1,100.0 +2026-04-06 23:35:00,2026-04-09 18:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,0,120.65 +2026-04-03 00:56:00,2026-04-04 14:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,122.36 +2026-03-20 07:24:25,2026-03-20 07:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,56.6,0.619,BetMGM,POINTS_TOTAL,57.2,1,119.2 +2026-02-26 17:35:00,2026-02-28 22:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,131.13 +2026-03-03 21:37:15,2026-03-03 21:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.257,BetMGM,MONEYLINE,0.0,NA,117.59 +2026-02-24 10:27:00,2026-02-25 00:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,17.3,0,117.35 +2026-02-27 12:15:00,2026-03-01 18:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,236.4,1,116.6 +2026-03-10 03:32:02,2026-03-10 01:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,3.6,0.0,0.928,BetMGM,POINTS_SPREAD,3.1,1,107.81 +2026-02-20 02:56:00,2026-02-21 13:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,11.6,0,100.0 +2026-02-19 18:22:00,2026-02-20 21:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,59.1,0,110.83 +2026-02-20 13:10:00,2026-02-21 21:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,150.43 +2026-02-28 14:35:00,2026-03-01 17:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.4,1,100.0 +2026-02-23 21:00:00,2026-02-25 21:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,8.8,1,110.93 +2026-03-26 23:35:07,2026-03-27 01:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.134,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-21 06:52:50,2026-02-21 06:00:00,NBA,Golden State Warriors,Miami Heat,-2.0,0.0,0.738,BetMGM,POINTS_SPREAD,0.1,1,121.35 +2026-03-14 04:59:00,2026-03-14 20:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,194.19 +2026-04-01 11:51:00,2026-04-03 12:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-24 00:11:00,2026-02-24 20:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,130.21 +2026-03-28 15:28:00,2026-03-29 19:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,108.57 +2026-03-07 20:13:16,2026-03-07 20:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,7.7,0.296,BetMGM,POINTS_TOTAL,10.5,0,109.38 +2026-04-13 20:58:28,2026-04-13 19:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,3.5,0.686,Fanduel,POINTS_TOTAL,3.5,0,102.95 +2026-03-19 23:49:43,2026-03-20 00:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.504,BetMGM,MONEYLINE,0.0,NA,116.9 +2026-02-23 02:20:00,2026-02-24 20:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.7,0,110.28 +2026-04-13 05:30:22,2026-04-13 06:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.541,Fanduel,MONEYLINE,0.0,NA,139.38 +2026-03-16 21:05:00,2026-03-19 10:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,203.9,1,116.03 +2026-02-26 04:57:00,2026-02-27 08:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,57.2,1,100.0 +2026-02-28 04:25:14,2026-02-28 06:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.118,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-02 13:18:48,2026-03-02 13:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.56,BetMGM,MONEYLINE,0.0,NA,145.3 +2026-03-09 05:02:00,2026-03-12 02:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,123.17 +2026-03-30 02:07:00,2026-03-31 22:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.9,1,108.91 +2026-03-27 13:51:39,2026-03-27 12:00:00,NFL,Buffalo Bills,Philadelphia Eagles,1.0,0.0,0.887,Fanduel,POINTS_SPREAD,0.1,1,103.81 +2026-03-06 15:12:00,2026-03-08 09:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,100.0 +2026-03-09 18:52:30,2026-03-09 18:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,2.4,0.0,0.325,Fanduel,POINTS_SPREAD,2.2,0,100.0 +2026-03-27 12:03:00,2026-03-30 06:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,25.8,1,113.58 +2026-03-16 19:36:00,2026-03-19 02:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,45.2,0,105.06 +2026-03-09 11:03:38,2026-03-09 09:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,-0.4,0.0,0.798,Fanduel,POINTS_SPREAD,2.6,1,140.79 +2026-03-06 10:46:00,2026-03-07 12:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,100.0 +2026-03-25 08:24:09,2026-03-25 09:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.262,Fanduel,MONEYLINE,0.0,NA,113.5 +2026-04-03 15:13:15,2026-04-03 15:00:00,NFL,Philadelphia Eagles,Miami Dolphins,5.9,0.0,0.607,Fanduel,POINTS_SPREAD,0.6,0,144.17 +2026-04-05 15:26:26,2026-04-05 17:00:00,NHL,New York Rangers,Boston Bruins,0.0,7.1,0.258,BetMGM,POINTS_TOTAL,7.2,0,100.0 +2026-04-19 10:44:00,2026-04-20 11:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,1,104.42 +2026-04-04 22:25:34,2026-04-04 23:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,8.5,0.131,Fanduel,POINTS_TOTAL,8.0,1,100.0 +2026-03-28 23:45:25,2026-03-28 23:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.419,Fanduel,MONEYLINE,0.0,NA,146.25 +2026-03-18 20:35:00,2026-03-20 18:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,1,100.0 +2026-04-15 23:30:00,2026-04-16 17:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-27 15:40:32,2026-02-27 17:00:00,NBA,Miami Heat,Golden State Warriors,5.1,0.0,0.153,Fanduel,POINTS_SPREAD,0.7,1,100.0 +2026-03-15 23:31:00,2026-03-16 13:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,0,102.76 +2026-03-28 17:33:00,2026-03-30 23:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,103.17 +2026-03-23 23:39:46,2026-03-24 00:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.571,BetMGM,MONEYLINE,0.0,NA,143.57 +2026-02-25 16:13:00,2026-02-26 18:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,115.55 +2026-04-07 09:29:00,2026-04-07 12:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,1,100.0 +2026-03-16 22:36:00,2026-03-17 10:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,8.1,1,100.0 +2026-02-25 07:36:00,2026-02-25 17:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,161.39 +2026-03-27 05:12:00,2026-03-28 18:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.3,1,132.2 +2026-04-01 13:32:56,2026-04-01 15:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,43.1,0.033,Fanduel,POINTS_TOTAL,42.0,1,116.95 +2026-04-12 13:53:00,2026-04-13 02:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,15.5,0,115.84 +2026-03-23 14:19:00,2026-03-24 14:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,0,139.57 +2026-04-13 05:00:00,2026-04-16 00:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,11.6,0,100.0 +2026-03-19 02:39:52,2026-03-19 02:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.516,BetMGM,MONEYLINE,0.0,NA,146.54 +2026-03-22 10:05:00,2026-03-25 05:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,0,119.45 +2026-03-18 14:58:00,2026-03-20 01:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,127.88 +2026-04-06 13:27:00,2026-04-09 02:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.0,0,103.12 +2026-04-07 14:35:00,2026-04-09 12:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,1,120.43 +2026-03-23 17:14:04,2026-03-23 17:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,1.6,0.0,0.206,Fanduel,POINTS_SPREAD,0.8,1,129.37 +2026-03-21 14:06:00,2026-03-21 16:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.9,1,118.62 +2026-03-19 07:49:00,2026-03-21 05:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.8,1,105.04 +2026-04-14 05:17:00,2026-04-14 23:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,214.4,1,104.67 +2026-03-04 06:01:00,2026-03-06 08:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,45.1,0,122.27 +2026-04-19 02:38:00,2026-04-20 02:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,34.2,1,125.91 +2026-03-21 08:05:00,2026-03-23 07:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,224.9,1,101.29 +2026-03-05 22:55:39,2026-03-06 00:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,25.4,0.037,BetMGM,POINTS_TOTAL,23.7,0,111.6 +2026-03-28 12:41:22,2026-03-28 11:00:00,NBA,Los Angeles Lakers,Miami Heat,0.1,0.0,0.841,BetMGM,POINTS_SPREAD,3.8,0,100.21 +2026-04-08 22:56:00,2026-04-09 14:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,170.77 +2026-02-21 02:01:00,2026-02-22 10:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,49.5,1,106.61 +2026-02-24 22:07:00,2026-02-25 14:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.2,1,100.0 +2026-03-26 20:41:00,2026-03-27 02:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,0,100.0 +2026-04-15 14:31:00,2026-04-17 19:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,62.9,1,100.0 +2026-03-17 12:58:14,2026-03-17 14:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,37.0,0.118,BetMGM,POINTS_TOTAL,35.5,0,101.0 +2026-04-11 21:49:00,2026-04-13 02:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,6.3,0,100.0 +2026-04-01 22:56:00,2026-04-03 06:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,146.4 +2026-04-18 15:08:28,2026-04-18 13:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.736,BetMGM,MONEYLINE,0.0,NA,142.53 +2026-03-21 19:28:00,2026-03-22 15:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,100.0 +2026-03-26 20:13:00,2026-03-29 16:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,162.51 +2026-02-24 23:31:00,2026-02-27 09:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,1,112.3 +2026-02-23 08:44:34,2026-02-23 09:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,41.9,0.231,Fanduel,POINTS_TOTAL,40.5,0,115.23 +2026-03-03 10:11:00,2026-03-03 14:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.2,1,115.56 +2026-03-16 17:33:30,2026-03-16 18:00:00,NFL,San Francisco 49ers,Miami Dolphins,-2.4,0.0,0.325,BetMGM,POINTS_SPREAD,1.8,0,122.07 +2026-03-11 05:22:00,2026-03-13 14:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,153.54 +2026-03-21 08:33:00,2026-03-23 19:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,8.8,1,119.33 +2026-03-12 03:55:00,2026-03-14 17:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.9,0,129.52 +2026-02-25 08:42:15,2026-02-25 09:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,44.7,0.557,BetMGM,POINTS_TOTAL,46.9,1,116.84 +2026-03-21 03:11:00,2026-03-21 19:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,56.5,0,107.53 +2026-02-21 23:43:00,2026-02-24 11:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,158.9 +2026-02-27 23:08:00,2026-03-02 14:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,12.5,0,112.25 +2026-03-13 10:44:45,2026-03-13 11:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,7.7,0.232,BetMGM,POINTS_TOTAL,8.5,1,108.62 +2026-02-23 15:10:00,2026-02-25 09:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,124.22 +2026-04-07 09:17:14,2026-04-07 09:00:00,NBA,Los Angeles Lakers,Golden State Warriors,4.5,0.0,0.418,BetMGM,POINTS_SPREAD,4.7,0,112.7 +2026-02-25 07:52:00,2026-02-28 04:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,229.4,0,115.09 +2026-03-24 16:21:00,2026-03-26 07:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,223.5,1,116.96 +2026-04-05 15:44:00,2026-04-06 23:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,120.19 +2026-03-11 15:35:21,2026-03-11 15:00:00,NHL,Toronto Maple Leafs,Boston Bruins,-3.7,0.0,0.502,BetMGM,POINTS_SPREAD,0.5,0,100.0 +2026-03-27 14:16:00,2026-03-28 09:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,108.79 +2026-03-11 01:06:55,2026-03-11 00:00:00,NBA,Miami Heat,Milwaukee Bucks,0.5,0.0,0.444,Fanduel,POINTS_SPREAD,6.1,0,153.26 +2026-03-03 18:22:39,2026-03-03 18:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.387,BetMGM,MONEYLINE,0.0,NA,106.59 +2026-03-31 21:29:00,2026-04-03 20:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,45.4,0,108.18 +2026-02-28 13:25:00,2026-03-03 04:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,245.4,0,132.3 +2026-02-25 10:34:08,2026-02-25 12:00:00,NHL,New York Rangers,Florida Panthers,-6.8,0.0,0.273,Fanduel,POINTS_SPREAD,0.3,1,146.55 +2026-04-15 22:04:00,2026-04-15 22:00:00,NBA,Golden State Warriors,Dallas Mavericks,-0.1,0.0,0.5,BetMGM,POINTS_SPREAD,3.3,1,124.47 +2026-03-30 04:47:55,2026-03-30 04:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,44.2,0.444,Fanduel,POINTS_TOTAL,37.5,0,120.18 +2026-03-29 15:58:07,2026-03-29 17:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.184,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-07 21:29:00,2026-03-10 08:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,111.13 +2026-04-07 16:40:08,2026-04-07 17:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.323,BetMGM,MONEYLINE,0.0,NA,145.24 +2026-02-25 06:44:00,2026-02-26 06:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,1,120.46 +2026-02-24 08:49:00,2026-02-25 04:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,1,100.0 +2026-04-10 18:36:26,2026-04-10 20:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,42.4,0.258,Fanduel,POINTS_TOTAL,39.3,0,123.35 +2026-04-20 07:30:56,2026-04-20 07:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,-0.0,0.0,0.533,BetMGM,POINTS_SPREAD,1.3,0,100.0 +2026-03-19 19:02:00,2026-03-20 09:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-05 09:15:00,2026-03-05 20:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,100.0 +2026-03-31 12:47:00,2026-04-01 11:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,1,100.92 +2026-03-30 02:07:00,2026-03-31 23:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,1,124.94 +2026-04-21 02:14:16,2026-04-21 00:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,57.7,0.896,BetMGM,POINTS_TOTAL,60.9,1,111.33 +2026-04-21 09:29:28,2026-04-21 09:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,234.6,0.786,BetMGM,POINTS_TOTAL,237.0,1,107.58 +2026-03-07 18:47:00,2026-03-08 04:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,175.16 +2026-04-05 00:58:00,2026-04-07 01:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,0,141.56 +2026-03-06 16:31:00,2026-03-09 02:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,38.7,0,116.79 +2026-03-09 00:35:00,2026-03-09 01:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,0,124.32 +2026-03-02 21:53:00,2026-03-04 23:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,223.6,1,100.0 +2026-02-24 23:12:00,2026-02-26 18:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,117.56 +2026-04-10 03:17:00,2026-04-11 13:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,1,135.42 +2026-04-15 05:26:00,2026-04-15 16:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,223.6,1,116.45 +2026-03-25 14:03:00,2026-03-27 07:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,24.4,0,108.64 +2026-03-30 18:47:26,2026-03-30 20:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.058,Fanduel,MONEYLINE,0.0,NA,100.37 +2026-03-14 16:24:00,2026-03-14 22:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,0,128.06 +2026-04-12 11:34:00,2026-04-13 08:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.7,1,103.12 +2026-03-22 15:56:00,2026-03-25 11:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,131.79 +2026-04-18 00:26:00,2026-04-18 16:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.6,1,136.24 +2026-03-18 07:42:00,2026-03-20 22:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,128.88 +2026-03-06 16:46:00,2026-03-09 15:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,130.81 +2026-03-28 13:45:00,2026-03-28 20:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,142.17 +2026-03-10 14:20:07,2026-03-10 15:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.484,Fanduel,MONEYLINE,0.0,NA,156.61 +2026-03-02 15:41:00,2026-03-02 22:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,112.51 +2026-03-29 15:52:00,2026-03-30 02:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,0,105.3 +2026-03-28 05:01:00,2026-03-28 20:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-25 01:36:00,2026-03-26 14:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.5,0,100.0 +2026-03-10 04:30:00,2026-03-12 00:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,141.63 +2026-03-26 00:29:00,2026-03-27 22:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,209.8,0,116.14 +2026-04-07 01:53:37,2026-04-07 03:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,10.0,0.259,BetMGM,POINTS_TOTAL,10.4,1,115.05 +2026-03-08 05:55:00,2026-03-10 05:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,1,123.38 +2026-03-13 03:16:00,2026-03-14 10:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,5.9,1,119.97 +2026-03-18 13:01:00,2026-03-19 11:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,1,123.12 +2026-03-04 08:15:00,2026-03-04 14:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-07 16:37:24,2026-03-07 17:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.63,Fanduel,MONEYLINE,0.0,NA,142.57 +2026-04-14 22:04:00,2026-04-16 00:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,0,126.55 +2026-03-09 16:36:00,2026-03-10 02:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,1,101.07 +2026-03-27 08:35:00,2026-03-28 05:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,159.58 +2026-03-27 10:04:00,2026-03-28 09:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,235.5,0,100.0 +2026-03-20 23:50:00,2026-03-22 13:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.6,1,100.0 +2026-03-25 09:15:00,2026-03-28 08:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,154.55 +2026-03-19 20:21:00,2026-03-22 17:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,185.59 +2026-03-02 17:05:00,2026-03-03 03:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,117.16 +2026-03-16 03:12:00,2026-03-16 21:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,1,106.6 +2026-02-19 13:32:00,2026-02-20 23:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,51.5,0,116.01 +2026-03-25 07:46:00,2026-03-27 11:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,7.2,1,100.0 +2026-03-02 20:14:08,2026-03-02 20:00:00,NHL,Florida Panthers,New York Rangers,3.4,0.0,0.473,Fanduel,POINTS_SPREAD,0.8,0,104.68 +2026-02-25 15:33:00,2026-02-27 07:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,1,100.0 +2026-03-24 16:30:00,2026-03-26 02:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,5.1,0,116.58 +2026-02-25 21:42:00,2026-02-26 17:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.4,1,100.0 +2026-02-20 12:31:00,2026-02-21 13:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,14.0,0,111.31 +2026-03-12 18:43:15,2026-03-12 19:00:00,NHL,Colorado Avalanche,New York Rangers,2.7,0.0,0.257,BetMGM,POINTS_SPREAD,1.3,0,100.0 +2026-03-28 13:19:00,2026-03-30 17:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,119.75 +2026-03-22 17:58:00,2026-03-25 11:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,41.1,0,133.26 +2026-03-12 19:03:07,2026-03-12 18:00:00,NFL,Baltimore Ravens,Buffalo Bills,3.0,0.0,0.534,BetMGM,POINTS_SPREAD,2.9,0,100.0 +2026-03-06 07:20:00,2026-03-09 00:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-27 15:58:00,2026-03-28 14:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,0,100.0 +2026-03-09 04:54:00,2026-03-10 11:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-30 11:51:00,2026-03-30 23:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,0,100.0 +2026-03-17 23:28:00,2026-03-18 08:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,246.1,1,120.7 +2026-03-23 05:45:00,2026-03-23 17:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,0,130.03 +2026-03-19 09:35:00,2026-03-20 21:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,57.6,0,104.22 +2026-04-14 09:28:00,2026-04-16 03:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,233.2,0,115.65 +2026-04-20 10:05:46,2026-04-20 11:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.271,Fanduel,MONEYLINE,0.0,NA,118.15 +2026-03-30 14:01:00,2026-03-31 02:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.5,0,100.0 +2026-02-21 13:51:00,2026-02-21 16:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-01 00:04:00,2026-03-02 01:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,0,115.7 +2026-02-22 09:56:00,2026-02-25 02:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,148.55 +2026-03-26 07:40:00,2026-03-29 02:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-23 07:38:00,2026-03-23 21:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,112.14 +2026-03-17 02:25:00,2026-03-19 19:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,219.9,1,123.61 +2026-02-23 12:08:15,2026-02-23 11:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,6.0,0.407,BetMGM,POINTS_TOTAL,10.3,0,100.0 +2026-04-13 06:58:00,2026-04-13 13:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,135.48 +2026-03-23 10:47:00,2026-03-26 04:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,131.23 +2026-04-12 12:50:04,2026-04-12 14:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.356,Fanduel,MONEYLINE,0.0,NA,143.54 +2026-03-15 20:01:00,2026-03-18 14:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,113.79 +2026-03-10 18:41:00,2026-03-13 10:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,7.2,1,110.41 +2026-03-19 20:43:00,2026-03-21 00:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,0,131.33 +2026-03-21 23:00:28,2026-03-22 00:00:00,NHL,New York Rangers,Carolina Hurricanes,3.4,0.0,0.436,Fanduel,POINTS_SPREAD,1.7,0,127.08 +2026-03-01 14:47:00,2026-03-02 00:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,228.6,1,110.57 +2026-03-08 06:55:00,2026-03-10 02:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,0,122.75 +2026-03-18 08:51:00,2026-03-18 16:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,128.88 +2026-03-08 12:28:00,2026-03-10 03:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,44.9,1,108.1 +2026-03-08 22:26:54,2026-03-08 22:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,-0.1,0.0,0.505,Fanduel,POINTS_SPREAD,0.2,1,100.0 +2026-04-01 14:56:00,2026-04-03 19:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-20 21:36:00,2026-02-23 12:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,233.8,0,100.0 +2026-04-08 10:27:50,2026-04-08 09:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.688,BetMGM,MONEYLINE,0.0,NA,149.2 +2026-02-23 17:48:58,2026-02-23 17:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.461,BetMGM,MONEYLINE,0.0,NA,124.33 +2026-03-19 14:38:00,2026-03-20 03:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,222.7,0,100.0 +2026-03-29 16:08:00,2026-03-31 04:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,126.33 +2026-03-08 09:47:00,2026-03-10 02:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,226.0,0,117.33 +2026-03-28 03:00:00,2026-03-30 19:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,117.23 +2026-04-12 12:08:00,2026-04-13 02:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,100.82 +2026-03-09 22:58:36,2026-03-09 21:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.67,Fanduel,MONEYLINE,0.0,NA,114.84 +2026-03-01 17:33:00,2026-03-04 14:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,189.88 +2026-04-09 03:19:00,2026-04-11 10:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,1,100.0 +2026-04-10 02:34:00,2026-04-11 11:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,43.2,1,121.19 +2026-04-18 11:31:00,2026-04-20 04:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,9.0,1,115.35 +2026-04-14 10:01:00,2026-04-16 13:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-13 17:24:00,2026-04-13 21:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-01 08:18:16,2026-04-01 08:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,14.4,0.496,BetMGM,POINTS_TOTAL,11.8,1,106.38 +2026-04-07 10:22:00,2026-04-10 10:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,16.7,1,119.6 +2026-04-06 19:48:00,2026-04-09 00:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,231.0,0,103.39 +2026-04-02 05:08:00,2026-04-03 20:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,11.9,0,100.0 +2026-03-31 18:06:00,2026-04-03 17:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,49.2,0,102.48 +2026-03-31 02:24:00,2026-03-31 22:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,28.8,0,130.29 +2026-03-27 02:43:00,2026-03-27 08:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,1,100.0 +2026-03-02 06:25:00,2026-03-03 21:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,140.26 +2026-03-22 12:16:00,2026-03-24 08:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,1,117.57 +2026-03-05 04:20:00,2026-03-06 13:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.0,0,124.11 +2026-04-17 21:50:00,2026-04-17 22:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.3,1,108.58 +2026-02-21 15:40:00,2026-02-23 16:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,158.14 +2026-04-20 23:54:27,2026-04-21 00:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.497,Fanduel,MONEYLINE,0.0,NA,150.4 +2026-04-01 16:55:00,2026-04-02 14:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,16.3,0,100.0 +2026-03-23 10:18:00,2026-03-24 12:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.1,1,135.67 +2026-03-13 09:17:00,2026-03-16 02:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-25 14:44:52,2026-02-25 15:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.366,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-12 01:38:00,2026-03-13 21:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,121.78 +2026-03-06 10:23:00,2026-03-09 09:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,160.92 +2026-03-30 07:10:00,2026-03-31 13:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-14 22:27:26,2026-03-14 21:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.858,Fanduel,MONEYLINE,0.0,NA,139.95 +2026-03-20 23:32:27,2026-03-20 23:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.597,Fanduel,MONEYLINE,0.0,NA,182.05 +2026-03-12 15:02:00,2026-03-15 05:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,221.0,0,100.0 +2026-02-25 23:28:00,2026-02-28 00:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,161.33 +2026-04-19 02:16:00,2026-04-20 21:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,18.7,1,118.04 +2026-02-25 22:27:00,2026-02-27 23:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.0,1,100.0 +2026-02-27 12:29:00,2026-02-28 20:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,170.31 +2026-04-01 18:28:00,2026-04-04 12:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-26 10:54:00,2026-02-27 13:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,1,118.93 +2026-04-08 06:01:00,2026-04-10 01:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,31.2,1,114.19 +2026-03-16 18:44:00,2026-03-18 03:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,1,100.0 +2026-02-20 08:17:00,2026-02-23 02:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,232.7,0,121.83 +2026-04-02 12:41:08,2026-04-02 12:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,31.8,0.623,BetMGM,POINTS_TOTAL,28.8,1,100.0 +2026-03-09 22:09:00,2026-03-10 00:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.9,0,123.72 +2026-03-30 06:16:00,2026-04-01 03:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,207.7,0,122.36 +2026-04-12 18:35:00,2026-04-15 02:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,1,100.0 +2026-03-28 06:28:20,2026-03-28 06:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,43.5,0.263,BetMGM,POINTS_TOTAL,43.6,1,100.0 +2026-03-26 10:46:15,2026-03-26 12:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.357,Fanduel,MONEYLINE,0.0,NA,168.99 +2026-04-09 04:19:02,2026-04-09 05:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.228,Fanduel,MONEYLINE,0.0,NA,151.39 +2026-04-08 08:11:00,2026-04-10 19:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,220.4,1,118.93 +2026-03-10 09:21:00,2026-03-11 04:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,105.06 +2026-03-13 04:29:00,2026-03-13 16:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,240.5,0,113.15 +2026-02-27 21:20:00,2026-03-02 12:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,1,110.17 +2026-04-05 05:05:00,2026-04-06 01:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,108.49 +2026-03-07 03:26:00,2026-03-09 01:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,110.12 +2026-02-20 23:41:00,2026-02-21 00:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,112.68 +2026-04-18 14:21:00,2026-04-18 20:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,1,129.03 +2026-03-06 02:24:00,2026-03-07 04:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,135.56 +2026-03-14 10:27:00,2026-03-15 18:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,139.75 +2026-04-04 12:49:00,2026-04-05 13:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,219.7,1,100.0 +2026-03-01 23:42:15,2026-03-01 23:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,-0.1,0.0,0.907,BetMGM,POINTS_SPREAD,1.2,0,100.0 +2026-03-01 13:42:33,2026-03-01 13:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.642,BetMGM,MONEYLINE,0.0,NA,128.89 +2026-04-03 15:44:00,2026-04-04 01:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,1,106.86 +2026-04-17 10:28:55,2026-04-17 11:00:00,NHL,Carolina Hurricanes,Boston Bruins,-0.0,0.0,0.094,BetMGM,POINTS_SPREAD,2.3,1,114.72 +2026-04-16 19:35:45,2026-04-16 19:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.782,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-27 03:21:00,2026-03-27 04:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,131.5 +2026-04-16 20:17:00,2026-04-18 02:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,115.02 +2026-02-20 16:39:00,2026-02-21 04:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,154.25 +2026-03-14 02:57:00,2026-03-15 03:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,220.4,1,102.73 +2026-04-02 19:58:00,2026-04-03 08:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.0,1,134.19 +2026-03-28 12:56:00,2026-03-29 00:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,4.3,0,122.87 +2026-03-26 21:59:09,2026-03-26 22:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,34.0,0.362,BetMGM,POINTS_TOTAL,33.7,0,100.0 +2026-03-02 22:27:00,2026-03-04 11:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-10 15:50:00,2026-04-12 23:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,111.46 +2026-04-16 02:12:00,2026-04-17 21:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,12.2,0,107.0 +2026-03-10 05:49:02,2026-03-10 06:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.478,BetMGM,MONEYLINE,0.0,NA,175.71 +2026-02-26 13:29:00,2026-02-28 20:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,126.24 +2026-04-09 10:15:00,2026-04-11 19:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,231.3,0,100.0 +2026-03-20 12:47:00,2026-03-22 23:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,6.4,0,105.37 +2026-04-13 17:19:00,2026-04-15 14:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.6,1,115.68 +2026-02-25 22:37:20,2026-02-25 23:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,3.2,0.0,0.063,BetMGM,POINTS_SPREAD,2.5,0,104.94 +2026-03-06 18:40:00,2026-03-09 13:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-05 13:05:00,2026-04-08 05:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,149.79 +2026-04-11 19:20:25,2026-04-11 19:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,44.6,0.819,Fanduel,POINTS_TOTAL,42.2,1,106.39 +2026-03-16 09:44:00,2026-03-17 22:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,13.9,1,115.07 +2026-03-20 00:17:00,2026-03-20 14:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,0,113.8 +2026-02-23 06:32:30,2026-02-23 05:00:00,NBA,Denver Nuggets,Miami Heat,0.0,237.1,0.725,Fanduel,POINTS_TOTAL,233.6,1,104.04 +2026-02-27 13:33:00,2026-03-01 15:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,135.83 +2026-04-20 08:45:18,2026-04-20 09:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.535,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-22 13:45:08,2026-03-22 14:00:00,NBA,Dallas Mavericks,Miami Heat,-0.7,0.0,0.173,Fanduel,POINTS_SPREAD,2.7,1,108.6 +2026-02-26 03:37:48,2026-02-26 04:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.06,BetMGM,MONEYLINE,0.0,NA,152.38 +2026-03-24 14:25:00,2026-03-24 20:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.7,1,126.87 +2026-04-08 22:19:00,2026-04-11 20:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,103.51 +2026-04-17 23:11:00,2026-04-19 10:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,50.1,1,115.56 +2026-03-14 05:07:00,2026-03-16 10:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,219.5,1,100.0 +2026-02-23 05:47:00,2026-02-23 04:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,41.8,0.7,BetMGM,POINTS_TOTAL,47.1,0,100.0 +2026-03-15 02:28:51,2026-03-15 02:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,18.8,0.377,Fanduel,POINTS_TOTAL,13.4,0,114.43 +2026-03-23 11:06:00,2026-03-24 03:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,232.6,0,123.33 +2026-04-02 15:12:00,2026-04-05 11:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,52.4,0,101.53 +2026-04-17 11:11:13,2026-04-17 10:00:00,NFL,Miami Dolphins,Baltimore Ravens,-0.7,0.0,0.579,Fanduel,POINTS_SPREAD,4.1,0,117.97 +2026-03-31 21:01:44,2026-03-31 21:00:00,NBA,Miami Heat,Phoenix Suns,0.0,243.5,0.243,BetMGM,POINTS_TOTAL,235.5,1,100.85 +2026-04-14 09:51:00,2026-04-15 03:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,110.1 +2026-03-20 18:14:54,2026-03-20 17:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,240.4,0.755,Fanduel,POINTS_TOTAL,247.0,0,100.0 +2026-04-07 02:51:56,2026-04-07 02:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,9.4,0.433,BetMGM,POINTS_TOTAL,4.9,0,110.84 +2026-04-06 23:15:45,2026-04-07 00:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.082,Fanduel,MONEYLINE,0.0,NA,116.57 +2026-03-23 22:47:40,2026-03-23 22:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.576,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-10 00:13:00,2026-03-11 13:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,47.2,1,100.0 +2026-02-26 01:02:00,2026-02-27 07:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.8,1,101.65 +2026-04-06 03:08:00,2026-04-07 08:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.7,0,112.25 +2026-03-08 22:08:00,2026-03-10 06:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,4.1,1,117.76 +2026-04-09 03:23:00,2026-04-09 08:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,1,116.62 +2026-04-07 13:39:00,2026-04-07 23:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,1,100.08 +2026-04-15 15:54:00,2026-04-17 04:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,0,100.0 +2026-02-26 21:25:00,2026-02-26 23:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,224.0,1,100.0 +2026-04-20 01:15:27,2026-04-20 01:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,-1.6,0.0,0.397,Fanduel,POINTS_SPREAD,3.3,1,127.21 +2026-03-16 17:40:00,2026-03-17 18:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-06 03:47:00,2026-04-06 23:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,120.36 +2026-03-23 10:00:00,2026-03-23 18:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,1,122.77 +2026-04-01 10:04:00,2026-04-02 02:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-28 15:26:00,2026-03-28 17:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-07 06:02:00,2026-03-08 13:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,165.24 +2026-04-17 11:13:00,2026-04-18 10:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,103.16 +2026-03-01 13:05:00,2026-03-03 02:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,114.16 +2026-03-02 08:48:49,2026-03-02 08:00:00,NHL,Boston Bruins,Florida Panthers,0.0,3.5,0.349,Fanduel,POINTS_TOTAL,6.2,0,127.01 +2026-03-18 09:46:00,2026-03-21 00:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,103.07 +2026-03-10 17:42:00,2026-03-10 22:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,110.16 +2026-03-17 04:30:50,2026-03-17 03:00:00,NBA,Denver Nuggets,Boston Celtics,1.9,0.0,0.688,Fanduel,POINTS_SPREAD,0.8,1,100.0 +2026-03-23 19:22:02,2026-03-23 19:00:00,NBA,Dallas Mavericks,Phoenix Suns,5.6,0.0,0.228,BetMGM,POINTS_SPREAD,0.6,0,150.52 +2026-03-21 16:57:00,2026-03-23 02:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,120.96 +2026-03-11 14:19:00,2026-03-14 07:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,133.64 +2026-03-27 04:08:20,2026-03-27 02:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.763,BetMGM,MONEYLINE,0.0,NA,134.76 +2026-02-28 12:56:32,2026-02-28 11:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.853,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-31 04:56:00,2026-04-02 22:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,119.14 +2026-02-22 03:38:00,2026-02-24 21:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.0,1,122.32 +2026-02-26 16:27:00,2026-02-27 04:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-25 09:52:00,2026-02-26 16:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,51.3,1,100.0 +2026-03-13 10:14:02,2026-03-13 11:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.128,BetMGM,MONEYLINE,0.0,NA,114.69 +2026-04-14 00:28:00,2026-04-16 11:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,5.2,0,100.0 +2026-03-26 22:32:04,2026-03-26 20:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,241.1,0.956,BetMGM,POINTS_TOTAL,245.2,1,118.58 +2026-03-21 08:08:00,2026-03-21 12:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,55.2,0,100.0 +2026-03-14 03:19:00,2026-03-16 06:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,208.9,0,107.76 +2026-04-17 18:01:00,2026-04-19 21:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,146.01 +2026-02-25 14:31:33,2026-02-25 13:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.792,BetMGM,MONEYLINE,0.0,NA,140.5 +2026-03-08 03:43:58,2026-03-08 03:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.9,0.0,0.611,BetMGM,POINTS_SPREAD,2.2,1,100.93 +2026-03-08 00:38:55,2026-03-08 01:00:00,NHL,Boston Bruins,Florida Panthers,-2.2,0.0,0.194,BetMGM,POINTS_SPREAD,0.2,1,110.9 +2026-03-15 05:28:00,2026-03-15 13:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.5,0,109.52 +2026-04-18 20:07:00,2026-04-19 14:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,12.4,0,100.0 +2026-03-06 00:08:07,2026-03-06 00:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.634,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-01 18:43:06,2026-04-01 17:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,13.1,0.945,BetMGM,POINTS_TOTAL,9.9,1,100.0 +2026-03-16 01:10:00,2026-03-16 09:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,142.67 +2026-03-08 14:12:00,2026-03-08 22:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.6,1,124.63 +2026-04-02 08:51:00,2026-04-03 05:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,1,121.44 +2026-03-13 07:52:00,2026-03-14 03:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,227.3,0,114.52 +2026-02-25 14:34:00,2026-02-28 13:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,1,101.26 +2026-04-20 15:17:00,2026-04-20 16:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,128.32 +2026-04-04 12:19:00,2026-04-06 14:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,0,142.24 +2026-03-19 01:46:36,2026-03-19 02:00:00,NFL,Dallas Cowboys,Detroit Lions,0.6,0.0,0.07,BetMGM,POINTS_SPREAD,1.1,0,100.0 +2026-03-11 15:29:00,2026-03-14 07:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-25 18:14:00,2026-02-25 19:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.1,1,137.15 +2026-03-22 21:24:42,2026-03-22 22:00:00,NHL,Toronto Maple Leafs,Florida Panthers,-1.8,0.0,0.465,Fanduel,POINTS_SPREAD,1.0,0,100.0 +2026-04-13 23:14:00,2026-04-16 09:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,55.5,1,106.18 +2026-02-22 07:51:00,2026-02-24 13:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,0,100.0 +2026-03-26 05:12:54,2026-03-26 04:00:00,NHL,Carolina Hurricanes,New York Rangers,2.1,0.0,0.855,Fanduel,POINTS_SPREAD,0.1,0,134.86 +2026-03-23 16:19:00,2026-03-26 04:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,44.4,0,119.76 +2026-04-03 13:15:00,2026-04-05 04:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,1,103.76 +2026-04-13 02:57:00,2026-04-14 01:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,0,100.0 +2026-04-20 15:27:34,2026-04-20 16:00:00,NBA,Golden State Warriors,Denver Nuggets,-1.0,0.0,0.281,BetMGM,POINTS_SPREAD,2.3,0,100.0 +2026-04-03 04:53:00,2026-04-04 23:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.1,1,145.9 +2026-02-19 15:03:00,2026-02-21 19:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.6,0,100.0 +2026-03-13 22:09:07,2026-03-13 23:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,219.9,0.434,Fanduel,POINTS_TOTAL,218.2,0,107.03 +2026-04-15 10:20:55,2026-04-15 12:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.094,Fanduel,MONEYLINE,0.0,NA,139.23 +2026-03-12 10:15:00,2026-03-13 21:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,31.5,1,100.0 +2026-03-21 14:42:00,2026-03-22 18:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,105.61 +2026-04-05 14:20:51,2026-04-05 14:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.527,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-02 22:59:38,2026-04-03 00:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.248,Fanduel,MONEYLINE,0.0,NA,150.54 +2026-03-22 10:49:00,2026-03-23 22:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,1,140.07 +2026-03-22 21:13:00,2026-03-25 01:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,9.9,0,115.02 +2026-03-03 21:10:54,2026-03-03 21:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.705,BetMGM,MONEYLINE,0.0,NA,127.29 +2026-04-08 17:13:00,2026-04-09 11:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,1,100.0 +2026-04-10 19:59:00,2026-04-13 12:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,211.4,1,121.5 +2026-03-18 20:41:45,2026-03-18 21:00:00,NBA,Los Angeles Lakers,Miami Heat,6.6,0.0,0.182,BetMGM,POINTS_SPREAD,2.9,1,100.0 +2026-03-14 22:59:00,2026-03-16 22:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,0,149.5 +2026-03-28 01:16:42,2026-03-28 01:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.8,0.0,0.565,BetMGM,POINTS_SPREAD,1.5,1,123.15 +2026-03-02 02:49:00,2026-03-03 10:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,1,100.0 +2026-02-23 13:22:00,2026-02-26 07:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,0,100.0 +2026-03-04 08:27:00,2026-03-05 13:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,1,103.96 +2026-04-10 11:02:00,2026-04-12 19:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-26 09:59:00,2026-03-28 18:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,1,104.31 +2026-03-04 22:22:00,2026-03-05 16:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,130.67 +2026-03-09 22:05:00,2026-03-11 09:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-24 09:42:00,2026-03-26 13:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.1,0,119.6 +2026-03-12 06:28:10,2026-03-12 05:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,223.2,0.901,Fanduel,POINTS_TOTAL,225.0,1,118.58 +2026-03-19 17:20:14,2026-03-19 19:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.068,Fanduel,MONEYLINE,0.0,NA,112.02 +2026-03-10 20:57:48,2026-03-10 20:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.71,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-19 22:29:00,2026-04-20 00:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,46.7,1,100.0 +2026-03-03 19:44:45,2026-03-03 20:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.532,Fanduel,MONEYLINE,0.0,NA,147.06 +2026-04-09 18:09:57,2026-04-09 18:00:00,NHL,Florida Panthers,Edmonton Oilers,3.8,0.0,0.322,BetMGM,POINTS_SPREAD,0.1,1,100.0 +2026-03-20 02:04:00,2026-03-23 02:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,161.33 +2026-04-06 13:23:00,2026-04-08 14:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.2,1,133.9 +2026-03-21 21:46:48,2026-03-21 23:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,226.6,0.36,BetMGM,POINTS_TOTAL,229.5,0,124.76 +2026-03-24 17:21:00,2026-03-27 17:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,6.8,0,100.0 +2026-04-02 20:19:00,2026-04-05 15:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,1,100.0 +2026-04-06 10:24:00,2026-04-06 22:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.8,1,111.69 +2026-03-26 03:22:48,2026-03-26 04:00:00,NHL,New York Rangers,Vegas Golden Knights,2.4,0.0,0.56,BetMGM,POINTS_SPREAD,0.3,0,121.53 +2026-03-22 03:53:49,2026-03-22 04:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.3,0.0,0.049,BetMGM,POINTS_SPREAD,1.5,1,109.5 +2026-03-28 09:03:52,2026-03-28 08:00:00,NBA,Los Angeles Lakers,Boston Celtics,-3.5,0.0,0.666,Fanduel,POINTS_SPREAD,0.7,1,122.02 +2026-03-15 10:08:00,2026-03-18 00:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,101.96 +2026-02-25 11:34:00,2026-02-25 13:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,3.5,0.15,BetMGM,POINTS_TOTAL,9.4,1,112.1 +2026-04-15 23:06:00,2026-04-18 08:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.8,1,119.34 +2026-03-28 14:21:00,2026-03-29 15:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,1,123.48 +2026-03-04 02:01:00,2026-03-05 22:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-17 12:03:16,2026-04-17 12:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.096,Fanduel,MONEYLINE,0.0,NA,157.51 +2026-03-04 23:11:00,2026-03-05 02:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.3,0,109.95 +2026-03-19 06:02:00,2026-03-20 21:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,1,118.95 +2026-02-21 13:57:38,2026-02-21 13:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,214.5,0.348,Fanduel,POINTS_TOTAL,205.4,1,100.0 +2026-04-11 01:37:00,2026-04-12 09:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,131.17 +2026-04-01 08:08:43,2026-04-01 08:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,65.9,0.104,BetMGM,POINTS_TOTAL,58.9,1,100.0 +2026-03-14 19:22:12,2026-03-14 20:00:00,NBA,Boston Celtics,Los Angeles Lakers,6.4,0.0,0.09,Fanduel,POINTS_SPREAD,2.4,1,103.12 +2026-03-07 23:44:00,2026-03-09 06:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,5.2,1,100.0 +2026-03-07 22:13:00,2026-03-09 15:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,128.14 +2026-04-13 11:52:00,2026-04-15 13:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,36.5,1,105.58 +2026-03-05 10:09:34,2026-03-05 11:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.031,Fanduel,MONEYLINE,0.0,NA,172.61 +2026-02-25 12:45:00,2026-02-27 22:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,211.7,1,100.0 +2026-03-11 22:29:16,2026-03-11 20:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.946,Fanduel,MONEYLINE,0.0,NA,158.23 +2026-03-01 10:13:37,2026-03-01 10:00:00,NBA,Denver Nuggets,Los Angeles Lakers,4.0,0.0,0.809,Fanduel,POINTS_SPREAD,2.2,0,122.18 +2026-03-27 19:49:00,2026-03-28 07:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.6,0,103.15 +2026-03-09 23:05:00,2026-03-12 18:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,51.8,1,100.0 +2026-02-21 13:52:00,2026-02-24 13:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,126.49 +2026-04-15 18:27:00,2026-04-15 19:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,38.9,0,108.45 +2026-03-11 08:23:00,2026-03-12 20:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,0,149.51 +2026-03-02 13:10:00,2026-03-04 20:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,136.06 +2026-03-08 18:56:00,2026-03-11 01:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-24 18:09:00,2026-03-26 21:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,0,117.52 +2026-03-28 00:36:00,2026-03-30 17:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,116.86 +2026-03-05 15:38:00,2026-03-06 01:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,29.7,1,101.38 +2026-03-06 16:22:00,2026-03-09 04:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,140.7 +2026-03-03 02:37:00,2026-03-05 09:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-10 00:39:00,2026-03-12 22:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,1,100.0 +2026-03-02 11:55:00,2026-03-03 21:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,135.18 +2026-04-02 16:54:00,2026-04-04 11:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,117.21 +2026-03-18 11:47:08,2026-03-18 11:00:00,NFL,Detroit Lions,Buffalo Bills,-0.7,0.0,0.373,BetMGM,POINTS_SPREAD,0.7,0,100.0 +2026-03-30 18:12:00,2026-04-02 01:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,1,137.34 +2026-02-27 01:36:31,2026-02-27 01:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.464,BetMGM,MONEYLINE,0.0,NA,139.55 +2026-02-25 01:17:00,2026-02-27 13:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,46.8,1,132.6 +2026-02-22 01:49:00,2026-02-22 03:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,0,117.83 +2026-04-06 19:24:00,2026-04-07 06:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.7,0,100.0 +2026-03-22 20:19:56,2026-03-22 19:00:00,NFL,Philadelphia Eagles,Detroit Lions,1.4,0.0,0.533,BetMGM,POINTS_SPREAD,3.5,0,113.66 +2026-04-02 09:03:34,2026-04-02 10:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,224.5,0.281,BetMGM,POINTS_TOTAL,226.2,1,100.0 +2026-04-17 04:04:00,2026-04-18 21:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,145.89 +2026-04-13 20:23:00,2026-04-14 14:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,5.8,1,117.33 +2026-03-17 18:27:25,2026-03-17 20:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.169,BetMGM,MONEYLINE,0.0,NA,143.87 +2026-03-03 14:02:25,2026-03-03 13:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,44.7,0.769,BetMGM,POINTS_TOTAL,43.3,0,103.52 +2026-03-25 12:47:00,2026-03-26 06:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,242.8,0,100.0 +2026-03-12 15:05:20,2026-03-12 16:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,24.1,0.263,Fanduel,POINTS_TOTAL,21.2,1,115.25 +2026-04-01 08:56:00,2026-04-02 11:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,1,100.0 +2026-04-18 17:51:00,2026-04-20 22:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,20.2,0,117.44 +2026-04-19 00:37:36,2026-04-19 00:00:00,NFL,Miami Dolphins,Dallas Cowboys,-1.4,0.0,0.42,BetMGM,POINTS_SPREAD,3.2,1,133.73 +2026-03-08 10:41:00,2026-03-08 18:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.4,0,100.0 +2026-04-03 01:39:00,2026-04-04 18:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,100.0 +2026-02-24 12:49:00,2026-02-25 05:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.9,0,100.0 +2026-03-03 06:07:00,2026-03-04 09:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,124.61 +2026-03-20 16:02:56,2026-03-20 15:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.833,BetMGM,MONEYLINE,0.0,NA,162.52 +2026-04-21 00:16:00,2026-04-21 03:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,1,105.79 +2026-04-18 19:12:03,2026-04-18 18:00:00,NBA,Miami Heat,Boston Celtics,-3.5,0.0,0.917,BetMGM,POINTS_SPREAD,4.1,1,113.49 +2026-03-23 11:06:00,2026-03-25 10:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,1,131.42 +2026-03-01 15:32:00,2026-03-02 17:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.5,0,129.1 +2026-03-21 20:51:00,2026-03-23 16:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,0,100.0 +2026-03-31 07:50:00,2026-04-03 05:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.0,0,100.0 +2026-02-27 15:57:00,2026-03-01 06:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,223.3,1,106.96 +2026-03-22 19:23:00,2026-03-22 22:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,1,112.94 +2026-03-12 18:40:00,2026-03-14 01:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,1,100.0 +2026-03-25 21:07:00,2026-03-28 18:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,0,100.0 +2026-04-07 17:47:00,2026-04-09 11:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,148.92 +2026-02-23 14:55:00,2026-02-24 21:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,6.9,0,100.0 +2026-03-31 02:44:00,2026-04-02 11:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,42.6,1,115.66 +2026-04-01 11:55:22,2026-04-01 12:00:00,NBA,Phoenix Suns,Los Angeles Lakers,3.1,0.0,0.641,Fanduel,POINTS_SPREAD,1.4,0,105.33 +2026-02-22 19:25:55,2026-02-22 17:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.844,BetMGM,MONEYLINE,0.0,NA,108.83 +2026-03-10 12:57:00,2026-03-11 01:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-12 19:47:56,2026-04-12 19:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.933,Fanduel,MONEYLINE,0.0,NA,116.23 +2026-04-05 06:44:00,2026-04-06 13:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,112.25 +2026-03-31 19:50:00,2026-04-03 08:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,142.07 +2026-03-02 12:48:00,2026-03-03 15:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.4 +2026-04-05 00:58:00,2026-04-07 01:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-12 11:17:00,2026-04-13 11:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,1,100.0 +2026-03-20 09:55:00,2026-03-22 12:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-19 19:30:00,2026-04-21 05:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,44.3,1,109.91 +2026-03-03 00:31:14,2026-03-03 00:00:00,NHL,Colorado Avalanche,Florida Panthers,2.7,0.0,0.418,Fanduel,POINTS_SPREAD,4.3,1,111.59 +2026-03-14 15:43:13,2026-03-14 15:00:00,NBA,Milwaukee Bucks,Boston Celtics,2.1,0.0,0.679,BetMGM,POINTS_SPREAD,4.1,1,105.77 +2026-03-22 07:01:00,2026-03-24 01:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,179.63 +2026-04-03 12:00:00,2026-04-06 05:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,14.9,1,113.37 +2026-03-03 13:02:57,2026-03-03 13:00:00,NBA,Dallas Mavericks,Miami Heat,2.6,0.0,0.122,Fanduel,POINTS_SPREAD,2.3,1,108.85 +2026-03-16 06:02:00,2026-03-18 23:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,154.92 +2026-04-06 13:32:00,2026-04-07 01:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,41.1,0,106.42 +2026-03-11 23:26:00,2026-03-12 07:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,0,104.73 +2026-03-11 13:50:00,2026-03-12 12:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,6.4,1,104.81 +2026-04-01 08:28:00,2026-04-02 13:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,147.25 +2026-04-04 14:21:00,2026-04-05 17:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,0,115.22 +2026-03-16 00:06:22,2026-03-16 00:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,28.3,0.641,BetMGM,POINTS_TOTAL,35.7,1,119.44 +2026-04-16 08:37:00,2026-04-17 06:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.9,0,100.0 +2026-03-05 19:14:00,2026-03-07 04:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,110.22 +2026-03-31 14:25:52,2026-03-31 15:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.066,Fanduel,MONEYLINE,0.0,NA,106.6 +2026-02-21 03:36:00,2026-02-21 06:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-17 12:16:00,2026-03-19 14:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.3,1,122.55 +2026-03-05 00:18:50,2026-03-05 00:00:00,NHL,Colorado Avalanche,Boston Bruins,0.7,0.0,0.788,BetMGM,POINTS_SPREAD,2.0,0,100.0 +2026-02-22 10:07:16,2026-02-22 11:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,44.5,0.146,BetMGM,POINTS_TOTAL,46.8,0,100.0 +2026-04-04 11:15:00,2026-04-05 16:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.1,0,121.92 +2026-04-13 04:25:00,2026-04-14 12:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,0,108.21 +2026-03-04 09:01:00,2026-03-07 07:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,0,126.66 +2026-03-07 15:32:15,2026-03-07 15:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,220.7,0.607,BetMGM,POINTS_TOTAL,219.6,0,100.0 +2026-04-03 04:13:00,2026-04-04 12:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-15 08:22:00,2026-03-18 01:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,1,134.41 +2026-04-11 00:01:00,2026-04-11 05:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,52.3,0,105.87 +2026-02-18 17:41:00,2026-02-20 22:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,230.7,1,109.81 +2026-04-06 15:35:22,2026-04-06 16:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.141,BetMGM,MONEYLINE,0.0,NA,122.11 +2026-03-29 19:19:00,2026-04-01 04:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.3,0,111.09 +2026-03-30 05:48:00,2026-03-31 20:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.7,1,100.0 +2026-04-01 22:28:00,2026-04-02 20:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,0,139.03 +2026-03-02 11:34:00,2026-03-03 10:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,1,115.92 +2026-02-19 09:24:00,2026-02-21 07:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,126.36 +2026-03-02 15:42:00,2026-03-05 08:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,117.82 +2026-03-02 07:13:00,2026-03-03 11:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,49.0,1,108.78 +2026-02-28 14:44:07,2026-02-28 14:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.334,BetMGM,MONEYLINE,0.0,NA,139.03 +2026-03-03 01:20:00,2026-03-05 22:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,0,100.0 +2026-03-28 06:04:39,2026-03-28 06:00:00,NFL,Philadelphia Eagles,Detroit Lions,-1.3,0.0,0.587,Fanduel,POINTS_SPREAD,0.4,1,149.88 +2026-03-24 10:30:00,2026-03-25 10:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,0,100.0 +2026-02-21 09:25:00,2026-02-22 08:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,101.97 +2026-04-04 09:03:00,2026-04-04 21:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,169.5 +2026-02-21 17:00:16,2026-02-21 16:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,43.7,0.746,Fanduel,POINTS_TOTAL,40.9,1,104.29 +2026-03-27 08:53:26,2026-03-27 08:00:00,NFL,San Francisco 49ers,Dallas Cowboys,3.6,0.0,0.958,BetMGM,POINTS_SPREAD,2.2,0,126.91 +2026-02-26 05:22:00,2026-02-28 06:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-24 10:37:25,2026-03-24 10:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.269,BetMGM,MONEYLINE,0.0,NA,121.1 +2026-04-11 23:15:38,2026-04-11 22:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.748,BetMGM,MONEYLINE,0.0,NA,129.31 +2026-04-02 01:10:00,2026-04-04 18:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,129.83 +2026-03-13 03:17:00,2026-03-14 00:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.5,0,125.59 +2026-03-03 01:41:00,2026-03-05 16:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,17.2,1,123.28 +2026-04-09 06:30:00,2026-04-10 21:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,119.4 +2026-03-20 04:59:00,2026-03-21 08:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,130.52 +2026-03-23 03:07:00,2026-03-25 02:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.5,1,106.03 +2026-03-02 04:01:00,2026-03-04 16:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,54.8,0,137.25 +2026-03-30 21:03:00,2026-03-31 21:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.9,0,109.71 +2026-03-29 14:26:00,2026-04-01 01:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-03 15:23:00,2026-03-05 00:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.4,0,100.0 +2026-03-26 08:16:00,2026-03-28 04:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,1,100.0 +2026-04-08 12:59:00,2026-04-10 00:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,1,131.95 +2026-04-02 12:10:00,2026-04-04 04:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,1,100.0 +2026-03-17 23:42:00,2026-03-18 14:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,121.19 +2026-03-09 11:34:00,2026-03-09 12:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,221.5,1,104.86 +2026-03-26 15:12:55,2026-03-26 15:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.344,BetMGM,MONEYLINE,0.0,NA,129.71 +2026-03-07 16:36:57,2026-03-07 14:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.922,BetMGM,MONEYLINE,0.0,NA,135.5 +2026-03-22 17:32:00,2026-03-24 14:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.2,1,100.0 +2026-03-17 16:02:15,2026-03-17 15:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.957,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-19 21:06:00,2026-03-21 17:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.2,1,124.43 +2026-04-06 17:13:00,2026-04-09 12:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-02 03:22:02,2026-04-02 03:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.5,0.0,0.528,BetMGM,POINTS_SPREAD,4.9,1,121.98 +2026-02-20 20:02:00,2026-02-22 16:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,141.9 +2026-02-22 02:52:00,2026-02-23 01:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,110.95 +2026-04-06 20:24:01,2026-04-06 20:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,227.4,0.489,BetMGM,POINTS_TOTAL,225.1,0,120.06 +2026-02-22 04:17:00,2026-02-24 07:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,171.97 +2026-03-21 17:52:00,2026-03-24 08:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-06 12:37:00,2026-03-07 23:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,28.4,1,105.35 +2026-02-20 23:53:57,2026-02-20 22:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,56.4,0.922,BetMGM,POINTS_TOTAL,52.9,0,126.57 +2026-03-26 15:42:00,2026-03-27 03:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,145.5 +2026-04-07 15:22:00,2026-04-09 06:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,0,125.37 +2026-03-22 00:21:00,2026-03-23 04:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,125.02 +2026-03-17 12:52:00,2026-03-18 06:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-13 11:22:28,2026-04-13 12:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.286,Fanduel,MONEYLINE,0.0,NA,143.93 +2026-03-17 09:43:07,2026-03-17 09:00:00,NFL,Detroit Lions,Buffalo Bills,-2.9,0.0,0.584,BetMGM,POINTS_SPREAD,0.6,1,114.91 +2026-04-07 11:35:50,2026-04-07 10:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.738,Fanduel,MONEYLINE,0.0,NA,109.86 +2026-03-08 09:14:37,2026-03-08 09:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,3.5,0.659,BetMGM,POINTS_TOTAL,3.5,0,103.65 +2026-03-24 05:35:00,2026-03-25 21:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.9,0,100.0 +2026-03-08 16:02:39,2026-03-08 14:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,13.9,0.787,Fanduel,POINTS_TOTAL,14.4,0,107.33 +2026-03-05 09:57:00,2026-03-06 18:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.0,0,120.13 +2026-03-28 06:37:00,2026-03-30 03:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,216.6,0,112.68 +2026-04-10 18:44:06,2026-04-10 17:00:00,NBA,Dallas Mavericks,Denver Nuggets,1.2,0.0,0.895,BetMGM,POINTS_SPREAD,3.0,1,103.01 +2026-03-19 18:10:00,2026-03-20 16:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,233.8,0,100.0 +2026-02-26 15:49:00,2026-02-28 23:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,0,139.18 +2026-03-19 13:40:00,2026-03-21 22:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.6,0,100.0 +2026-03-06 06:01:00,2026-03-08 19:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,1,100.0 +2026-04-12 10:47:44,2026-04-12 10:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.793,Fanduel,MONEYLINE,0.0,NA,150.9 +2026-03-14 20:34:00,2026-03-16 06:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,44.3,1,115.77 +2026-03-13 21:18:39,2026-03-13 19:00:00,NFL,Buffalo Bills,Kansas City Chiefs,-1.4,0.0,0.837,BetMGM,POINTS_SPREAD,0.8,0,120.1 +2026-03-08 03:11:00,2026-03-10 09:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.2,1,104.88 +2026-03-10 09:47:12,2026-03-10 09:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,49.9,0.49,Fanduel,POINTS_TOTAL,49.7,0,117.05 +2026-04-18 00:43:00,2026-04-20 16:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,4.9,1,106.96 +2026-02-23 02:35:00,2026-02-25 09:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,246.2,0,113.21 +2026-03-15 03:25:00,2026-03-15 13:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,0,100.33 +2026-03-21 09:21:00,2026-03-22 04:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,204.22 +2026-02-20 19:52:00,2026-02-21 10:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,117.39 +2026-02-26 23:32:00,2026-03-01 19:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,0,126.35 +2026-03-20 05:32:00,2026-03-21 12:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,114.57 +2026-03-04 09:31:00,2026-03-07 06:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,55.5,0,100.0 +2026-03-09 17:45:00,2026-03-11 07:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,1,100.0 +2026-02-25 18:47:00,2026-02-27 06:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,124.09 +2026-03-07 12:15:00,2026-03-10 06:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,165.3 +2026-04-18 04:23:00,2026-04-19 16:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,6.7,0,105.3 +2026-03-19 08:15:58,2026-03-19 09:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.511,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-26 01:26:46,2026-02-26 02:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,35.0,0.471,BetMGM,POINTS_TOTAL,38.3,0,100.74 +2026-03-07 03:04:27,2026-03-07 03:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.247,BetMGM,MONEYLINE,0.0,NA,166.07 +2026-03-08 10:22:00,2026-03-10 05:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,229.9,1,113.25 +2026-03-11 14:53:55,2026-03-11 16:00:00,NFL,Miami Dolphins,Baltimore Ravens,2.7,0.0,0.294,BetMGM,POINTS_SPREAD,5.2,0,145.04 +2026-03-21 20:34:00,2026-03-24 20:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,229.3,0,112.21 +2026-03-12 07:04:00,2026-03-12 15:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,182.3 +2026-03-09 05:49:00,2026-03-11 18:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-31 13:29:51,2026-03-31 13:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,58.2,0.777,BetMGM,POINTS_TOTAL,57.8,0,100.0 +2026-03-06 11:21:19,2026-03-06 11:00:00,NBA,Denver Nuggets,Miami Heat,0.0,209.2,0.474,Fanduel,POINTS_TOTAL,212.3,0,104.14 +2026-03-22 11:53:00,2026-03-24 02:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.1,1,119.03 +2026-03-06 21:46:24,2026-03-06 22:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,57.7,0.08,BetMGM,POINTS_TOTAL,58.6,1,109.79 +2026-04-01 07:30:00,2026-04-01 21:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.9,1,100.0 +2026-04-17 06:08:00,2026-04-18 16:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,111.56 +2026-04-01 05:40:00,2026-04-02 21:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,223.4,0,100.0 +2026-04-09 11:59:01,2026-04-09 10:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.739,Fanduel,MONEYLINE,0.0,NA,100.02 +2026-04-11 02:05:03,2026-04-11 03:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,224.3,0.267,BetMGM,POINTS_TOTAL,227.2,0,107.74 +2026-04-05 09:45:46,2026-04-05 09:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,54.0,0.821,Fanduel,POINTS_TOTAL,55.7,0,120.78 +2026-04-05 15:29:00,2026-04-06 01:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,113.06 +2026-03-09 16:47:00,2026-03-09 17:00:00,NBA,Golden State Warriors,Los Angeles Lakers,-5.9,0.0,0.5,Fanduel,POINTS_SPREAD,0.5,1,141.53 +2026-04-06 12:39:00,2026-04-06 15:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,227.3,0,103.9 +2026-03-16 19:12:00,2026-03-18 05:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.9,1,100.0 +2026-02-20 22:23:00,2026-02-22 01:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,151.85 +2026-04-05 10:46:00,2026-04-07 19:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,5.2,0,100.0 +2026-03-05 18:23:08,2026-03-05 19:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.073,Fanduel,MONEYLINE,0.0,NA,131.2 +2026-04-18 15:11:18,2026-04-18 14:00:00,NBA,Miami Heat,Milwaukee Bucks,1.5,0.0,0.785,Fanduel,POINTS_SPREAD,0.4,1,100.99 +2026-03-30 08:19:00,2026-03-31 17:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,22.0,1,100.0 +2026-04-12 10:02:00,2026-04-13 06:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,0,106.8 +2026-03-21 23:59:19,2026-03-22 00:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,53.5,0.174,Fanduel,POINTS_TOTAL,49.5,1,106.62 +2026-03-10 11:15:00,2026-03-11 04:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-17 17:45:00,2026-04-19 04:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,1,121.29 +2026-03-20 17:25:00,2026-03-23 06:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.2,0,100.0 +2026-03-26 17:10:00,2026-03-27 07:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-15 05:55:00,2026-04-15 16:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,0,114.59 +2026-03-10 02:05:00,2026-03-12 21:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,5.1,0,100.0 +2026-04-17 10:49:00,2026-04-20 02:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,17.7,0,120.52 +2026-04-08 15:29:00,2026-04-10 11:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,1,102.21 +2026-04-20 00:25:37,2026-04-20 01:00:00,NFL,Detroit Lions,Baltimore Ravens,-3.0,0.0,0.159,BetMGM,POINTS_SPREAD,1.8,1,126.68 +2026-02-26 12:41:00,2026-02-27 03:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,128.13 +2026-04-19 16:10:00,2026-04-21 05:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,165.21 +2026-04-20 04:52:00,2026-04-20 07:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,113.89 +2026-03-12 09:08:00,2026-03-12 18:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.9,0,113.48 +2026-03-23 05:28:00,2026-03-24 15:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,230.8,1,104.69 +2026-03-28 03:03:58,2026-03-28 04:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,248.8,0.361,Fanduel,POINTS_TOTAL,246.4,1,100.0 +2026-04-14 03:11:00,2026-04-16 19:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,149.41 +2026-03-10 18:24:00,2026-03-10 20:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,126.92 +2026-03-14 05:23:50,2026-03-14 03:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,30.1,0.888,Fanduel,POINTS_TOTAL,33.1,0,101.67 +2026-04-18 22:16:00,2026-04-20 22:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,190.28 +2026-03-09 19:34:00,2026-03-12 19:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,23.6,1,108.11 +2026-04-12 00:15:51,2026-04-11 22:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.877,Fanduel,MONEYLINE,0.0,NA,140.53 +2026-03-08 10:56:48,2026-03-08 12:00:00,NFL,Buffalo Bills,Detroit Lions,-0.0,0.0,0.21,Fanduel,POINTS_SPREAD,3.0,0,100.0 +2026-04-13 01:06:00,2026-04-14 18:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,1,106.56 +2026-03-29 15:49:00,2026-03-30 00:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,167.05 +2026-03-18 19:02:00,2026-03-19 16:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,141.81 +2026-03-10 07:41:34,2026-03-10 08:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,-0.3,0.0,0.631,BetMGM,POINTS_SPREAD,1.1,0,103.93 +2026-02-25 22:38:00,2026-02-28 22:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,1,100.0 +2026-03-02 23:14:00,2026-03-03 03:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,1,139.71 +2026-03-20 20:50:00,2026-03-23 16:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,218.8,1,113.79 +2026-03-28 16:10:50,2026-03-28 16:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,10.5,0.088,Fanduel,POINTS_TOTAL,12.2,0,102.34 +2026-03-03 13:22:33,2026-03-03 13:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.592,Fanduel,MONEYLINE,0.0,NA,136.44 +2026-04-15 21:19:00,2026-04-17 18:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,0,100.0 +2026-04-06 16:19:32,2026-04-06 17:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.403,Fanduel,MONEYLINE,0.0,NA,146.01 +2026-02-28 06:02:00,2026-02-28 21:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,156.01 +2026-04-18 04:00:04,2026-04-18 05:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,-0.7,0.0,0.356,BetMGM,POINTS_SPREAD,2.9,1,101.5 +2026-04-13 11:29:00,2026-04-14 11:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,139.77 +2026-03-08 00:21:00,2026-03-10 01:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,223.8,0,124.92 +2026-03-05 15:30:00,2026-03-07 15:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-16 08:17:52,2026-04-16 10:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,48.9,0.066,Fanduel,POINTS_TOTAL,44.2,1,100.0 +2026-02-28 00:50:00,2026-02-28 08:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,1,120.13 +2026-03-10 08:33:19,2026-03-10 08:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.824,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-07 05:31:10,2026-04-07 06:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,-0.7,0.0,0.151,Fanduel,POINTS_SPREAD,3.6,0,110.45 +2026-03-23 07:06:00,2026-03-24 18:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,145.87 +2026-03-15 14:23:00,2026-03-16 10:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,219.6,1,105.49 +2026-03-05 19:21:00,2026-03-07 11:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,144.71 +2026-03-12 09:55:00,2026-03-15 00:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,118.26 +2026-04-20 06:42:07,2026-04-20 08:00:00,NFL,Buffalo Bills,Kansas City Chiefs,-1.1,0.0,0.184,BetMGM,POINTS_SPREAD,1.8,1,136.8 +2026-02-26 13:23:00,2026-03-01 05:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,133.69 +2026-04-12 22:35:00,2026-04-14 12:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,61.8,1,113.82 +2026-03-03 10:10:00,2026-03-05 19:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,239.2,1,110.31 +2026-04-05 16:02:37,2026-04-05 16:00:00,NFL,Buffalo Bills,Detroit Lions,-0.3,0.0,0.709,Fanduel,POINTS_SPREAD,3.6,0,100.0 +2026-04-17 06:09:00,2026-04-19 07:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,63.4,1,117.75 +2026-02-26 14:13:00,2026-02-27 01:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,51.1,1,120.93 +2026-03-31 08:11:00,2026-04-02 08:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,0,100.0 +2026-03-31 13:26:18,2026-03-31 12:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.735,Fanduel,MONEYLINE,0.0,NA,122.33 +2026-03-30 01:20:00,2026-03-30 18:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,155.25 +2026-04-20 23:58:38,2026-04-20 22:00:00,NBA,Dallas Mavericks,Boston Celtics,-0.4,0.0,0.948,BetMGM,POINTS_SPREAD,0.1,1,119.94 +2026-03-01 02:14:00,2026-03-03 15:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,129.56 +2026-02-21 02:27:00,2026-02-22 00:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,164.83 +2026-03-14 15:12:00,2026-03-17 09:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.0,0,100.0 +2026-03-08 14:20:00,2026-03-10 10:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,108.5 +2026-02-26 00:58:51,2026-02-25 23:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,227.5,0.727,BetMGM,POINTS_TOTAL,231.2,0,100.92 +2026-04-05 13:43:00,2026-04-08 09:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,103.0 +2026-04-16 14:03:00,2026-04-18 23:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.7,0,101.7 +2026-02-24 12:22:58,2026-02-24 12:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,222.7,0.311,BetMGM,POINTS_TOTAL,226.6,1,113.03 +2026-02-24 21:23:00,2026-02-27 03:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.6,0,116.91 +2026-04-07 02:20:09,2026-04-07 03:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.362,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-31 05:58:00,2026-03-31 18:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,22.5,1,103.23 +2026-04-17 06:31:20,2026-04-17 07:00:00,NFL,Detroit Lions,Baltimore Ravens,-8.6,0.0,0.563,Fanduel,POINTS_SPREAD,2.8,0,100.0 +2026-03-30 20:13:45,2026-03-30 18:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.932,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-17 17:17:00,2026-03-19 15:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,154.3 +2026-03-18 00:13:00,2026-03-20 10:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,110.08 +2026-03-04 01:07:00,2026-03-05 13:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,230.1,0,115.66 +2026-02-20 18:50:40,2026-02-20 18:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,227.1,0.326,BetMGM,POINTS_TOTAL,223.3,1,100.0 +2026-03-15 02:07:00,2026-03-16 06:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,32.9,1,100.95 +2026-03-01 02:55:00,2026-03-03 16:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,42.3,1,100.0 +2026-03-25 08:13:44,2026-03-25 08:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,236.6,0.393,Fanduel,POINTS_TOTAL,235.4,0,132.07 +2026-03-08 20:29:00,2026-03-09 14:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,159.61 +2026-03-31 13:18:00,2026-04-01 08:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,47.9,0,121.79 +2026-04-16 00:37:00,2026-04-18 02:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-13 01:05:00,2026-04-15 18:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,45.8,1,100.0 +2026-04-15 22:04:22,2026-04-15 23:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.441,BetMGM,MONEYLINE,0.0,NA,125.54 +2026-02-24 23:18:50,2026-02-25 01:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.138,Fanduel,MONEYLINE,0.0,NA,117.12 +2026-02-26 14:35:00,2026-02-28 08:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,216.6,0,124.63 +2026-03-14 13:59:00,2026-03-14 22:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-07 14:47:27,2026-03-07 13:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,47.3,0.947,BetMGM,POINTS_TOTAL,50.2,0,100.0 +2026-03-23 13:56:00,2026-03-24 16:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-21 05:15:45,2026-03-21 07:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.2,0.0,0.032,Fanduel,POINTS_SPREAD,2.1,1,117.85 +2026-04-04 12:29:00,2026-04-06 22:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,232.6,1,119.61 +2026-02-25 11:05:00,2026-02-26 10:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,45.6,1,100.0 +2026-04-18 18:18:00,2026-04-19 17:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,130.64 +2026-04-17 08:47:00,2026-04-18 19:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,16.7,0,122.3 +2026-02-23 18:49:00,2026-02-24 01:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,114.35 +2026-02-24 08:34:00,2026-02-24 09:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,41.5,0,121.76 +2026-04-17 11:42:00,2026-04-17 21:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,105.47 +2026-02-20 05:11:00,2026-02-23 00:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,1,100.0 +2026-03-04 08:35:00,2026-03-07 01:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-18 19:16:00,2026-03-21 10:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,0,100.0 +2026-03-26 14:09:00,2026-03-27 09:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,1,113.92 +2026-03-05 08:39:04,2026-03-05 08:00:00,NHL,Carolina Hurricanes,Boston Bruins,-0.7,0.0,0.456,Fanduel,POINTS_SPREAD,2.6,0,118.92 +2026-02-23 07:15:00,2026-02-24 11:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.0,0,124.91 +2026-02-27 06:12:15,2026-02-27 07:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.257,Fanduel,MONEYLINE,0.0,NA,125.24 +2026-03-09 17:36:00,2026-03-10 22:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,1,100.0 +2026-03-12 08:36:00,2026-03-12 19:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,45.9,0,120.45 +2026-03-20 04:15:00,2026-03-21 22:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,126.72 +2026-04-08 19:35:00,2026-04-08 20:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,230.8,1,108.17 +2026-03-08 19:53:00,2026-03-09 06:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,142.22 +2026-03-10 04:37:00,2026-03-10 07:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,0,119.15 +2026-03-09 16:44:00,2026-03-12 12:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-08 15:58:00,2026-03-08 19:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,1,110.34 +2026-03-25 00:32:31,2026-03-25 02:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.264,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-17 14:11:00,2026-04-20 04:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-23 08:21:00,2026-03-23 19:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,139.96 +2026-04-08 20:16:00,2026-04-10 17:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,101.45 +2026-03-10 13:16:00,2026-03-12 05:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,238.3,1,101.97 +2026-03-15 23:51:00,2026-03-18 14:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,115.55 +2026-03-19 07:40:00,2026-03-20 18:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,112.44 +2026-04-06 19:40:00,2026-04-07 23:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,7.1,0,100.0 +2026-03-12 02:30:00,2026-03-14 21:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,40.9,1,120.3 +2026-02-23 14:59:55,2026-02-23 16:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,5.0,0.0,0.094,BetMGM,POINTS_SPREAD,1.7,1,100.0 +2026-03-31 20:35:00,2026-04-01 14:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,101.43 +2026-03-24 01:53:00,2026-03-25 22:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,113.31 +2026-04-16 18:05:00,2026-04-19 02:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,231.5,0,111.86 +2026-02-27 07:50:00,2026-03-01 14:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.0,0,100.0 +2026-03-02 02:28:00,2026-03-03 21:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,152.25 +2026-03-29 06:43:00,2026-03-30 19:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,1,115.65 +2026-04-20 16:33:00,2026-04-20 20:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-25 22:10:00,2026-02-28 01:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,1,105.72 +2026-03-27 22:57:00,2026-03-30 06:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,228.2,0,100.0 +2026-04-04 04:55:00,2026-04-04 14:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,0,120.43 +2026-03-12 07:50:00,2026-03-13 06:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,50.4,0,100.0 +2026-02-20 16:21:27,2026-02-20 16:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.647,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-22 00:41:00,2026-03-24 11:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,145.9 +2026-03-08 05:04:00,2026-03-08 12:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,5.0,0,116.54 +2026-04-13 08:33:33,2026-04-13 09:00:00,NHL,Edmonton Oilers,Florida Panthers,0.5,0.0,0.042,BetMGM,POINTS_SPREAD,1.2,1,109.79 +2026-04-13 14:16:00,2026-04-15 08:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,128.92 +2026-03-13 16:08:26,2026-03-13 16:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,222.4,0.208,Fanduel,POINTS_TOTAL,221.4,0,101.45 +2026-04-03 00:00:24,2026-04-03 02:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.03,Fanduel,MONEYLINE,0.0,NA,124.1 +2026-03-08 14:10:00,2026-03-11 05:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,128.52 +2026-04-07 23:19:00,2026-04-09 19:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,116.52 +2026-03-11 20:37:00,2026-03-13 20:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,132.01 +2026-03-06 14:42:00,2026-03-08 07:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,151.55 +2026-02-27 01:10:00,2026-03-01 08:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.3,1,142.16 +2026-04-19 04:49:00,2026-04-20 14:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,128.36 +2026-04-04 00:36:26,2026-04-04 00:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,45.3,0.558,BetMGM,POINTS_TOTAL,37.9,0,105.45 +2026-03-02 06:25:15,2026-03-02 05:00:00,NHL,Florida Panthers,Boston Bruins,0.0,14.6,0.757,BetMGM,POINTS_TOTAL,14.5,1,107.93 +2026-02-24 08:44:08,2026-02-24 07:00:00,NFL,Detroit Lions,Dallas Cowboys,-1.8,0.0,0.623,Fanduel,POINTS_SPREAD,4.8,1,132.88 +2026-04-18 09:36:51,2026-04-18 11:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.177,BetMGM,MONEYLINE,0.0,NA,138.05 +2026-03-29 09:04:00,2026-03-31 02:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,133.83 +2026-04-11 22:35:00,2026-04-14 04:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,0,119.59 +2026-03-26 08:05:00,2026-03-29 02:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,0,125.57 +2026-03-21 16:23:44,2026-03-21 16:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,47.5,0.493,Fanduel,POINTS_TOTAL,46.9,1,103.28 +2026-03-07 01:19:00,2026-03-09 22:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,10.1,0,111.87 +2026-02-22 05:17:38,2026-02-22 06:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.298,Fanduel,MONEYLINE,0.0,NA,139.2 +2026-03-07 02:06:49,2026-03-07 03:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.049,Fanduel,MONEYLINE,0.0,NA,183.04 +2026-03-22 01:51:16,2026-03-22 02:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.1,0.0,0.696,Fanduel,POINTS_SPREAD,0.1,1,117.21 +2026-03-17 00:13:46,2026-03-17 01:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.371,Fanduel,MONEYLINE,0.0,NA,130.63 +2026-03-22 13:33:00,2026-03-23 02:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,226.8,1,130.79 +2026-04-01 01:05:01,2026-04-01 01:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,230.1,0.539,BetMGM,POINTS_TOTAL,233.9,0,100.0 +2026-03-06 11:00:00,2026-03-08 23:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,100.0 +2026-04-05 13:50:00,2026-04-08 05:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,1,132.35 +2026-04-08 08:43:54,2026-04-08 10:00:00,NBA,Golden State Warriors,Miami Heat,1.1,0.0,0.355,Fanduel,POINTS_SPREAD,2.7,0,100.0 +2026-04-09 07:06:00,2026-04-11 03:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,141.05 +2026-02-26 03:07:00,2026-02-28 23:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,15.3,1,138.23 +2026-03-13 13:32:49,2026-03-13 14:00:00,NBA,Denver Nuggets,Dallas Mavericks,6.2,0.0,0.499,BetMGM,POINTS_SPREAD,2.4,1,111.93 +2026-04-04 05:02:00,2026-04-05 17:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,0,137.42 +2026-04-19 01:50:00,2026-04-19 18:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,0,107.37 +2026-03-02 19:36:00,2026-03-05 10:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,221.6,1,100.0 +2026-03-15 14:45:00,2026-03-15 19:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,123.04 +2026-03-08 13:24:00,2026-03-10 18:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,103.21 +2026-03-12 06:45:00,2026-03-12 21:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,49.3,1,118.88 +2026-04-03 02:49:00,2026-04-04 06:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-05 12:36:00,2026-04-08 09:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,220.6,0,116.97 +2026-03-25 04:06:00,2026-03-27 12:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,0,100.0 +2026-04-05 05:19:16,2026-04-05 03:00:00,NHL,Colorado Avalanche,Florida Panthers,1.0,0.0,0.946,Fanduel,POINTS_SPREAD,0.4,1,113.94 +2026-02-18 17:16:00,2026-02-21 02:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.0,1,140.86 +2026-02-24 23:21:00,2026-02-26 17:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-12 16:28:39,2026-03-12 17:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,3.1,0.0,0.287,Fanduel,POINTS_SPREAD,1.3,1,100.0 +2026-03-04 20:21:00,2026-03-05 07:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,140.49 +2026-04-19 16:04:36,2026-04-19 14:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.77,Fanduel,MONEYLINE,0.0,NA,121.84 +2026-03-08 06:06:00,2026-03-08 17:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.9,0,100.0 +2026-03-13 03:12:00,2026-03-13 08:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,224.4,0,126.86 +2026-04-11 16:19:00,2026-04-14 09:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,225.3,0,100.0 +2026-03-15 15:25:58,2026-03-15 16:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,235.2,0.111,BetMGM,POINTS_TOTAL,236.3,0,100.0 +2026-02-24 12:49:00,2026-02-24 18:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,45.7,0,106.98 +2026-03-25 02:01:00,2026-03-26 00:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-01 09:04:21,2026-03-01 10:00:00,NBA,Phoenix Suns,Denver Nuggets,-4.0,0.0,0.052,Fanduel,POINTS_SPREAD,1.5,1,120.0 +2026-04-11 00:06:00,2026-04-13 10:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,0,115.11 +2026-03-29 06:05:00,2026-03-29 19:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-19 12:55:00,2026-03-19 22:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.2,1,104.74 +2026-03-11 02:35:00,2026-03-13 18:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,161.11 +2026-04-06 19:17:00,2026-04-09 01:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.6,1,100.0 +2026-02-24 20:56:00,2026-02-25 02:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-16 03:01:00,2026-03-16 11:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,229.8,1,137.29 +2026-03-01 06:47:56,2026-03-01 07:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,63.8,0.333,Fanduel,POINTS_TOTAL,65.7,1,129.45 +2026-04-12 14:30:00,2026-04-13 23:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.7,0,121.68 +2026-03-14 23:01:50,2026-03-14 23:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,218.1,0.038,BetMGM,POINTS_TOTAL,220.8,0,105.66 +2026-04-13 04:17:00,2026-04-14 18:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,21.3,1,140.15 +2026-04-13 17:01:00,2026-04-15 00:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,1,100.0 +2026-03-29 17:31:00,2026-03-31 17:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-07 15:29:00,2026-04-07 16:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.4,0,100.0 +2026-02-19 01:16:00,2026-02-21 12:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-22 09:40:00,2026-02-22 13:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.9,1,135.31 +2026-02-24 13:12:00,2026-02-24 20:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,147.55 +2026-03-25 11:55:00,2026-03-28 04:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.9,1,108.86 +2026-04-08 04:25:00,2026-04-10 08:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.5,0,116.32 +2026-03-02 04:28:28,2026-03-02 04:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.886,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-13 00:30:50,2026-04-12 23:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,47.4,0.738,BetMGM,POINTS_TOTAL,48.0,0,105.65 +2026-02-22 00:14:00,2026-02-23 08:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-15 23:39:00,2026-03-17 01:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,100.0 +2026-03-27 22:10:00,2026-03-29 13:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,118.94 +2026-04-05 13:22:00,2026-04-05 23:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,105.76 +2026-03-09 22:28:00,2026-03-12 13:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,175.83 +2026-04-07 09:53:42,2026-04-07 09:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.715,Fanduel,MONEYLINE,0.0,NA,134.27 +2026-03-30 18:54:22,2026-03-30 18:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,6.8,0.791,BetMGM,POINTS_TOTAL,7.0,1,119.25 +2026-04-05 17:20:00,2026-04-06 03:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.9,0,100.0 +2026-03-16 10:39:00,2026-03-18 04:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,1,100.0 +2026-03-05 21:21:00,2026-03-07 20:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,130.4 +2026-04-02 18:30:10,2026-04-02 17:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.751,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-26 07:09:15,2026-03-26 08:00:00,NBA,Dallas Mavericks,Golden State Warriors,3.2,0.0,0.357,Fanduel,POINTS_SPREAD,3.6,0,121.57 +2026-04-14 20:58:00,2026-04-15 03:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,5.1,0,108.61 +2026-03-29 08:44:26,2026-03-29 07:00:00,NHL,Toronto Maple Leafs,Florida Panthers,-1.3,0.0,0.758,Fanduel,POINTS_SPREAD,2.9,1,120.71 +2026-03-09 16:42:00,2026-03-10 11:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.3,0,148.76 +2026-02-26 08:48:00,2026-02-26 21:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,232.9,1,100.0 +2026-02-27 02:17:00,2026-02-28 17:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,132.87 +2026-03-03 09:16:00,2026-03-05 14:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,0,122.72 +2026-03-18 01:16:00,2026-03-20 20:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,1,100.0 +2026-04-14 10:01:31,2026-04-14 08:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.714,Fanduel,MONEYLINE,0.0,NA,133.28 +2026-02-26 12:07:34,2026-02-26 12:00:00,NBA,Los Angeles Lakers,Boston Celtics,-3.7,0.0,0.131,Fanduel,POINTS_SPREAD,2.0,0,100.0 +2026-03-30 21:02:40,2026-03-30 22:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,56.6,0.126,BetMGM,POINTS_TOTAL,53.3,1,100.0 +2026-04-19 23:32:16,2026-04-19 23:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,3.0,0.0,0.796,BetMGM,POINTS_SPREAD,2.0,1,100.0 +2026-03-12 10:47:49,2026-03-12 09:00:00,NBA,Miami Heat,Phoenix Suns,-3.5,0.0,0.949,Fanduel,POINTS_SPREAD,1.4,0,100.0 +2026-02-23 23:11:40,2026-02-23 23:00:00,NBA,Miami Heat,Dallas Mavericks,3.4,0.0,0.576,BetMGM,POINTS_SPREAD,1.3,0,136.44 +2026-03-19 23:41:00,2026-03-21 11:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.3,1,100.0 +2026-03-26 06:19:00,2026-03-26 10:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,153.08 +2026-04-12 11:01:50,2026-04-12 10:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,46.0,0.838,BetMGM,POINTS_TOTAL,45.5,1,113.02 +2026-04-07 20:32:00,2026-04-09 11:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,44.2,0,122.38 +2026-03-21 07:10:00,2026-03-22 19:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,205.6,0,101.2 +2026-04-05 16:24:00,2026-04-07 23:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,112.63 +2026-04-02 14:57:00,2026-04-03 05:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-06 15:35:46,2026-04-06 16:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,-3.1,0.0,0.121,Fanduel,POINTS_SPREAD,1.3,0,112.8 +2026-04-04 07:39:00,2026-04-05 05:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,28.7,0,109.92 +2026-03-24 00:08:00,2026-03-26 06:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,15.6,0,119.39 +2026-04-02 13:48:00,2026-04-03 07:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,225.5,0,100.0 +2026-03-26 14:45:00,2026-03-29 11:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,47.8,1,106.96 +2026-02-20 04:46:00,2026-02-23 03:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,103.29 +2026-03-11 09:40:40,2026-03-11 09:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.276,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-19 14:46:00,2026-02-20 17:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,0,100.0 +2026-03-25 05:03:48,2026-03-25 04:00:00,NHL,Florida Panthers,Edmonton Oilers,1.5,0.0,0.61,Fanduel,POINTS_SPREAD,0.3,1,110.05 +2026-04-09 16:42:00,2026-04-11 16:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-20 08:42:07,2026-03-20 07:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,-2.1,0.0,0.834,Fanduel,POINTS_SPREAD,0.8,1,130.76 +2026-04-20 20:55:31,2026-04-20 21:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.414,Fanduel,MONEYLINE,0.0,NA,140.08 +2026-03-06 16:28:37,2026-03-06 17:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,232.8,0.309,BetMGM,POINTS_TOTAL,236.0,1,120.16 +2026-02-18 06:26:00,2026-02-21 02:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,1,100.0 +2026-02-27 21:08:00,2026-03-01 22:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,231.6,0,106.81 +2026-03-31 13:01:39,2026-03-31 14:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,36.0,0.037,BetMGM,POINTS_TOTAL,37.6,1,115.38 +2026-03-30 05:06:00,2026-03-31 10:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,125.35 +2026-02-27 00:20:00,2026-03-01 07:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,154.9 +2026-02-23 04:18:00,2026-02-24 09:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.9,0,104.56 +2026-02-25 23:49:10,2026-02-25 23:00:00,NBA,Miami Heat,Golden State Warriors,-6.8,0.0,0.351,BetMGM,POINTS_SPREAD,1.3,0,100.0 +2026-03-13 06:59:01,2026-03-13 06:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,9.7,0.389,Fanduel,POINTS_TOTAL,13.6,0,100.31 +2026-03-08 04:41:00,2026-03-10 15:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-06 05:10:00,2026-03-08 17:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,156.74 +2026-04-03 17:16:00,2026-04-06 14:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,1,100.0 +2026-04-05 20:10:00,2026-04-07 18:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,18.5,1,114.19 +2026-04-06 05:25:00,2026-04-09 00:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,13.2,0,109.36 +2026-03-06 01:19:00,2026-03-07 13:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,239.9,1,100.81 +2026-04-17 14:46:00,2026-04-18 00:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-19 00:03:00,2026-03-20 06:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,229.8,0,100.0 +2026-03-01 03:30:00,2026-03-02 13:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,1,105.02 +2026-03-20 21:51:15,2026-03-20 21:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.507,Fanduel,MONEYLINE,0.0,NA,117.41 +2026-04-02 02:45:00,2026-04-02 11:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,1,126.51 +2026-02-22 03:43:00,2026-02-24 03:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,20.2,0,105.56 +2026-04-03 12:35:00,2026-04-06 11:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,156.12 +2026-03-23 22:13:00,2026-03-25 00:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,0,102.82 +2026-04-18 01:35:00,2026-04-18 14:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,1,100.88 +2026-03-09 00:58:12,2026-03-09 00:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,223.4,0.44,Fanduel,POINTS_TOTAL,218.1,1,100.0 +2026-04-12 12:05:26,2026-04-12 13:00:00,NHL,Carolina Hurricanes,Boston Bruins,-1.9,0.0,0.108,BetMGM,POINTS_SPREAD,2.1,1,130.03 +2026-04-05 22:18:00,2026-04-06 00:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,6.0,1,107.7 +2026-03-28 22:36:00,2026-03-31 18:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,1,100.0 +2026-03-13 16:40:00,2026-03-16 15:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,44.8,0,114.09 +2026-04-18 13:45:00,2026-04-20 19:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,5.5,0,100.0 +2026-04-09 12:04:58,2026-04-09 10:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.761,Fanduel,MONEYLINE,0.0,NA,116.98 +2026-04-05 05:50:00,2026-04-07 06:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,224.2,0,111.01 +2026-04-11 23:06:00,2026-04-14 16:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.5,0,100.0 +2026-03-30 02:43:00,2026-03-30 20:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,120.93 +2026-03-29 17:19:00,2026-03-30 09:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.1,0,114.62 +2026-03-21 17:35:00,2026-03-24 08:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-18 09:17:00,2026-02-21 08:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,114.39 +2026-02-25 21:30:00,2026-02-25 22:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,38.3,1,117.11 +2026-03-09 11:48:00,2026-03-11 15:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,169.08 +2026-02-19 11:52:00,2026-02-22 11:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.0,1,119.41 +2026-04-14 22:37:30,2026-04-14 21:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.675,BetMGM,MONEYLINE,0.0,NA,144.63 +2026-03-05 15:15:00,2026-03-06 03:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.6,0,118.48 +2026-04-15 08:02:10,2026-04-15 06:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.701,Fanduel,MONEYLINE,0.0,NA,127.37 +2026-03-24 17:11:00,2026-03-27 02:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-21 14:04:00,2026-02-23 07:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,230.9,1,109.55 +2026-04-14 00:46:45,2026-04-14 01:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,8.5,0.382,BetMGM,POINTS_TOTAL,9.2,0,120.06 +2026-03-09 19:38:00,2026-03-12 11:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,50.8,1,120.33 +2026-04-09 04:37:42,2026-04-09 04:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,37.6,0.815,Fanduel,POINTS_TOTAL,39.7,0,117.97 +2026-03-13 13:40:00,2026-03-15 00:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,101.21 +2026-04-15 07:37:00,2026-04-17 00:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,5.2,0,118.1 +2026-02-23 16:44:01,2026-02-23 17:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.639,BetMGM,MONEYLINE,0.0,NA,145.18 +2026-03-31 15:50:24,2026-03-31 17:00:00,NFL,Miami Dolphins,San Francisco 49ers,-1.0,0.0,0.38,Fanduel,POINTS_SPREAD,0.3,0,130.94 +2026-03-01 05:23:00,2026-03-03 06:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.8,0,126.37 +2026-04-09 00:57:00,2026-04-10 10:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.6,0,100.0 +2026-04-01 08:52:00,2026-04-03 12:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-07 13:21:00,2026-04-10 13:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.0,1,119.68 +2026-03-21 13:35:00,2026-03-24 12:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,144.17 +2026-03-02 09:57:00,2026-03-04 09:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,48.0,1,101.12 +2026-04-19 03:33:50,2026-04-19 01:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.938,BetMGM,MONEYLINE,0.0,NA,137.58 +2026-04-10 02:23:00,2026-04-12 17:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,1,108.66 +2026-03-10 02:22:00,2026-03-10 17:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,4.4,1,100.0 +2026-02-23 10:51:00,2026-02-25 03:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-18 01:07:00,2026-04-20 00:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,114.97 +2026-04-08 07:05:00,2026-04-08 10:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,201.1,0,109.9 +2026-04-04 16:11:00,2026-04-04 22:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,50.6,1,109.46 +2026-02-25 05:42:00,2026-02-26 03:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-07 09:06:00,2026-03-08 20:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,6.4,1,100.0 +2026-03-12 05:54:00,2026-03-13 06:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,24.5,1,100.0 +2026-02-26 15:18:00,2026-02-27 00:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,16.2,1,100.0 +2026-04-02 17:31:00,2026-04-03 16:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-17 09:56:00,2026-03-17 14:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,141.6 +2026-04-03 20:36:00,2026-04-03 21:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,9.0,0,100.0 +2026-03-21 22:15:00,2026-03-23 17:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.7,0,104.98 +2026-04-02 17:18:46,2026-04-02 16:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.821,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-05 01:22:00,2026-03-06 07:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,228.9,1,125.86 +2026-03-01 04:10:46,2026-03-01 04:00:00,NHL,Boston Bruins,New York Rangers,1.5,0.0,0.271,BetMGM,POINTS_SPREAD,5.9,0,103.36 +2026-04-03 23:15:52,2026-04-03 22:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.516,BetMGM,MONEYLINE,0.0,NA,120.95 +2026-04-19 03:18:31,2026-04-19 04:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.064,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-31 14:17:00,2026-04-03 14:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,174.6 +2026-03-27 17:43:00,2026-03-29 05:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,47.5,1,112.35 +2026-03-25 09:22:00,2026-03-25 17:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,35.3,0,121.54 +2026-04-17 22:27:00,2026-04-20 06:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,138.54 +2026-03-12 15:19:44,2026-03-12 13:00:00,NHL,Colorado Avalanche,New York Rangers,-1.6,0.0,0.843,Fanduel,POINTS_SPREAD,0.1,0,101.27 +2026-03-30 15:18:00,2026-03-31 09:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,158.92 +2026-03-13 21:22:44,2026-03-13 21:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,3.5,0.443,Fanduel,POINTS_TOTAL,3.5,0,123.7 +2026-03-19 20:21:00,2026-03-20 20:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,239.9,1,100.52 +2026-03-22 12:40:00,2026-03-23 14:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,1,130.38 +2026-02-19 10:24:00,2026-02-21 03:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,234.2,1,122.47 +2026-03-10 21:29:00,2026-03-12 03:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,166.67 +2026-04-17 13:07:00,2026-04-18 05:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,112.05 +2026-04-10 02:43:14,2026-04-10 02:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.5,0.0,0.318,BetMGM,POINTS_SPREAD,1.9,1,125.95 +2026-03-31 22:23:00,2026-04-03 09:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,131.86 +2026-04-08 21:24:00,2026-04-10 22:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,29.8,1,108.03 +2026-03-29 05:40:00,2026-03-31 03:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,0,135.51 +2026-03-18 04:57:30,2026-03-18 04:00:00,NFL,Detroit Lions,San Francisco 49ers,-1.3,0.0,0.775,BetMGM,POINTS_SPREAD,4.1,1,100.0 +2026-03-08 06:53:00,2026-03-10 11:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,232.3,0,116.05 +2026-04-04 11:34:20,2026-04-04 12:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.7,0.0,0.113,Fanduel,POINTS_SPREAD,0.8,1,100.0 +2026-03-03 06:26:00,2026-03-03 19:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,224.3,0,110.92 +2026-04-16 11:23:00,2026-04-17 21:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,116.78 +2026-03-30 11:31:00,2026-03-31 01:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,5.5,0,102.42 +2026-03-25 01:51:00,2026-03-27 10:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-27 01:28:37,2026-02-27 00:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.609,Fanduel,MONEYLINE,0.0,NA,144.2 +2026-03-17 20:34:00,2026-03-20 17:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,54.6,1,106.93 +2026-03-12 05:29:00,2026-03-14 23:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-23 05:07:00,2026-02-24 20:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,0,115.25 +2026-03-24 20:29:00,2026-03-24 21:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,228.9,1,127.76 +2026-03-21 20:41:00,2026-03-23 21:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,9.2,1,107.96 +2026-04-20 05:53:50,2026-04-20 06:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.038,BetMGM,POINTS_SPREAD,1.0,0,100.0 +2026-03-20 08:06:00,2026-03-21 21:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,34.6,0,130.58 +2026-03-05 13:43:00,2026-03-08 12:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-02 16:16:00,2026-04-03 15:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,1,112.4 +2026-04-04 08:36:00,2026-04-05 09:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,20.1,0,100.0 +2026-03-31 17:49:34,2026-03-31 16:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,1.7,0.0,0.931,Fanduel,POINTS_SPREAD,1.9,1,100.0 +2026-04-14 10:44:00,2026-04-15 00:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.8,1,105.47 +2026-03-20 15:25:27,2026-03-20 15:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.147,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-17 14:52:00,2026-03-18 22:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.8,1,100.86 +2026-03-21 07:46:00,2026-03-23 16:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,160.24 +2026-03-10 16:32:00,2026-03-12 11:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-19 07:42:00,2026-04-19 22:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,217.3,1,100.0 +2026-03-31 19:57:00,2026-04-03 15:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.0,1,100.0 +2026-03-26 16:11:00,2026-03-28 02:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-17 03:08:00,2026-03-19 17:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,1,113.18 +2026-04-13 03:14:34,2026-04-13 02:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,22.9,0.881,BetMGM,POINTS_TOTAL,25.7,1,105.63 +2026-04-12 06:58:00,2026-04-15 03:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,212.0,0,107.32 +2026-03-30 13:10:00,2026-04-01 14:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,246.8,1,123.91 +2026-04-05 01:08:00,2026-04-05 03:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,12.3,0,106.9 +2026-04-14 21:20:51,2026-04-14 22:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.227,BetMGM,MONEYLINE,0.0,NA,119.55 +2026-03-12 17:46:00,2026-03-15 02:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,51.7,0,105.4 +2026-03-15 22:39:00,2026-03-18 18:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,130.56 +2026-02-21 08:47:00,2026-02-23 13:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,1,137.31 +2026-02-24 18:20:00,2026-02-26 14:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,6.2,0,100.0 +2026-03-19 05:26:42,2026-03-19 04:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.865,BetMGM,MONEYLINE,0.0,NA,113.85 +2026-03-14 04:57:00,2026-03-14 23:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,103.86 +2026-04-04 02:44:10,2026-04-04 03:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,59.4,0.551,Fanduel,POINTS_TOTAL,62.1,1,120.69 +2026-03-27 06:26:00,2026-03-29 10:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,1,100.81 +2026-03-30 18:09:58,2026-03-30 17:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,3.5,0.611,Fanduel,POINTS_TOTAL,9.3,1,123.02 +2026-04-05 22:44:00,2026-04-07 02:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,198.9,1,100.0 +2026-03-14 19:09:00,2026-03-15 09:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,192.96 +2026-03-28 23:06:51,2026-03-29 00:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,36.5,0.327,BetMGM,POINTS_TOTAL,40.6,1,117.06 +2026-02-24 10:10:00,2026-02-26 18:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,110.04 +2026-04-10 00:44:00,2026-04-10 10:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-08 22:05:20,2026-04-08 22:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,208.5,0.163,BetMGM,POINTS_TOTAL,214.5,1,118.94 +2026-02-26 14:46:00,2026-02-27 01:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,0,103.72 +2026-03-30 11:10:00,2026-04-02 05:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,49.0,1,127.17 +2026-04-14 09:39:00,2026-04-16 22:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,1,124.65 +2026-04-07 12:23:13,2026-04-07 13:00:00,NHL,Toronto Maple Leafs,Florida Panthers,3.0,0.0,0.379,BetMGM,POINTS_SPREAD,1.8,1,123.38 +2026-03-05 19:59:00,2026-03-08 15:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-20 03:08:00,2026-03-21 22:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,104.5 +2026-03-07 13:20:00,2026-03-08 09:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,168.95 +2026-02-26 18:52:39,2026-02-26 18:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,36.9,0.737,Fanduel,POINTS_TOTAL,33.4,0,111.3 +2026-04-18 20:05:00,2026-04-20 01:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,1,111.67 +2026-02-27 16:02:00,2026-03-01 04:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.9,1,134.27 +2026-03-25 07:20:45,2026-03-25 08:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.182,BetMGM,MONEYLINE,0.0,NA,144.48 +2026-04-02 16:53:27,2026-04-02 15:00:00,NBA,Dallas Mavericks,Miami Heat,0.6,0.0,0.847,Fanduel,POINTS_SPREAD,3.3,0,118.1 +2026-04-17 08:49:06,2026-04-17 09:00:00,NBA,Golden State Warriors,Miami Heat,0.9,0.0,0.295,Fanduel,POINTS_SPREAD,1.9,1,116.34 +2026-03-06 16:42:50,2026-03-06 17:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.038,Fanduel,MONEYLINE,0.0,NA,139.13 +2026-04-03 13:24:00,2026-04-04 10:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,178.37 +2026-04-15 07:24:00,2026-04-17 06:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-01 16:58:00,2026-03-03 22:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,220.5,0,100.0 +2026-03-05 09:12:00,2026-03-07 11:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.6,0,100.0 +2026-03-10 05:53:00,2026-03-12 00:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-19 10:45:00,2026-03-22 03:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,24.6,1,113.65 +2026-04-12 20:19:00,2026-04-14 16:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.6,0,100.0 +2026-03-18 10:02:43,2026-03-18 11:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,239.9,0.454,Fanduel,POINTS_TOTAL,239.6,1,116.9 +2026-04-05 09:25:00,2026-04-05 23:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,103.62 +2026-04-14 13:29:39,2026-04-14 13:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.387,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-13 15:05:00,2026-04-16 15:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,100.0 +2026-03-10 16:40:00,2026-03-11 17:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,5.1,0,115.14 +2026-03-13 20:14:18,2026-03-13 19:00:00,NBA,Miami Heat,Phoenix Suns,0.4,0.0,0.785,Fanduel,POINTS_SPREAD,0.4,0,106.24 +2026-03-05 06:56:00,2026-03-05 18:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,232.6,0,100.0 +2026-04-15 18:37:00,2026-04-16 02:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,206.9,0,100.0 +2026-02-26 16:17:00,2026-03-01 06:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,167.42 +2026-03-26 23:38:00,2026-03-29 10:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,9.0,1,100.0 +2026-04-17 13:57:40,2026-04-17 14:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,3.5,0.276,Fanduel,POINTS_TOTAL,6.3,0,100.0 +2026-02-26 08:51:00,2026-02-27 16:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,0,124.73 +2026-03-22 04:09:00,2026-03-25 03:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,1,122.87 +2026-03-28 21:54:00,2026-03-31 14:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,131.14 +2026-02-24 18:34:00,2026-02-27 07:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,1,121.93 +2026-02-21 12:12:00,2026-02-23 03:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,117.95 +2026-03-29 10:01:00,2026-04-01 04:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,0,127.02 +2026-04-03 22:52:00,2026-04-06 22:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-22 14:03:00,2026-02-25 08:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,113.72 +2026-03-15 10:27:00,2026-03-15 17:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,243.3,1,100.0 +2026-02-27 04:03:30,2026-02-27 04:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.575,Fanduel,MONEYLINE,0.0,NA,115.31 +2026-04-17 07:58:49,2026-04-17 07:00:00,NHL,Toronto Maple Leafs,Florida Panthers,-1.6,0.0,0.399,BetMGM,POINTS_SPREAD,3.3,0,117.56 +2026-02-28 17:19:32,2026-02-28 16:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,40.6,0.603,Fanduel,POINTS_TOTAL,45.1,0,103.04 +2026-03-21 03:07:24,2026-03-21 02:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.53,Fanduel,MONEYLINE,0.0,NA,130.49 +2026-04-14 05:48:49,2026-04-14 04:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,8.5,0.749,BetMGM,POINTS_TOTAL,12.2,0,100.0 +2026-03-13 10:45:00,2026-03-16 10:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,176.77 +2026-04-11 10:04:00,2026-04-14 09:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-28 08:49:00,2026-03-30 05:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.4,0,121.78 +2026-03-27 09:46:01,2026-03-27 09:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.439,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-12 15:51:00,2026-04-12 20:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,19.6,1,103.13 +2026-02-27 03:42:50,2026-02-27 02:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,244.2,0.738,BetMGM,POINTS_TOTAL,235.0,0,121.73 +2026-04-20 16:36:01,2026-04-20 14:00:00,NHL,Boston Bruins,Florida Panthers,2.3,0.0,0.889,BetMGM,POINTS_SPREAD,1.5,1,100.0 +2026-03-02 08:24:40,2026-03-02 08:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,-0.2,0.0,0.876,Fanduel,POINTS_SPREAD,2.3,0,128.64 +2026-03-29 14:17:58,2026-03-29 14:00:00,NHL,Boston Bruins,Vegas Golden Knights,-1.5,0.0,0.511,BetMGM,POINTS_SPREAD,1.2,1,122.69 +2026-03-15 15:22:00,2026-03-17 22:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-04 05:22:00,2026-03-06 02:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,1,100.0 +2026-02-20 08:07:00,2026-02-20 18:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,111.09 +2026-02-19 11:06:00,2026-02-20 14:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,0,100.0 +2026-04-04 11:30:00,2026-04-05 18:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,213.2,1,100.0 +2026-03-14 13:03:20,2026-03-14 12:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,22.8,0.713,BetMGM,POINTS_TOTAL,17.3,1,100.27 +2026-03-17 04:19:00,2026-03-18 17:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,1,100.0 +2026-03-12 21:52:00,2026-03-15 06:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,105.9 +2026-04-17 02:14:24,2026-04-17 00:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.78,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-17 01:56:00,2026-03-19 02:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,110.97 +2026-03-17 06:42:00,2026-03-20 04:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,60.8,0,116.95 +2026-02-28 11:53:24,2026-02-28 13:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.38,BetMGM,MONEYLINE,0.0,NA,138.67 +2026-03-19 15:30:00,2026-03-20 22:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.5,1,146.6 +2026-03-31 18:55:00,2026-04-02 13:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,8.5,1,109.71 +2026-04-08 20:37:16,2026-04-08 18:00:00,NFL,San Francisco 49ers,Miami Dolphins,2.4,0.0,0.946,Fanduel,POINTS_SPREAD,3.1,1,128.55 +2026-03-05 22:37:00,2026-03-08 21:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,9.0,0,108.94 +2026-03-27 12:51:00,2026-03-28 17:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,1,119.0 +2026-02-22 07:16:00,2026-02-23 19:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-06 12:09:39,2026-04-06 12:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,-2.0,0.0,0.187,Fanduel,POINTS_SPREAD,1.5,0,100.0 +2026-04-12 04:23:00,2026-04-14 20:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.6,1,100.69 +2026-02-22 07:14:26,2026-02-22 07:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.608,BetMGM,MONEYLINE,0.0,NA,130.76 +2026-02-19 08:46:00,2026-02-21 09:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,120.48 +2026-03-07 19:51:00,2026-03-09 12:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,213.8,0,101.25 +2026-03-17 14:43:00,2026-03-18 01:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,126.1 +2026-03-15 14:25:32,2026-03-15 14:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.153,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-16 01:39:00,2026-03-16 06:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,106.96 +2026-03-01 01:24:03,2026-03-01 00:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.767,BetMGM,MONEYLINE,0.0,NA,140.24 +2026-04-12 16:54:00,2026-04-14 21:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,115.46 +2026-04-16 10:58:56,2026-04-16 11:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,42.4,0.683,BetMGM,POINTS_TOTAL,51.9,1,106.81 +2026-04-05 20:04:44,2026-04-05 19:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,225.7,0.643,BetMGM,POINTS_TOTAL,226.7,0,103.47 +2026-03-16 17:40:00,2026-03-17 07:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,16.7,1,100.0 +2026-03-20 20:03:00,2026-03-23 16:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,224.3,0,116.88 +2026-03-10 12:21:00,2026-03-11 09:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-04 06:35:00,2026-04-07 04:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,131.48 +2026-04-03 04:15:00,2026-04-05 03:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,225.9,0,112.95 +2026-03-11 00:18:00,2026-03-13 08:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,128.77 +2026-03-17 10:27:00,2026-03-19 21:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,235.7,0,108.98 +2026-03-27 14:52:13,2026-03-27 14:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,56.1,0.579,BetMGM,POINTS_TOTAL,52.2,1,100.0 +2026-04-14 04:37:00,2026-04-16 11:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-02 11:22:50,2026-04-02 12:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,42.1,0.088,Fanduel,POINTS_TOTAL,46.4,1,118.82 +2026-02-27 02:31:00,2026-02-28 18:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,156.67 +2026-02-21 16:04:00,2026-02-23 05:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,43.5,0,111.35 +2026-04-12 04:08:45,2026-04-12 05:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.332,BetMGM,MONEYLINE,0.0,NA,145.43 +2026-04-06 17:06:00,2026-04-08 15:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,50.3,0,100.0 +2026-03-02 05:45:00,2026-03-03 01:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,103.07 +2026-04-12 09:21:00,2026-04-13 11:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,39.8,1,100.0 +2026-03-09 13:40:00,2026-03-10 05:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,0,127.66 +2026-03-04 05:14:00,2026-03-05 22:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,140.5 +2026-03-08 08:07:00,2026-03-10 10:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,125.76 +2026-04-06 19:30:01,2026-04-06 20:00:00,NHL,Edmonton Oilers,New York Rangers,4.5,0.0,0.039,BetMGM,POINTS_SPREAD,2.0,1,100.0 +2026-03-01 11:17:00,2026-03-01 14:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,32.5,0,124.57 +2026-03-19 17:11:01,2026-03-19 16:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,20.7,0.839,Fanduel,POINTS_TOTAL,25.7,1,100.0 +2026-04-12 11:42:02,2026-04-12 13:00:00,NBA,Boston Celtics,Los Angeles Lakers,5.2,0.0,0.178,Fanduel,POINTS_SPREAD,2.3,1,100.0 +2026-04-12 01:26:00,2026-04-14 19:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,6.8,1,108.54 +2026-04-12 02:05:00,2026-04-13 12:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,0,114.11 +2026-02-28 15:41:22,2026-02-28 15:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,-0.7,0.0,0.591,Fanduel,POINTS_SPREAD,0.4,1,116.58 +2026-03-20 02:05:19,2026-03-20 00:00:00,NBA,Phoenix Suns,Boston Celtics,2.1,0.0,0.924,Fanduel,POINTS_SPREAD,0.8,1,100.92 +2026-04-11 18:27:00,2026-04-13 13:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,177.59 +2026-03-03 02:17:00,2026-03-04 03:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,0,140.94 +2026-02-27 14:44:00,2026-03-01 20:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,5.6,0,118.23 +2026-03-11 08:30:00,2026-03-11 19:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,222.9,0,130.55 +2026-03-30 19:50:48,2026-03-30 21:00:00,NFL,Detroit Lions,Miami Dolphins,4.9,0.0,0.16,Fanduel,POINTS_SPREAD,2.5,1,112.87 +2026-03-31 00:03:00,2026-04-02 11:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,116.33 +2026-03-30 22:09:00,2026-04-01 16:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-17 17:28:00,2026-04-18 23:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,0,100.0 +2026-03-11 13:21:00,2026-03-12 19:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,0,108.42 +2026-04-02 03:37:00,2026-04-02 12:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,104.69 +2026-03-08 15:59:00,2026-03-10 12:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,56.0,0,100.18 +2026-03-30 01:27:01,2026-03-30 03:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.189,Fanduel,MONEYLINE,0.0,NA,100.81 +2026-03-25 03:41:00,2026-03-27 16:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,0,106.45 +2026-03-07 08:52:07,2026-03-07 09:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.234,BetMGM,MONEYLINE,0.0,NA,138.39 +2026-04-12 23:04:00,2026-04-15 02:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,134.82 +2026-04-08 03:19:33,2026-04-08 03:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,3.5,0.642,BetMGM,POINTS_TOTAL,3.7,0,100.0 +2026-04-07 01:03:00,2026-04-09 18:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,157.28 +2026-03-09 11:52:00,2026-03-11 10:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,1,100.76 +2026-03-29 15:47:01,2026-03-29 17:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.239,BetMGM,MONEYLINE,0.0,NA,107.19 +2026-03-31 23:16:51,2026-04-01 00:00:00,NHL,Boston Bruins,Edmonton Oilers,-1.3,0.0,0.377,Fanduel,POINTS_SPREAD,0.9,0,100.0 +2026-02-19 09:36:00,2026-02-21 16:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.7,0,105.24 +2026-04-16 23:38:00,2026-04-19 09:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,1,108.14 +2026-03-14 00:14:00,2026-03-15 20:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,38.3,0,100.0 +2026-03-02 22:29:00,2026-03-05 18:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-10 04:51:00,2026-04-10 08:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,101.76 +2026-03-14 14:34:00,2026-03-15 16:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,43.0,1,119.96 +2026-03-19 11:28:10,2026-03-19 09:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.951,BetMGM,MONEYLINE,0.0,NA,111.73 +2026-02-27 10:34:00,2026-03-01 18:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,140.36 +2026-04-17 02:00:21,2026-04-17 03:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.202,Fanduel,MONEYLINE,0.0,NA,148.97 +2026-04-02 05:35:00,2026-04-02 16:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.0,1,124.14 +2026-03-28 02:04:00,2026-03-30 05:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,15.7,0,105.92 +2026-02-27 11:05:00,2026-03-01 13:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,132.11 +2026-03-29 08:20:25,2026-03-29 08:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,16.8,0.569,Fanduel,POINTS_TOTAL,13.1,0,136.35 +2026-02-18 20:55:00,2026-02-21 04:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,145.07 +2026-04-06 07:58:49,2026-04-06 10:00:00,NBA,Boston Celtics,Denver Nuggets,3.9,0.0,0.049,BetMGM,POINTS_SPREAD,4.5,1,119.2 +2026-03-09 22:36:00,2026-03-12 18:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.5,0,140.62 +2026-02-20 09:24:00,2026-02-21 06:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,52.7,1,125.27 +2026-03-31 09:11:00,2026-04-02 10:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,1,112.76 +2026-02-20 12:47:00,2026-02-21 21:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,14.6,0,119.27 +2026-02-21 02:29:00,2026-02-23 11:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,0,107.64 +2026-03-09 11:31:09,2026-03-09 09:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,36.3,0.862,Fanduel,POINTS_TOTAL,37.6,0,100.0 +2026-03-24 00:07:00,2026-03-25 23:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,0,100.0 +2026-03-18 13:22:19,2026-03-18 13:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,234.4,0.274,BetMGM,POINTS_TOTAL,233.4,0,100.0 +2026-02-21 17:22:00,2026-02-22 06:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,162.92 +2026-03-24 12:35:00,2026-03-26 18:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,143.03 +2026-03-05 13:28:55,2026-03-05 12:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.694,Fanduel,MONEYLINE,0.0,NA,115.8 +2026-03-14 18:10:00,2026-03-15 15:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,0,120.6 +2026-03-01 13:45:00,2026-03-01 19:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-16 16:42:00,2026-03-16 19:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,7.2,0,101.1 +2026-03-11 01:05:00,2026-03-11 09:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,150.63 +2026-03-08 08:04:50,2026-03-08 09:00:00,NFL,Dallas Cowboys,Miami Dolphins,-0.1,0.0,0.438,Fanduel,POINTS_SPREAD,0.7,1,123.05 +2026-02-19 10:13:00,2026-02-20 15:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,232.9,0,111.65 +2026-02-28 15:27:55,2026-02-28 15:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,3.5,0.194,Fanduel,POINTS_TOTAL,6.5,0,106.37 +2026-04-04 00:44:00,2026-04-04 00:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.3,Fanduel,MONEYLINE,0.0,NA,105.66 +2026-03-18 07:30:25,2026-03-18 07:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,57.2,0.819,BetMGM,POINTS_TOTAL,55.4,1,100.0 +2026-03-02 07:55:00,2026-03-02 15:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,122.63 +2026-03-27 04:59:38,2026-03-27 04:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,241.2,0.648,Fanduel,POINTS_TOTAL,238.5,0,128.75 +2026-04-03 13:15:00,2026-04-05 19:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-29 20:25:00,2026-03-30 17:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,1,148.45 +2026-03-21 11:51:00,2026-03-24 09:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-21 15:13:00,2026-03-24 00:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,7.7,0,120.42 +2026-02-24 11:23:20,2026-02-24 11:00:00,NBA,Denver Nuggets,Miami Heat,6.1,0.0,0.863,Fanduel,POINTS_SPREAD,2.4,0,141.18 +2026-02-23 10:45:51,2026-02-23 11:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,23.7,0.377,BetMGM,POINTS_TOTAL,18.4,0,114.44 +2026-03-28 12:15:00,2026-03-30 23:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,112.55 +2026-02-21 06:42:00,2026-02-23 00:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.9,0,100.0 +2026-03-26 15:05:44,2026-03-26 16:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.343,BetMGM,MONEYLINE,0.0,NA,119.14 +2026-03-01 16:00:00,2026-03-02 02:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,5.0,1,119.35 +2026-04-04 13:31:58,2026-04-04 13:00:00,NFL,Baltimore Ravens,Dallas Cowboys,-0.5,0.0,0.311,BetMGM,POINTS_SPREAD,4.1,1,131.63 +2026-03-09 08:53:00,2026-03-12 07:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.5,1,100.0 +2026-02-27 08:35:25,2026-02-27 08:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,3.0,0.0,0.319,Fanduel,POINTS_SPREAD,2.3,1,105.16 +2026-04-11 01:20:00,2026-04-11 11:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,228.0,0,119.26 +2026-03-29 13:41:34,2026-03-29 11:00:00,NBA,Boston Celtics,Miami Heat,0.0,242.0,0.931,Fanduel,POINTS_TOTAL,250.5,0,100.0 +2026-04-01 18:09:00,2026-04-02 15:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,108.69 +2026-03-19 18:06:32,2026-03-19 16:00:00,NFL,Baltimore Ravens,Miami Dolphins,3.6,0.0,0.803,Fanduel,POINTS_SPREAD,4.5,1,128.26 +2026-03-19 11:59:00,2026-03-19 14:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-07 17:33:00,2026-04-09 21:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.5,1,135.65 +2026-04-07 11:54:00,2026-04-10 10:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,40.7,0,102.29 +2026-04-03 05:12:00,2026-04-05 11:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,143.34 +2026-03-09 18:41:00,2026-03-09 22:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.6,1,120.45 +2026-03-20 03:22:00,2026-03-20 17:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,114.96 +2026-03-06 10:30:00,2026-03-07 22:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,19.4,0,100.0 +2026-03-14 00:23:00,2026-03-16 03:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-21 12:19:32,2026-03-21 14:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.103,Fanduel,MONEYLINE,0.0,NA,148.42 +2026-03-06 10:33:00,2026-03-09 09:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,229.5,1,127.67 +2026-03-23 01:12:00,2026-03-23 08:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.0,0,105.79 +2026-02-28 20:08:00,2026-03-01 18:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,129.72 +2026-03-21 22:21:00,2026-03-24 22:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,0,132.7 +2026-04-11 14:02:40,2026-04-11 14:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.476,BetMGM,MONEYLINE,0.0,NA,127.06 +2026-04-08 23:46:00,2026-04-09 19:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,10.9,1,120.64 +2026-04-05 22:59:00,2026-04-07 21:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-10 05:08:00,2026-03-13 05:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.4,1,103.7 +2026-03-01 06:28:00,2026-03-01 21:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,46.6,0,100.0 +2026-03-04 06:27:00,2026-03-07 03:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-09 03:50:00,2026-04-09 12:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,5.6,1,127.48 +2026-04-05 13:15:00,2026-04-07 14:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,1,100.0 +2026-04-07 16:00:26,2026-04-07 16:00:00,NBA,Los Angeles Lakers,Phoenix Suns,-1.5,0.0,0.458,Fanduel,POINTS_SPREAD,0.1,1,139.59 +2026-03-07 09:06:00,2026-03-09 10:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,234.5,1,108.4 +2026-04-04 17:17:00,2026-04-05 09:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,152.05 +2026-02-21 01:28:00,2026-02-21 13:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.9,1,111.9 +2026-03-01 10:12:00,2026-03-04 07:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,12.2,1,122.31 +2026-03-28 17:17:00,2026-03-30 08:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.5,1,119.54 +2026-03-02 22:24:00,2026-03-05 05:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,235.0,0,104.14 +2026-03-04 07:05:26,2026-03-04 06:00:00,NBA,Denver Nuggets,Dallas Mavericks,3.4,0.0,0.458,BetMGM,POINTS_SPREAD,1.3,0,102.84 +2026-04-13 02:29:00,2026-04-15 14:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,139.62 +2026-03-21 04:07:21,2026-03-21 04:00:00,NBA,Denver Nuggets,Dallas Mavericks,-1.8,0.0,0.452,Fanduel,POINTS_SPREAD,0.8,0,100.0 +2026-04-19 14:09:14,2026-04-19 12:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,-1.6,0.0,0.918,BetMGM,POINTS_SPREAD,1.6,1,118.56 +2026-03-31 00:05:00,2026-03-31 15:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,53.3,0,100.0 +2026-03-03 11:45:00,2026-03-05 15:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,243.3,1,120.16 +2026-03-19 12:19:21,2026-03-19 11:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.702,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-21 13:11:00,2026-02-23 20:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,217.9,1,100.0 +2026-03-18 02:09:00,2026-03-19 05:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-15 01:31:39,2026-04-15 03:00:00,NHL,Toronto Maple Leafs,New York Rangers,-2.2,0.0,0.037,Fanduel,POINTS_SPREAD,0.9,0,100.0 +2026-02-27 20:18:12,2026-02-27 20:00:00,NHL,New York Rangers,Carolina Hurricanes,-1.3,0.0,0.49,Fanduel,POINTS_SPREAD,1.0,1,108.03 +2026-03-04 07:44:51,2026-03-04 08:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,224.3,0.177,BetMGM,POINTS_TOTAL,226.8,1,123.34 +2026-04-19 09:06:09,2026-04-19 10:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.212,BetMGM,MONEYLINE,0.0,NA,189.79 +2026-03-24 15:23:00,2026-03-25 23:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,153.19 +2026-03-17 16:39:00,2026-03-20 07:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,141.46 +2026-02-25 20:19:50,2026-02-25 20:00:00,NHL,Florida Panthers,New York Rangers,6.6,0.0,0.838,Fanduel,POINTS_SPREAD,0.8,1,100.0 +2026-03-02 09:05:00,2026-03-03 16:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,1,102.88 +2026-03-31 13:49:00,2026-04-01 23:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,52.6,1,110.17 +2026-04-11 10:26:00,2026-04-14 06:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-02 07:52:00,2026-04-04 10:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,125.04 +2026-03-05 17:19:00,2026-03-08 08:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,0,100.0 +2026-03-17 04:06:00,2026-03-20 04:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,101.62 +2026-02-25 22:25:00,2026-02-26 06:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,106.22 +2026-04-08 15:23:07,2026-04-08 15:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.384,BetMGM,MONEYLINE,0.0,NA,112.98 +2026-02-22 00:21:00,2026-02-23 16:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,58.1,0,111.56 +2026-04-09 07:21:00,2026-04-12 06:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,126.52 +2026-02-22 09:20:00,2026-02-23 00:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,41.6,0,109.94 +2026-02-28 19:12:00,2026-03-02 05:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,1,103.95 +2026-04-09 00:25:00,2026-04-10 02:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-02 21:04:16,2026-03-02 20:00:00,NBA,Denver Nuggets,Boston Celtics,-0.1,0.0,0.546,Fanduel,POINTS_SPREAD,3.6,1,130.37 +2026-03-01 00:16:00,2026-03-01 17:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,223.0,1,124.56 +2026-03-06 03:47:00,2026-03-07 13:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,0,100.0 +2026-03-25 03:32:00,2026-03-26 00:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,238.3,1,121.22 +2026-03-26 12:31:25,2026-03-26 13:00:00,NBA,Los Angeles Lakers,Phoenix Suns,1.3,0.0,0.419,BetMGM,POINTS_SPREAD,3.5,0,100.0 +2026-03-12 11:05:00,2026-03-12 17:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.6,0,100.0 +2026-04-04 10:54:00,2026-04-06 17:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,47.3,1,100.0 +2026-03-31 01:17:00,2026-04-01 20:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,135.59 +2026-03-08 18:28:00,2026-03-11 09:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,1,120.62 +2026-03-20 11:15:00,2026-03-21 22:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,121.02 +2026-03-12 12:21:00,2026-03-13 17:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,220.9,0,117.58 +2026-03-26 07:48:32,2026-03-26 06:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.853,Fanduel,MONEYLINE,0.0,NA,148.32 +2026-02-27 10:44:00,2026-03-02 00:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,180.98 +2026-03-07 21:50:00,2026-03-08 00:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,139.08 +2026-03-27 15:40:49,2026-03-27 14:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,3.2,0.0,0.849,Fanduel,POINTS_SPREAD,1.8,1,100.0 +2026-03-20 09:19:00,2026-03-22 10:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,124.99 +2026-04-09 07:18:00,2026-04-10 19:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,158.22 +2026-03-04 04:36:03,2026-03-04 04:00:00,NHL,New York Rangers,Boston Bruins,0.0,5.2,0.417,BetMGM,POINTS_TOTAL,3.5,1,100.0 +2026-03-05 01:58:00,2026-03-05 08:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,1,114.43 +2026-04-10 00:02:51,2026-04-10 00:00:00,NFL,Dallas Cowboys,Buffalo Bills,-2.8,0.0,0.627,BetMGM,POINTS_SPREAD,1.4,0,100.0 +2026-03-12 17:26:00,2026-03-14 09:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,12.9,1,100.0 +2026-03-05 04:10:00,2026-03-05 17:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,211.6,0,100.87 +2026-03-27 13:29:00,2026-03-28 08:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,4.8,0,103.58 +2026-03-12 17:37:00,2026-03-15 07:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,51.2,1,120.2 +2026-03-18 23:29:00,2026-03-19 05:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,156.96 +2026-04-03 17:58:49,2026-04-03 19:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.349,Fanduel,MONEYLINE,0.0,NA,139.89 +2026-03-18 16:28:00,2026-03-20 00:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,1,134.59 +2026-03-04 06:32:00,2026-03-05 16:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,1,127.19 +2026-04-07 01:28:56,2026-04-07 02:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.133,BetMGM,MONEYLINE,0.0,NA,127.83 +2026-03-14 15:52:00,2026-03-17 00:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,236.7,1,117.06 +2026-04-04 01:42:00,2026-04-05 06:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.2,0,100.0 +2026-04-01 02:20:00,2026-04-03 12:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-30 08:25:00,2026-04-01 15:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-04 16:42:42,2026-04-04 15:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,-3.0,0.0,0.815,BetMGM,POINTS_SPREAD,0.1,1,121.09 +2026-02-28 19:25:00,2026-03-01 00:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,7.2,0,127.4 +2026-04-04 15:57:00,2026-04-05 20:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,28.0,1,116.64 +2026-03-15 14:14:00,2026-03-18 04:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.6,1,140.27 +2026-03-25 20:40:00,2026-03-27 10:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.0,1,100.0 +2026-04-15 13:32:00,2026-04-18 01:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,9.1,1,126.49 +2026-02-26 23:53:00,2026-02-28 04:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,119.68 +2026-02-22 17:04:00,2026-02-23 08:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,217.0,1,100.75 +2026-02-26 04:28:00,2026-02-28 10:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,0,128.92 +2026-04-14 00:54:00,2026-04-14 19:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,0,100.0 +2026-03-30 20:25:00,2026-04-01 16:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,209.4,1,100.0 +2026-03-31 13:26:28,2026-03-31 14:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,231.5,0.386,Fanduel,POINTS_TOTAL,234.2,0,111.75 +2026-04-11 20:06:00,2026-04-14 03:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,224.3,0,106.12 +2026-04-09 15:42:00,2026-04-11 11:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,213.5,0,141.93 +2026-03-18 02:34:19,2026-03-18 02:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,3.5,0.274,Fanduel,POINTS_TOTAL,4.8,1,105.6 +2026-02-23 14:53:00,2026-02-26 14:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,1,100.0 +2026-02-21 14:02:27,2026-02-21 15:00:00,NHL,Vegas Golden Knights,Florida Panthers,-5.0,0.0,0.247,BetMGM,POINTS_SPREAD,1.0,1,121.17 +2026-04-04 14:54:00,2026-04-05 23:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,231.6,0,100.0 +2026-03-12 12:49:48,2026-03-12 14:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,19.8,0.31,BetMGM,POINTS_TOTAL,20.1,1,114.35 +2026-04-05 01:51:37,2026-04-05 02:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,-4.3,0.0,0.259,BetMGM,POINTS_SPREAD,0.3,0,100.0 +2026-04-10 15:37:00,2026-04-11 07:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,109.05 +2026-04-06 06:22:00,2026-04-09 05:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,222.4,1,117.14 +2026-04-06 08:35:00,2026-04-06 13:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,41.1,0,128.28 +2026-04-08 13:58:00,2026-04-08 17:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,5.7,0,100.0 +2026-04-11 00:19:50,2026-04-11 00:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.338,Fanduel,MONEYLINE,0.0,NA,140.99 +2026-02-22 03:01:00,2026-02-23 23:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.2,0,100.0 +2026-03-25 16:43:45,2026-03-25 18:00:00,NHL,New York Rangers,Carolina Hurricanes,-0.3,0.0,0.132,Fanduel,POINTS_SPREAD,0.1,1,100.0 +2026-03-21 14:22:00,2026-03-21 22:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,1,125.02 +2026-04-13 03:48:33,2026-04-13 02:00:00,NBA,Denver Nuggets,Miami Heat,4.6,0.0,0.792,BetMGM,POINTS_SPREAD,0.4,0,128.75 +2026-03-22 13:09:00,2026-03-25 12:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,45.0,1,104.01 +2026-02-27 09:27:28,2026-02-27 10:00:00,NBA,Miami Heat,Denver Nuggets,0.0,225.0,0.286,BetMGM,POINTS_TOTAL,228.6,0,100.0 +2026-03-29 22:08:00,2026-03-30 01:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,0,119.08 +2026-02-23 18:58:00,2026-02-25 18:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-12 16:48:00,2026-04-13 04:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,51.2,1,116.27 +2026-03-03 11:24:00,2026-03-04 01:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,138.01 +2026-03-10 04:16:00,2026-03-12 06:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,12.9,1,108.16 +2026-02-28 01:59:00,2026-03-01 00:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-27 08:04:00,2026-02-27 10:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.9,0,132.22 +2026-03-31 06:11:14,2026-03-31 04:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.818,Fanduel,MONEYLINE,0.0,NA,123.04 +2026-02-22 00:01:00,2026-02-22 23:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,46.0,0,121.12 +2026-03-29 04:41:00,2026-03-30 22:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,0,157.71 +2026-03-29 04:04:00,2026-03-31 09:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,1,100.0 +2026-03-03 04:21:00,2026-03-04 11:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,106.1 +2026-04-04 12:19:00,2026-04-05 17:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-01 06:05:00,2026-04-02 07:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,233.7,1,113.47 +2026-03-30 15:58:09,2026-03-30 15:00:00,NHL,Edmonton Oilers,Florida Panthers,2.9,0.0,0.362,Fanduel,POINTS_SPREAD,0.3,0,128.39 +2026-03-05 02:12:38,2026-03-05 02:00:00,NHL,Vegas Golden Knights,Boston Bruins,-2.5,0.0,0.848,BetMGM,POINTS_SPREAD,1.8,1,118.66 +2026-03-13 06:26:00,2026-03-14 04:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,11.2,1,116.8 +2026-03-15 08:02:00,2026-03-17 18:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,34.0,0,106.08 +2026-03-30 19:27:00,2026-03-30 23:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,0,102.72 +2026-04-05 06:45:02,2026-04-05 06:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.578,BetMGM,MONEYLINE,0.0,NA,120.77 +2026-03-18 23:06:39,2026-03-19 00:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,5.8,0.0,0.137,BetMGM,POINTS_SPREAD,6.3,0,100.0 +2026-04-21 05:55:02,2026-04-21 07:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.128,BetMGM,MONEYLINE,0.0,NA,158.38 +2026-03-17 18:39:18,2026-03-17 19:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.135,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-13 08:39:00,2026-04-14 10:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,44.2,0,115.0 +2026-03-01 19:34:00,2026-03-03 09:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.9,1,100.0 +2026-03-18 00:28:00,2026-03-17 23:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.8,BetMGM,MONEYLINE,0.0,NA,112.12 +2026-02-19 14:15:00,2026-02-22 05:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.9,0,142.64 +2026-02-21 23:50:00,2026-02-22 10:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,224.2,0,112.51 +2026-03-30 09:39:00,2026-03-30 20:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,110.95 +2026-03-23 00:37:00,2026-03-23 01:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,1,130.79 +2026-02-27 22:26:00,2026-03-02 19:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,0,142.15 +2026-03-06 10:24:00,2026-03-07 19:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,242.4,1,106.16 +2026-04-16 18:26:00,2026-04-18 04:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,1,118.23 +2026-03-29 01:39:00,2026-03-31 18:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,12.2,0,100.0 +2026-03-07 03:34:36,2026-03-07 03:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.22,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-05 15:32:00,2026-03-08 10:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,120.25 +2026-03-28 04:30:28,2026-03-28 04:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,11.0,0.386,Fanduel,POINTS_TOTAL,16.9,0,104.12 +2026-03-24 02:49:00,2026-03-24 07:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,248.0,1,135.77 +2026-02-24 05:06:00,2026-02-25 06:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,113.44 +2026-03-30 22:44:00,2026-04-02 16:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.1,1,100.0 +2026-02-23 09:03:00,2026-02-23 22:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,12.3,1,102.46 +2026-03-21 09:22:00,2026-03-22 14:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,1,125.83 +2026-04-19 23:07:37,2026-04-19 23:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,54.3,0.209,BetMGM,POINTS_TOTAL,44.2,0,135.08 +2026-03-14 21:14:00,2026-03-15 02:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,1,100.0 +2026-03-07 16:28:00,2026-03-08 21:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,1,152.24 +2026-03-10 07:41:00,2026-03-10 18:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,161.37 +2026-03-23 11:40:00,2026-03-26 04:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-08 15:31:00,2026-03-10 05:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.0,0,115.3 +2026-04-21 09:11:57,2026-04-21 08:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.472,BetMGM,MONEYLINE,0.0,NA,163.25 +2026-04-04 13:31:00,2026-04-06 20:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.2,1,100.0 +2026-04-02 18:56:00,2026-04-03 20:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.1,1,100.0 +2026-03-29 07:57:00,2026-03-31 11:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,103.19 +2026-02-21 05:15:00,2026-02-22 23:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,225.4,0,100.0 +2026-02-21 01:12:22,2026-02-21 01:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,225.9,0.641,BetMGM,POINTS_TOTAL,228.2,0,100.0 +2026-02-25 21:10:00,2026-02-28 00:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,1,111.02 +2026-03-01 22:43:52,2026-03-01 23:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,3.5,0.466,Fanduel,POINTS_TOTAL,3.5,0,103.09 +2026-04-10 21:35:00,2026-04-12 18:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,35.5,1,120.43 +2026-04-10 03:32:00,2026-04-12 05:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,160.96 +2026-04-09 16:17:00,2026-04-10 06:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-14 04:53:00,2026-03-15 23:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,1,127.1 +2026-04-07 22:58:00,2026-04-09 09:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,222.5,0,116.78 +2026-03-22 05:11:46,2026-03-22 05:00:00,NBA,Denver Nuggets,Los Angeles Lakers,5.4,0.0,0.371,BetMGM,POINTS_SPREAD,3.4,1,107.98 +2026-04-01 13:54:15,2026-04-01 12:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,56.1,0.807,Fanduel,POINTS_TOTAL,53.7,1,106.73 +2026-03-04 01:20:00,2026-03-05 07:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,134.23 +2026-04-14 16:19:56,2026-04-14 17:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.333,BetMGM,MONEYLINE,0.0,NA,136.87 +2026-03-24 17:40:00,2026-03-26 23:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,38.4,0,100.0 +2026-04-10 18:16:00,2026-04-13 18:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,0,131.65 +2026-02-27 09:31:00,2026-02-27 23:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,119.69 +2026-03-15 21:50:00,2026-03-16 14:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.7,1,100.0 +2026-02-26 15:30:58,2026-02-26 14:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,15.3,0.761,BetMGM,POINTS_TOTAL,16.4,0,100.0 +2026-04-15 18:38:00,2026-04-16 07:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-17 09:50:55,2026-03-17 09:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,5.1,0.344,BetMGM,POINTS_TOTAL,5.3,1,109.78 +2026-03-26 00:58:00,2026-03-26 02:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,218.4,0,107.07 +2026-04-06 01:49:00,2026-04-08 06:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,58.3,0,123.7 +2026-04-07 07:08:00,2026-04-08 18:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,241.3,1,117.97 +2026-03-05 08:42:00,2026-03-05 10:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,1,100.0 +2026-03-06 20:55:45,2026-03-06 21:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.082,BetMGM,MONEYLINE,0.0,NA,112.9 +2026-02-25 06:13:00,2026-02-27 17:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,123.31 +2026-04-03 10:26:00,2026-04-04 22:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,0,100.0 +2026-04-02 13:14:00,2026-04-02 18:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,34.4,1,104.4 +2026-02-19 02:11:00,2026-02-20 13:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,109.56 +2026-03-27 11:43:00,2026-03-27 15:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,147.64 +2026-02-23 03:34:00,2026-02-25 08:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,156.94 +2026-03-29 03:35:24,2026-03-29 01:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,220.2,0.93,Fanduel,POINTS_TOTAL,217.8,0,114.19 +2026-03-02 07:43:00,2026-03-03 00:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.9,1,100.0 +2026-03-07 08:31:50,2026-03-07 08:00:00,NBA,Boston Celtics,Denver Nuggets,-0.5,0.0,0.538,Fanduel,POINTS_SPREAD,2.1,0,143.37 +2026-03-08 10:01:00,2026-03-11 09:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,0,131.18 +2026-03-12 10:47:10,2026-03-12 11:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,60.3,0.451,Fanduel,POINTS_TOTAL,54.3,1,102.15 +2026-02-24 04:53:00,2026-02-25 04:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,1,110.2 +2026-04-06 16:57:26,2026-04-06 15:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.808,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-11 05:20:00,2026-04-11 15:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,246.3,0,130.29 +2026-03-04 02:53:10,2026-03-04 04:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.151,BetMGM,MONEYLINE,0.0,NA,117.07 +2026-03-18 00:58:13,2026-03-18 02:00:00,NHL,New York Rangers,Boston Bruins,1.4,0.0,0.379,BetMGM,POINTS_SPREAD,0.3,1,125.32 +2026-03-10 02:23:00,2026-03-12 15:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-26 22:08:00,2026-02-27 16:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,48.4,1,100.0 +2026-03-31 02:29:00,2026-03-31 15:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,125.66 +2026-04-05 08:41:00,2026-04-07 17:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,152.45 +2026-04-03 14:19:00,2026-04-05 21:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,228.6,1,120.48 +2026-04-16 05:51:46,2026-04-16 05:00:00,NHL,Edmonton Oilers,New York Rangers,4.8,0.0,0.571,BetMGM,POINTS_SPREAD,5.3,0,100.0 +2026-03-19 05:04:00,2026-03-19 06:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,1,100.0 +2026-03-15 14:27:00,2026-03-16 06:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,7.0,0,105.9 +2026-03-23 01:10:00,2026-03-24 15:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.9,1,100.0 +2026-02-28 18:37:00,2026-03-02 18:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-08 21:09:00,2026-04-11 02:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,0,118.14 +2026-03-23 00:33:00,2026-03-26 00:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,43.9,0,100.0 +2026-04-09 05:27:00,2026-04-09 08:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,1,100.0 +2026-03-17 09:00:00,2026-03-18 01:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,5.2,0,101.89 +2026-04-08 05:58:00,2026-04-11 04:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,38.7,1,108.58 +2026-03-23 13:52:00,2026-03-24 07:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,0,124.76 +2026-02-24 11:06:00,2026-02-25 20:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.2,0,100.0 +2026-03-28 00:00:36,2026-03-28 01:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,236.6,0.32,Fanduel,POINTS_TOTAL,238.3,1,139.04 +2026-04-08 06:16:00,2026-04-08 18:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,183.7 +2026-03-10 04:01:00,2026-03-13 04:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.0,0,100.0 +2026-04-19 03:46:00,2026-04-20 13:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-18 02:13:00,2026-03-18 23:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,229.9,0,110.33 +2026-04-15 16:23:00,2026-04-17 02:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.6,0,127.82 +2026-03-01 18:57:00,2026-03-04 12:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,152.13 +2026-04-10 23:45:00,2026-04-13 13:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,4.5,0,120.89 +2026-03-08 21:29:00,2026-03-11 13:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,1,118.25 +2026-04-12 16:24:00,2026-04-13 11:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,137.85 +2026-03-01 23:21:00,2026-03-02 22:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.9,0,116.74 +2026-04-12 22:49:00,2026-04-15 18:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,1,107.08 +2026-03-05 22:19:00,2026-03-08 05:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,13.7,0,100.0 +2026-04-02 17:40:00,2026-04-02 19:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,0,115.85 +2026-03-17 06:21:58,2026-03-17 08:00:00,NBA,Miami Heat,Golden State Warriors,-1.3,0.0,0.161,BetMGM,POINTS_SPREAD,0.1,1,107.68 +2026-04-07 16:33:00,2026-04-07 17:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-23 07:29:00,2026-03-24 11:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,158.9 +2026-03-13 08:24:00,2026-03-14 22:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,120.26 +2026-02-25 15:34:00,2026-02-28 12:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,43.7,0,114.63 +2026-02-23 23:38:00,2026-02-26 20:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-14 00:44:00,2026-04-16 06:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,46.0,1,139.14 +2026-03-02 01:45:00,2026-03-03 17:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,1,100.0 +2026-02-26 08:29:00,2026-02-27 04:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,9.9,0,113.27 +2026-04-18 04:17:00,2026-04-19 20:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,66.0,1,127.54 +2026-03-14 02:32:43,2026-03-14 03:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,225.9,0.054,Fanduel,POINTS_TOTAL,216.4,1,100.0 +2026-04-01 02:17:28,2026-04-01 01:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.736,Fanduel,MONEYLINE,0.0,NA,121.91 +2026-02-28 16:15:00,2026-02-28 20:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-21 12:14:08,2026-02-21 12:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,229.5,0.173,Fanduel,POINTS_TOTAL,231.1,1,125.25 +2026-03-17 05:42:00,2026-03-17 13:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,156.78 +2026-03-04 11:34:46,2026-03-04 11:00:00,NFL,San Francisco 49ers,Detroit Lions,-1.7,0.0,0.571,Fanduel,POINTS_SPREAD,3.4,0,100.0 +2026-03-24 07:17:57,2026-03-24 07:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,57.7,0.822,Fanduel,POINTS_TOTAL,56.9,1,120.72 +2026-02-28 03:34:21,2026-02-28 03:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.1,0.0,0.702,Fanduel,POINTS_SPREAD,3.7,1,132.51 +2026-03-24 03:54:00,2026-03-24 06:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,1,100.0 +2026-02-26 02:11:00,2026-02-27 09:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,214.9,0,129.66 +2026-03-29 11:33:00,2026-03-30 06:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,113.68 +2026-03-01 20:41:00,2026-03-03 18:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,0,116.5 +2026-03-11 19:11:00,2026-03-14 02:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,119.33 +2026-04-12 02:10:00,2026-04-12 03:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-01 04:35:00,2026-04-01 09:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.8,1,104.16 +2026-04-15 11:49:00,2026-04-16 00:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,216.6,1,107.44 +2026-04-08 14:46:00,2026-04-09 05:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,0,103.61 +2026-03-10 03:04:34,2026-03-10 02:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,223.8,0.581,Fanduel,POINTS_TOTAL,222.2,0,125.6 +2026-03-05 05:42:00,2026-03-06 11:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.2,1,100.0 +2026-03-23 07:46:00,2026-03-25 01:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,0,116.0 +2026-02-20 18:07:00,2026-02-21 10:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,229.6,0,108.53 +2026-03-07 19:43:50,2026-03-07 19:00:00,NHL,Florida Panthers,Boston Bruins,0.0,3.5,0.738,Fanduel,POINTS_TOTAL,6.7,1,110.08 +2026-03-06 14:43:55,2026-03-06 15:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.294,BetMGM,MONEYLINE,0.0,NA,148.78 +2026-04-12 05:59:00,2026-04-12 23:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,26.1,0,140.46 +2026-03-24 10:44:00,2026-03-25 15:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,101.87 +2026-03-08 06:34:00,2026-03-10 06:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.6,0,122.89 +2026-04-03 16:04:00,2026-04-05 11:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.6,0,107.2 +2026-02-20 21:16:42,2026-02-20 21:00:00,NHL,Florida Panthers,Edmonton Oilers,-5.2,0.0,0.165,BetMGM,POINTS_SPREAD,1.1,0,100.0 +2026-03-20 19:19:34,2026-03-20 18:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,237.1,0.631,Fanduel,POINTS_TOTAL,236.3,0,110.71 +2026-04-03 23:16:00,2026-04-04 23:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,1,100.0 +2026-04-10 09:38:32,2026-04-10 09:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,20.8,0.653,BetMGM,POINTS_TOTAL,15.2,0,117.45 +2026-03-28 06:35:57,2026-03-28 06:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.522,BetMGM,MONEYLINE,0.0,NA,146.3 +2026-03-11 09:15:00,2026-03-12 19:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,131.11 +2026-03-17 06:18:19,2026-03-17 07:00:00,NHL,New York Rangers,Boston Bruins,0.0,3.5,0.474,Fanduel,POINTS_TOTAL,3.5,1,116.04 +2026-03-24 20:28:00,2026-03-26 08:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,0,113.37 +2026-03-28 03:48:25,2026-03-28 05:00:00,NFL,Miami Dolphins,Philadelphia Eagles,-2.2,0.0,0.069,Fanduel,POINTS_SPREAD,1.3,0,100.0 +2026-03-18 04:41:00,2026-03-19 22:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.3,0,100.0 +2026-03-30 23:14:22,2026-03-30 23:00:00,NBA,Denver Nuggets,Golden State Warriors,1.4,0.0,0.741,Fanduel,POINTS_SPREAD,2.2,1,107.98 +2026-03-01 03:28:01,2026-03-01 03:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,-1.1,0.0,0.789,Fanduel,POINTS_SPREAD,3.4,0,100.0 +2026-03-18 12:38:00,2026-03-21 06:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.2,0,100.0 +2026-03-20 15:33:00,2026-03-21 17:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,156.55 +2026-03-16 14:16:00,2026-03-18 10:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,0,119.72 +2026-03-01 12:30:00,2026-03-03 18:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,0,137.76 +2026-03-12 18:09:21,2026-03-12 16:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.852,Fanduel,MONEYLINE,0.0,NA,111.33 +2026-03-01 04:04:00,2026-03-02 14:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-03 00:09:21,2026-04-03 00:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,22.7,0.602,BetMGM,POINTS_TOTAL,23.0,1,100.0 +2026-03-18 21:20:55,2026-03-18 22:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,213.7,0.144,BetMGM,POINTS_TOTAL,209.7,0,100.81 +2026-02-26 04:46:00,2026-02-26 11:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,116.93 +2026-03-23 12:39:00,2026-03-24 13:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,125.34 +2026-04-17 01:44:00,2026-04-19 21:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,46.3,0,131.11 +2026-04-14 00:47:00,2026-04-16 10:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.8,1,102.25 +2026-03-18 08:19:00,2026-03-20 06:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,5.1,0,100.0 +2026-03-26 11:09:00,2026-03-26 21:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,100.0 +2026-03-11 00:18:00,2026-03-11 02:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-13 02:40:00,2026-03-14 17:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,130.31 +2026-03-19 16:19:00,2026-03-20 03:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,202.1,1,105.65 +2026-04-01 15:07:00,2026-04-02 04:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,1,113.36 +2026-03-26 23:59:00,2026-03-28 13:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.9,1,116.35 +2026-03-31 21:37:00,2026-04-02 20:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,5.2,1,112.44 +2026-03-31 17:33:03,2026-03-31 17:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.717,BetMGM,MONEYLINE,0.0,NA,124.92 +2026-03-21 01:39:00,2026-03-22 17:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,134.04 +2026-02-25 15:57:00,2026-02-26 12:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,1,130.04 +2026-03-22 05:24:00,2026-03-22 06:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,1,126.4 +2026-02-23 18:41:54,2026-02-23 18:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,56.1,0.555,BetMGM,POINTS_TOTAL,55.5,1,107.7 +2026-02-26 06:03:00,2026-02-26 13:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,138.68 +2026-04-10 01:59:00,2026-04-11 10:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,45.4,1,100.0 +2026-04-06 11:20:00,2026-04-06 16:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,0,138.58 +2026-04-06 11:01:57,2026-04-06 09:00:00,NHL,Colorado Avalanche,Boston Bruins,-1.1,0.0,0.822,BetMGM,POINTS_SPREAD,0.8,0,135.16 +2026-03-28 04:23:00,2026-03-28 15:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,244.7,1,117.47 +2026-03-14 03:00:36,2026-03-14 04:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.42,BetMGM,MONEYLINE,0.0,NA,120.48 +2026-03-27 06:31:00,2026-03-28 12:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,121.78 +2026-04-06 22:28:00,2026-04-09 05:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,51.5,0,124.61 +2026-04-21 07:53:21,2026-04-21 07:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.452,Fanduel,MONEYLINE,0.0,NA,159.07 +2026-03-12 02:17:00,2026-03-13 03:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,167.17 +2026-04-10 10:18:21,2026-04-10 10:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.402,Fanduel,MONEYLINE,0.0,NA,102.32 +2026-02-21 23:52:00,2026-02-22 12:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,233.9,1,112.14 +2026-04-03 17:00:00,2026-04-03 18:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,7.0,0,104.02 +2026-04-09 19:29:52,2026-04-09 19:00:00,NHL,Boston Bruins,Colorado Avalanche,-4.3,0.0,0.566,Fanduel,POINTS_SPREAD,2.0,1,120.22 +2026-03-30 14:22:06,2026-03-30 13:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.695,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-12 04:31:00,2026-04-12 11:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,227.1,0,105.46 +2026-02-18 07:32:00,2026-02-21 02:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.1,1,100.0 +2026-03-31 17:15:00,2026-03-31 18:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,58.9,0,100.0 +2026-04-06 22:56:18,2026-04-06 23:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,41.5,0.335,BetMGM,POINTS_TOTAL,46.3,0,100.0 +2026-03-16 18:58:00,2026-03-17 02:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.9,0,124.81 +2026-02-20 02:45:00,2026-02-20 12:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,8.3,1,108.88 +2026-02-25 16:05:36,2026-02-25 17:00:00,NBA,Golden State Warriors,Denver Nuggets,-2.3,0.0,0.22,BetMGM,POINTS_SPREAD,0.7,1,109.04 +2026-03-14 04:02:00,2026-03-15 00:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,102.34 +2026-03-13 21:12:18,2026-03-13 21:00:00,NHL,Boston Bruins,Colorado Avalanche,2.3,0.0,0.685,Fanduel,POINTS_SPREAD,0.7,0,125.36 +2026-02-28 17:22:00,2026-03-03 07:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,1,103.3 +2026-04-19 05:42:01,2026-04-19 04:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,207.6,0.739,Fanduel,POINTS_TOTAL,206.2,0,125.19 +2026-02-21 13:19:00,2026-02-21 15:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.3,0,112.27 +2026-03-21 14:58:00,2026-03-24 07:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,1,122.71 +2026-03-01 23:14:00,2026-03-03 16:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,28.0,1,126.24 +2026-03-03 23:15:00,2026-03-05 20:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,1,107.1 +2026-03-10 05:16:00,2026-03-12 17:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,201.13 +2026-03-23 14:30:00,2026-03-23 22:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,226.7,1,121.4 +2026-04-07 23:46:00,2026-04-08 11:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,1,100.0 +2026-03-15 17:28:00,2026-03-17 07:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.0,0,116.06 +2026-03-09 21:33:27,2026-03-09 22:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.597,Fanduel,MONEYLINE,0.0,NA,110.34 +2026-03-17 12:54:00,2026-03-17 15:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,224.3,1,110.68 +2026-03-31 17:47:00,2026-04-02 07:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,227.0,1,100.0 +2026-02-22 13:26:00,2026-02-25 09:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,0,114.21 +2026-04-03 21:50:55,2026-04-03 23:00:00,NBA,Golden State Warriors,Phoenix Suns,8.6,0.0,0.044,Fanduel,POINTS_SPREAD,2.1,1,100.0 +2026-04-09 16:43:00,2026-04-10 07:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,228.7,0,100.0 +2026-02-27 05:56:44,2026-02-27 04:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.943,Fanduel,MONEYLINE,0.0,NA,118.36 +2026-03-28 12:07:00,2026-03-29 18:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,123.71 +2026-04-12 16:01:00,2026-04-12 22:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,236.9,0,103.76 +2026-04-18 18:10:00,2026-04-21 00:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,0,117.43 +2026-02-18 16:07:00,2026-02-21 05:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,1,100.0 +2026-03-30 16:02:00,2026-04-01 10:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,242.5,0,133.56 +2026-02-25 21:25:00,2026-02-26 06:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,231.9,0,121.29 +2026-04-10 00:45:00,2026-04-10 16:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-21 09:20:00,2026-02-24 02:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,166.5 +2026-02-24 07:44:00,2026-02-25 15:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,196.04 +2026-04-07 08:07:00,2026-04-09 14:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,6.1,0,100.49 +2026-02-27 19:09:00,2026-03-01 02:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,147.07 +2026-03-06 19:52:00,2026-03-08 09:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,120.62 +2026-03-16 16:26:50,2026-03-16 15:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,212.8,0.788,Fanduel,POINTS_TOTAL,209.8,0,107.29 +2026-02-19 16:19:00,2026-02-22 16:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,107.6 +2026-04-18 11:54:00,2026-04-21 10:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,126.1 +2026-03-17 19:17:08,2026-03-17 19:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,16.1,0.373,Fanduel,POINTS_TOTAL,17.6,0,105.46 +2026-04-21 03:10:02,2026-04-21 04:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,226.6,0.378,BetMGM,POINTS_TOTAL,224.6,1,111.02 +2026-04-02 06:45:00,2026-04-03 18:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,38.6,0,100.17 +2026-03-18 08:23:25,2026-03-18 10:00:00,NBA,Phoenix Suns,Golden State Warriors,-0.9,0.0,0.069,BetMGM,POINTS_SPREAD,1.4,1,100.0 +2026-03-11 04:08:00,2026-03-13 22:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,133.49 +2026-03-08 02:04:39,2026-03-08 02:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.187,Fanduel,MONEYLINE,0.0,NA,122.24 +2026-03-20 10:27:00,2026-03-22 15:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,0,127.04 +2026-04-17 14:19:00,2026-04-19 00:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,120.79 +2026-04-16 11:37:00,2026-04-18 15:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,1,128.38 +2026-04-16 10:42:00,2026-04-19 02:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,29.4,1,118.24 +2026-04-07 15:30:27,2026-04-07 14:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.747,Fanduel,MONEYLINE,0.0,NA,104.76 +2026-03-13 06:20:00,2026-03-15 20:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.5,0,100.0 +2026-04-19 12:27:00,2026-04-20 18:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.3,0,100.0 +2026-04-05 15:23:00,2026-04-07 07:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,228.4,0,102.68 +2026-03-30 02:51:00,2026-04-01 12:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,1,100.0 +2026-04-06 10:57:27,2026-04-06 11:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.047,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-15 13:58:43,2026-04-15 14:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.254,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-18 14:43:00,2026-02-21 02:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,18.1,0,125.04 +2026-04-02 19:32:01,2026-04-02 19:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,211.4,0.439,BetMGM,POINTS_TOTAL,211.1,1,113.84 +2026-04-01 05:56:00,2026-04-04 00:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-17 08:04:00,2026-04-20 08:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,0,133.64 +2026-03-14 22:23:00,2026-03-17 04:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,1,120.43 +2026-03-11 23:46:00,2026-03-12 22:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-20 14:02:00,2026-04-21 09:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-22 21:35:25,2026-02-22 21:00:00,NFL,San Francisco 49ers,Buffalo Bills,-2.1,0.0,0.719,Fanduel,POINTS_SPREAD,1.4,0,100.0 +2026-03-07 16:05:37,2026-03-07 14:00:00,NBA,Los Angeles Lakers,Denver Nuggets,4.0,0.0,0.709,Fanduel,POINTS_SPREAD,3.1,1,100.0 +2026-03-12 01:00:00,2026-03-14 16:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,0,127.9 +2026-03-08 14:24:00,2026-03-10 18:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,155.48 +2026-03-06 04:03:09,2026-03-06 05:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.462,BetMGM,MONEYLINE,0.0,NA,132.37 +2026-03-17 12:38:00,2026-03-20 12:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,51.8,1,104.21 +2026-03-11 04:41:00,2026-03-11 13:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.2,0,100.0 +2026-03-15 20:18:00,2026-03-16 03:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-04 22:07:00,2026-04-06 01:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,0,100.0 +2026-03-23 19:34:06,2026-03-23 18:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.895,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-06 16:09:04,2026-04-06 15:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,221.2,0.756,Fanduel,POINTS_TOTAL,221.7,1,120.9 +2026-03-15 08:09:00,2026-03-15 17:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,112.0 +2026-03-30 11:45:46,2026-03-30 12:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,35.2,0.521,BetMGM,POINTS_TOTAL,41.0,1,105.41 +2026-04-04 00:54:48,2026-04-04 00:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,39.3,0.41,Fanduel,POINTS_TOTAL,39.9,0,103.24 +2026-03-09 10:52:00,2026-03-09 17:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-20 09:38:00,2026-02-22 11:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-28 14:11:28,2026-03-28 14:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.486,Fanduel,MONEYLINE,0.0,NA,127.32 +2026-03-01 16:00:57,2026-03-01 15:00:00,NFL,San Francisco 49ers,Dallas Cowboys,-0.4,0.0,0.772,BetMGM,POINTS_SPREAD,4.4,1,152.58 +2026-04-20 16:07:00,2026-04-20 22:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,15.8,1,124.43 +2026-04-08 03:00:00,2026-04-09 23:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.9,1,100.0 +2026-02-28 22:13:00,2026-03-01 10:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,14.5,1,100.0 +2026-04-09 15:07:00,2026-04-12 02:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,7.9,1,106.73 +2026-04-11 09:03:00,2026-04-11 23:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,0,100.0 +2026-03-30 21:46:00,2026-03-31 19:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,50.8,0,122.89 +2026-04-04 16:30:00,2026-04-05 17:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,39.1,0,127.32 +2026-03-27 15:33:00,2026-03-29 15:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,1,149.32 +2026-04-13 16:31:00,2026-04-15 10:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,36.2,0,104.67 +2026-03-21 09:27:00,2026-03-22 15:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,0,126.59 +2026-04-12 11:05:00,2026-04-13 06:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,0,110.89 +2026-03-06 11:27:26,2026-03-06 10:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,242.7,0.858,Fanduel,POINTS_TOTAL,238.3,1,100.0 +2026-03-20 09:59:00,2026-03-22 00:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,100.0 +2026-03-05 05:29:26,2026-03-05 07:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,-2.9,0.0,0.058,BetMGM,POINTS_SPREAD,2.4,0,100.0 +2026-04-15 20:15:00,2026-04-16 05:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,33.8,0,104.51 +2026-04-18 11:49:00,2026-04-18 13:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,238.9,0,104.52 +2026-03-25 03:23:00,2026-03-26 06:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,160.05 +2026-02-26 21:47:00,2026-02-27 08:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,6.3,1,112.91 +2026-03-31 19:48:00,2026-04-03 15:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,0,100.0 +2026-03-20 22:42:00,2026-03-21 10:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,230.4,1,106.74 +2026-03-30 01:49:24,2026-03-30 00:00:00,NBA,Phoenix Suns,Boston Celtics,0.9,0.0,0.78,BetMGM,POINTS_SPREAD,2.1,1,100.0 +2026-02-24 15:11:00,2026-02-25 06:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,116.24 +2026-02-23 03:06:00,2026-02-23 14:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-05 15:08:00,2026-03-08 12:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,152.88 +2026-03-23 13:31:00,2026-03-26 01:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.5,0,104.52 +2026-03-26 13:02:06,2026-03-26 13:00:00,NFL,Detroit Lions,Philadelphia Eagles,-1.1,0.0,0.195,Fanduel,POINTS_SPREAD,1.1,0,127.16 +2026-03-29 22:29:00,2026-03-31 14:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,203.2,0,128.0 +2026-04-03 18:58:20,2026-04-03 18:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,3.5,0.813,Fanduel,POINTS_TOTAL,3.5,0,117.66 +2026-03-05 04:00:06,2026-03-05 04:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,46.5,0.695,Fanduel,POINTS_TOTAL,42.6,1,113.75 +2026-04-06 02:15:00,2026-04-07 19:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,105.66 +2026-04-09 01:21:00,2026-04-09 05:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,60.3,1,122.33 +2026-02-23 20:11:00,2026-02-26 08:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,111.42 +2026-03-30 06:45:00,2026-03-31 03:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,130.06 +2026-04-03 05:59:00,2026-04-05 10:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-19 13:44:00,2026-02-22 06:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,120.74 +2026-04-15 02:05:32,2026-04-15 02:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.803,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-23 17:33:00,2026-02-26 10:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,42.8,1,123.48 +2026-03-26 19:00:00,2026-03-26 20:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,9.0,0.4,BetMGM,POINTS_TOTAL,8.0,1,124.1 +2026-03-08 20:23:48,2026-03-08 20:00:00,NBA,Denver Nuggets,Miami Heat,3.9,0.0,0.46,Fanduel,POINTS_SPREAD,2.6,0,142.62 +2026-03-30 22:45:44,2026-03-30 21:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,33.4,0.643,BetMGM,POINTS_TOTAL,36.1,0,100.4 +2026-04-06 03:42:00,2026-04-08 22:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,53.5,0,118.99 +2026-03-22 15:27:00,2026-03-22 23:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,0,100.0 +2026-03-10 08:17:00,2026-03-12 19:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.0,0,140.74 +2026-04-11 15:39:00,2026-04-12 21:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-14 12:26:00,2026-04-16 19:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,48.7,0,110.77 +2026-02-28 22:28:00,2026-03-03 13:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.7,1,124.91 +2026-04-06 19:03:00,2026-04-07 13:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-14 12:43:00,2026-04-15 12:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,0,137.13 +2026-03-30 05:46:38,2026-03-30 05:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,74.6,0.748,BetMGM,POINTS_TOTAL,77.8,1,100.0 +2026-04-07 15:12:00,2026-04-08 02:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,1,103.67 +2026-02-24 13:30:00,2026-02-24 17:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,54.1,1,108.58 +2026-02-24 08:34:00,2026-02-26 15:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,23.8,1,100.0 +2026-02-27 12:47:00,2026-02-28 21:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.9,0,133.57 +2026-02-24 20:59:24,2026-02-24 21:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.48,Fanduel,MONEYLINE,0.0,NA,130.38 +2026-03-04 10:13:00,2026-03-05 08:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,149.79 +2026-04-04 23:00:33,2026-04-04 23:00:00,NFL,Detroit Lions,Dallas Cowboys,-2.2,0.0,0.042,BetMGM,POINTS_SPREAD,2.1,1,115.98 +2026-04-12 16:33:00,2026-04-13 12:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,114.6 +2026-04-07 22:24:00,2026-04-08 17:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,114.9 +2026-03-25 00:13:00,2026-03-27 02:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,0,120.99 +2026-03-04 08:58:00,2026-03-06 12:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,38.3,0,100.0 +2026-03-19 21:37:00,2026-03-22 15:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,120.16 +2026-04-04 00:01:00,2026-04-05 13:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,11.3,1,105.9 +2026-03-25 18:54:00,2026-03-27 12:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,104.51 +2026-03-21 08:58:21,2026-03-21 08:00:00,NBA,Milwaukee Bucks,Miami Heat,3.4,0.0,0.602,Fanduel,POINTS_SPREAD,3.2,1,108.92 +2026-03-28 03:35:00,2026-03-30 01:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,134.12 +2026-02-24 01:12:00,2026-02-25 14:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,122.64 +2026-03-20 08:02:40,2026-03-20 07:00:00,NHL,Colorado Avalanche,Florida Panthers,-1.6,0.0,0.876,Fanduel,POINTS_SPREAD,1.6,0,100.24 +2026-04-02 15:48:00,2026-04-04 04:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,143.2 +2026-03-24 15:47:00,2026-03-26 03:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,154.98 +2026-04-18 22:16:00,2026-04-19 00:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,1,100.0 +2026-04-06 09:27:42,2026-04-06 11:00:00,NFL,Detroit Lions,Philadelphia Eagles,1.6,0.0,0.215,BetMGM,POINTS_SPREAD,1.7,0,109.74 +2026-03-09 02:06:00,2026-03-11 17:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,0,116.62 +2026-04-08 10:34:00,2026-04-09 13:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-31 17:02:00,2026-04-02 18:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,46.0,0,107.2 +2026-03-08 18:46:00,2026-03-08 19:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,0,100.0 +2026-03-17 07:21:00,2026-03-18 16:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.6,1,102.29 +2026-03-20 12:37:00,2026-03-23 12:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,49.3,0,115.51 +2026-02-26 20:36:00,2026-02-27 01:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,9.1,1,100.0 +2026-03-17 00:18:00,2026-03-19 02:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,219.5,0,100.0 +2026-03-05 11:19:00,2026-03-06 11:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.0,0,103.14 +2026-02-27 05:36:00,2026-03-01 04:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,1,136.98 +2026-04-04 05:42:00,2026-04-06 18:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.2,0,112.48 +2026-03-23 08:23:54,2026-03-23 09:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.555,Fanduel,MONEYLINE,0.0,NA,114.19 +2026-03-20 17:48:51,2026-03-20 19:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,20.4,0.177,BetMGM,POINTS_TOTAL,14.0,0,100.0 +2026-03-27 18:44:00,2026-03-28 05:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,44.0,0,128.4 +2026-03-05 07:13:56,2026-03-05 09:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,2.2,0.0,0.133,BetMGM,POINTS_SPREAD,1.8,1,100.0 +2026-03-06 13:23:00,2026-03-07 06:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,187.12 +2026-04-03 15:17:09,2026-04-03 15:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,5.3,0.362,Fanduel,POINTS_TOTAL,3.5,0,122.67 +2026-03-07 00:42:00,2026-03-07 17:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,48.8,0,102.2 +2026-04-09 13:21:00,2026-04-11 20:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,132.87 +2026-04-10 13:14:39,2026-04-10 12:00:00,NFL,Baltimore Ravens,Buffalo Bills,-1.7,0.0,0.437,Fanduel,POINTS_SPREAD,1.0,1,115.34 +2026-04-01 03:06:00,2026-04-01 19:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,1,106.73 +2026-04-09 20:02:46,2026-04-09 21:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.9,0.0,0.421,BetMGM,POINTS_SPREAD,3.2,1,114.38 +2026-04-14 15:06:00,2026-04-14 16:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,1,100.0 +2026-03-10 00:26:40,2026-03-10 00:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,52.3,0.326,Fanduel,POINTS_TOTAL,45.5,1,100.0 +2026-03-14 21:29:00,2026-03-17 21:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,1,121.31 +2026-03-21 22:44:00,2026-03-23 23:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,31.6,0,101.32 +2026-03-02 13:33:34,2026-03-02 12:00:00,NBA,Denver Nuggets,Golden State Warriors,3.2,0.0,0.931,Fanduel,POINTS_SPREAD,5.4,0,100.0 +2026-03-20 22:47:00,2026-03-23 10:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,125.86 +2026-04-06 12:11:00,2026-04-06 15:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,20.2,0,112.93 +2026-04-16 06:13:00,2026-04-16 20:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-08 09:18:00,2026-04-08 10:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,257.7,0,100.0 +2026-03-30 12:52:00,2026-03-31 18:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,131.78 +2026-03-28 14:27:00,2026-03-29 06:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,6.8,1,100.0 +2026-03-11 06:04:06,2026-03-11 05:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,34.7,0.795,Fanduel,POINTS_TOTAL,31.2,0,118.19 +2026-04-06 00:28:00,2026-04-06 03:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.5,1,123.69 +2026-03-12 10:49:54,2026-03-12 10:00:00,NBA,Miami Heat,Golden State Warriors,0.0,219.9,0.655,Fanduel,POINTS_TOTAL,220.2,1,122.24 +2026-03-12 04:57:00,2026-03-13 14:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,215.2,1,100.0 +2026-03-14 07:06:02,2026-03-14 06:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.928,Fanduel,MONEYLINE,0.0,NA,106.7 +2026-03-02 10:08:00,2026-03-04 05:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,105.53 +2026-03-18 16:23:27,2026-03-18 16:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.147,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-16 10:22:00,2026-04-17 23:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,169.48 +2026-02-23 14:19:00,2026-02-25 08:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,0,100.0 +2026-02-27 03:39:00,2026-02-28 06:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,149.07 +2026-02-20 19:13:00,2026-02-23 05:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.2,0,100.0 +2026-03-19 12:12:49,2026-03-19 12:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.699,BetMGM,MONEYLINE,0.0,NA,134.24 +2026-03-24 23:59:49,2026-03-25 00:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,226.5,0.499,Fanduel,POINTS_TOTAL,221.6,0,123.15 +2026-03-28 12:21:00,2026-03-29 00:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,137.22 +2026-03-17 08:41:00,2026-03-20 01:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,43.0,0,120.37 +2026-03-15 12:09:00,2026-03-16 14:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,149.27 +2026-03-25 03:57:45,2026-03-25 03:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.582,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-24 07:01:00,2026-03-25 15:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,0,100.0 +2026-03-27 11:00:00,2026-03-29 01:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-06 15:19:00,2026-03-08 17:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,128.99 +2026-03-16 02:26:54,2026-03-16 01:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.655,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-27 02:16:00,2026-03-29 07:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,123.96 +2026-02-23 23:40:22,2026-02-24 01:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,1.5,0.0,0.091,Fanduel,POINTS_SPREAD,1.9,0,100.0 +2026-03-15 16:48:00,2026-03-17 09:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-10 12:56:00,2026-03-13 12:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.0,1,126.04 +2026-03-02 15:46:00,2026-03-03 13:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,0,112.13 +2026-03-29 12:04:56,2026-03-29 10:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,222.4,0.933,BetMGM,POINTS_TOTAL,219.4,0,107.93 +2026-04-06 19:35:00,2026-04-09 01:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,125.99 +2026-03-07 06:04:00,2026-03-08 16:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,139.17 +2026-02-19 13:12:00,2026-02-22 10:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,107.86 +2026-04-05 12:12:00,2026-04-07 15:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,10.6,0,119.65 +2026-03-22 01:58:00,2026-03-22 17:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,218.5,1,114.08 +2026-03-27 09:41:58,2026-03-27 11:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,221.1,0.161,Fanduel,POINTS_TOTAL,219.1,1,111.84 +2026-04-05 04:02:00,2026-04-07 17:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.0,0,139.4 +2026-03-14 19:46:00,2026-03-17 01:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,53.1,0,100.0 +2026-04-10 20:32:00,2026-04-13 13:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,6.6,1,100.0 +2026-04-08 05:27:00,2026-04-09 04:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,212.3,1,106.23 +2026-03-18 20:48:00,2026-03-21 17:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-03 10:21:00,2026-03-05 10:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,142.52 +2026-03-30 09:43:09,2026-03-30 10:00:00,NHL,Colorado Avalanche,Edmonton Oilers,-0.7,0.0,0.312,Fanduel,POINTS_SPREAD,1.4,1,128.69 +2026-04-04 18:20:00,2026-04-07 02:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,0,100.0 +2026-03-19 05:40:00,2026-03-21 07:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,236.6,0,134.77 +2026-03-26 02:49:45,2026-03-26 03:00:00,NFL,Detroit Lions,Miami Dolphins,-1.9,0.0,0.182,Fanduel,POINTS_SPREAD,3.8,0,100.0 +2026-03-31 19:52:00,2026-04-02 19:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,222.3,0,108.12 +2026-03-05 10:35:00,2026-03-08 10:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.8,1,102.03 +2026-03-22 18:17:00,2026-03-23 17:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,210.5,0,115.22 +2026-04-08 00:04:00,2026-04-09 17:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,139.43 +2026-02-27 10:10:00,2026-02-27 21:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,142.63 +2026-03-11 17:29:00,2026-03-13 13:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,1,100.0 +2026-04-18 02:12:20,2026-04-18 02:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,223.1,0.663,BetMGM,POINTS_TOTAL,223.9,1,105.14 +2026-04-07 21:47:00,2026-04-08 00:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,235.3,0,104.24 +2026-04-08 18:59:00,2026-04-11 10:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,1,107.71 +2026-04-07 21:52:00,2026-04-09 01:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,47.9,1,100.0 +2026-02-25 21:14:01,2026-02-25 21:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.589,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-20 19:31:00,2026-04-21 01:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,215.4,0,106.97 +2026-02-26 20:34:13,2026-02-26 21:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,48.0,0.479,Fanduel,POINTS_TOTAL,45.7,0,123.07 +2026-03-20 17:04:39,2026-03-20 17:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.237,BetMGM,MONEYLINE,0.0,NA,132.7 +2026-03-13 10:13:09,2026-03-13 10:00:00,NBA,Denver Nuggets,Los Angeles Lakers,2.3,0.0,0.312,BetMGM,POINTS_SPREAD,3.0,0,111.41 +2026-03-05 19:47:00,2026-03-05 22:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,108.55 +2026-04-14 07:08:00,2026-04-15 01:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,190.07 +2026-02-22 11:55:00,2026-02-25 07:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,142.01 +2026-03-13 12:47:00,2026-03-14 08:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.6,1,100.0 +2026-04-12 13:08:00,2026-04-13 14:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,230.0,0,100.0 +2026-03-31 12:42:00,2026-04-01 13:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,43.5,1,120.48 +2026-04-16 12:02:00,2026-04-19 11:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,9.2,0,100.0 +2026-03-26 04:55:57,2026-03-26 04:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,224.1,0.722,Fanduel,POINTS_TOTAL,224.4,0,124.63 +2026-02-26 07:57:00,2026-02-28 09:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-01 08:00:00,2026-04-03 19:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,202.1,1,103.57 +2026-03-21 14:04:08,2026-03-21 13:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.723,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-08 03:00:00,2026-04-09 09:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.9,1,126.29 +2026-03-06 20:33:00,2026-03-08 08:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.7,1,104.21 +2026-03-26 18:19:00,2026-03-27 04:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,157.16 +2026-03-23 09:28:00,2026-03-23 18:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,219.3,0,100.0 +2026-04-15 16:59:15,2026-04-15 19:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.057,BetMGM,MONEYLINE,0.0,NA,132.74 +2026-02-26 10:35:00,2026-02-26 18:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,123.22 +2026-04-04 09:41:00,2026-04-04 23:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,134.09 +2026-03-31 02:02:00,2026-04-01 18:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,0,100.0 +2026-04-07 14:23:00,2026-04-09 23:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,0,134.73 +2026-03-03 23:11:00,2026-03-04 05:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,247.4,0,109.77 +2026-03-29 17:23:00,2026-03-30 23:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,1,115.81 +2026-03-12 02:34:58,2026-03-12 04:00:00,NFL,San Francisco 49ers,Buffalo Bills,-1.0,0.0,0.211,BetMGM,POINTS_SPREAD,3.0,1,126.99 +2026-04-09 23:54:00,2026-04-10 16:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,1,103.79 +2026-03-22 06:51:00,2026-03-23 10:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,100.0 +2026-03-11 20:36:00,2026-03-12 08:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,126.95 +2026-04-14 12:43:00,2026-04-15 20:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,105.05 +2026-03-14 18:05:48,2026-03-14 17:00:00,NHL,Boston Bruins,New York Rangers,0.0,3.5,0.51,BetMGM,POINTS_TOTAL,8.1,0,103.34 +2026-03-03 17:09:00,2026-03-04 00:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,0,100.0 +2026-04-02 19:07:00,2026-04-03 14:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,165.83 +2026-03-22 20:44:00,2026-03-24 21:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,106.62 +2026-03-16 10:32:00,2026-03-17 15:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,34.8,1,109.18 +2026-04-02 01:35:00,2026-04-03 12:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,149.18 +2026-03-09 12:05:00,2026-03-10 11:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,137.4 +2026-04-16 08:11:00,2026-04-18 20:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,1,105.19 +2026-04-14 13:27:00,2026-04-14 22:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,32.9,1,100.0 +2026-04-09 14:13:00,2026-04-11 08:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.8,1,120.81 +2026-02-20 01:55:00,2026-02-22 15:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,122.22 +2026-03-08 09:58:43,2026-03-08 10:00:00,NHL,Florida Panthers,Carolina Hurricanes,-3.2,0.0,0.654,Fanduel,POINTS_SPREAD,0.6,0,102.26 +2026-03-09 22:38:57,2026-03-09 21:00:00,NBA,Golden State Warriors,Denver Nuggets,-2.7,0.0,0.722,BetMGM,POINTS_SPREAD,3.7,1,108.85 +2026-02-19 20:43:00,2026-02-21 23:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,131.17 +2026-04-11 08:07:00,2026-04-12 16:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,0,115.05 +2026-04-06 15:43:00,2026-04-08 17:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,102.9 +2026-03-22 16:22:00,2026-03-24 22:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,1,111.08 +2026-04-15 04:41:00,2026-04-15 12:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,6.0,0,113.48 +2026-03-20 19:25:00,2026-03-22 10:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,48.7,0,118.97 +2026-03-23 19:50:51,2026-03-23 19:00:00,NBA,Miami Heat,Boston Celtics,-6.1,0.0,0.877,Fanduel,POINTS_SPREAD,0.3,0,100.0 +2026-03-26 01:42:00,2026-03-27 04:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,28.8,1,107.41 +2026-03-23 03:01:00,2026-03-25 06:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,28.6,0,100.0 +2026-03-20 01:26:00,2026-03-21 00:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,126.36 +2026-03-25 04:51:00,2026-03-26 06:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,100.0 +2026-04-11 10:42:00,2026-04-11 19:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-09 17:14:00,2026-04-11 16:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.9,1,141.43 +2026-03-21 21:31:00,2026-03-24 20:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,1,100.0 +2026-02-20 23:38:00,2026-02-22 07:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,1,123.29 +2026-03-13 16:56:00,2026-03-15 11:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,135.07 +2026-02-24 20:57:00,2026-02-26 19:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.2,0,116.1 +2026-02-23 06:20:49,2026-02-23 05:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.3,0.0,0.849,BetMGM,POINTS_SPREAD,2.9,0,100.0 +2026-03-12 15:34:00,2026-03-14 18:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,51.1,0,100.0 +2026-03-03 02:37:58,2026-03-03 01:00:00,NBA,Phoenix Suns,Boston Celtics,2.3,0.0,0.611,Fanduel,POINTS_SPREAD,2.8,1,100.0 +2026-02-28 05:38:14,2026-02-28 04:00:00,NHL,Florida Panthers,Boston Bruins,5.8,0.0,0.818,Fanduel,POINTS_SPREAD,1.7,1,100.0 +2026-03-18 01:19:16,2026-03-18 03:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.046,BetMGM,MONEYLINE,0.0,NA,137.19 +2026-03-18 00:54:14,2026-03-18 01:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,3.5,0.368,Fanduel,POINTS_TOTAL,11.1,0,100.0 +2026-03-14 10:18:00,2026-03-16 03:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,119.58 +2026-04-07 19:09:00,2026-04-09 18:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,43.4,1,116.38 +2026-03-28 04:42:00,2026-03-30 15:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,128.32 +2026-04-16 04:08:00,2026-04-17 17:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.5,1,123.66 +2026-04-08 23:35:00,2026-04-11 21:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.5,1,127.98 +2026-02-28 08:49:44,2026-02-28 08:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.293,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-28 04:05:50,2026-03-28 02:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,35.5,0.888,BetMGM,POINTS_TOTAL,31.3,0,107.95 +2026-04-09 13:40:00,2026-04-09 18:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,38.9,0,112.02 +2026-03-28 08:32:21,2026-03-28 07:00:00,NBA,Denver Nuggets,Boston Celtics,-3.8,0.0,0.702,BetMGM,POINTS_SPREAD,0.5,0,100.0 +2026-02-26 19:45:00,2026-02-27 15:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,121.06 +2026-04-18 22:01:56,2026-04-18 23:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.083,Fanduel,MONEYLINE,0.0,NA,102.32 +2026-03-17 15:29:20,2026-03-17 15:00:00,NBA,Golden State Warriors,Boston Celtics,-5.2,0.0,0.563,BetMGM,POINTS_SPREAD,3.9,1,112.64 +2026-02-20 10:22:00,2026-02-22 21:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,0,100.0 +2026-03-23 07:27:00,2026-03-25 23:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-26 07:39:00,2026-02-26 14:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,143.62 +2026-03-14 10:28:00,2026-03-17 01:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,63.6,0,108.23 +2026-03-21 22:55:39,2026-03-22 00:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,50.5,0.137,BetMGM,POINTS_TOTAL,52.7,0,100.0 +2026-02-23 09:22:00,2026-02-25 09:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,108.74 +2026-04-12 19:10:00,2026-04-15 02:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.3,0,100.0 +2026-04-04 04:08:00,2026-04-05 13:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.2,1,116.85 +2026-02-28 07:09:00,2026-03-01 11:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-06 13:38:18,2026-04-06 14:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.085,BetMGM,MONEYLINE,0.0,NA,153.88 +2026-03-12 13:59:00,2026-03-14 22:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,118.18 +2026-03-28 06:57:00,2026-03-29 23:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,4.5,1,105.58 +2026-03-10 03:37:51,2026-03-10 05:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.127,BetMGM,MONEYLINE,0.0,NA,115.94 +2026-03-04 18:47:00,2026-03-05 21:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,10.6,0,100.0 +2026-04-17 05:01:00,2026-04-20 05:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,0,120.39 +2026-03-13 18:41:00,2026-03-14 01:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.8,1,106.58 +2026-03-07 09:58:00,2026-03-09 03:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.8,0,122.67 +2026-03-31 20:49:00,2026-04-01 12:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.5,0,128.43 +2026-03-02 19:00:00,2026-03-05 15:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,152.86 +2026-02-25 10:54:00,2026-02-26 15:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,130.8 +2026-04-15 07:42:26,2026-04-15 09:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.208,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-17 07:55:00,2026-04-19 13:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,123.05 +2026-03-26 14:32:15,2026-03-26 14:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.857,Fanduel,MONEYLINE,0.0,NA,144.08 +2026-02-28 12:32:07,2026-02-28 11:00:00,NFL,Philadelphia Eagles,Buffalo Bills,-3.3,0.0,0.534,BetMGM,POINTS_SPREAD,1.0,0,100.0 +2026-03-31 19:17:00,2026-04-03 08:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,214.3,0,100.0 +2026-04-13 19:35:00,2026-04-14 17:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,105.61 +2026-03-15 16:08:00,2026-03-15 22:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,216.7,1,104.39 +2026-03-05 01:06:00,2026-03-07 07:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.6,0,121.94 +2026-03-11 23:30:26,2026-03-12 00:00:00,NHL,New York Rangers,Colorado Avalanche,2.2,0.0,0.058,BetMGM,POINTS_SPREAD,0.0,1,100.17 +2026-03-24 23:26:00,2026-03-25 04:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,134.17 +2026-04-10 17:03:00,2026-04-11 10:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,109.15 +2026-04-13 09:02:31,2026-04-13 07:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,17.6,0.714,BetMGM,POINTS_TOTAL,19.0,0,110.38 +2026-02-22 20:39:00,2026-02-23 01:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-17 20:12:00,2026-04-19 12:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,101.05 +2026-03-04 17:38:44,2026-03-04 18:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.443,BetMGM,MONEYLINE,0.0,NA,128.31 +2026-03-27 01:06:00,2026-03-28 06:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,119.91 +2026-03-21 01:20:00,2026-03-23 19:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.6,1,129.29 +2026-04-18 22:13:09,2026-04-18 23:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,239.2,0.462,Fanduel,POINTS_TOTAL,238.6,1,103.86 +2026-04-11 14:56:55,2026-04-11 15:00:00,NBA,Dallas Mavericks,Golden State Warriors,1.5,0.0,0.594,Fanduel,POINTS_SPREAD,5.2,1,128.73 +2026-02-24 04:00:15,2026-02-24 06:00:00,NBA,Dallas Mavericks,Miami Heat,2.7,0.0,0.107,Fanduel,POINTS_SPREAD,1.3,1,109.35 +2026-03-31 01:51:30,2026-03-31 02:00:00,NBA,Boston Celtics,Los Angeles Lakers,8.4,0.0,0.225,Fanduel,POINTS_SPREAD,1.0,1,100.0 +2026-04-16 18:15:00,2026-04-18 19:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.8,1,128.76 +2026-02-20 23:55:57,2026-02-21 00:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,3.8,0.0,0.172,Fanduel,POINTS_SPREAD,0.3,1,100.0 +2026-02-22 07:49:00,2026-02-23 13:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,164.43 +2026-03-21 07:53:00,2026-03-21 22:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.4,0,100.0 +2026-04-09 20:11:00,2026-04-10 07:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,7.3,1,113.47 +2026-03-14 02:40:40,2026-03-14 02:00:00,NFL,Baltimore Ravens,Detroit Lions,0.1,0.0,0.576,BetMGM,POINTS_SPREAD,0.4,0,115.38 +2026-02-28 00:36:00,2026-02-28 21:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,110.95 +2026-02-28 04:32:00,2026-03-01 06:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,9.6,0,102.84 +2026-04-05 17:23:00,2026-04-07 03:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,1,110.77 +2026-03-29 08:54:00,2026-03-30 18:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,19.2,0,102.42 +2026-03-19 20:36:45,2026-03-19 20:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,4.7,0.932,BetMGM,POINTS_TOTAL,4.5,0,107.04 +2026-03-30 01:51:00,2026-03-31 17:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,116.2 +2026-03-21 10:17:00,2026-03-23 08:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,12.0,0,119.15 +2026-04-17 15:29:00,2026-04-20 15:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,211.6,0,106.74 +2026-04-05 08:32:00,2026-04-07 06:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,137.57 +2026-04-10 09:09:33,2026-04-10 10:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.342,BetMGM,MONEYLINE,0.0,NA,100.73 +2026-04-20 00:26:00,2026-04-20 08:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,1,100.0 +2026-03-05 02:01:00,2026-03-06 08:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,0,109.04 +2026-03-15 09:34:00,2026-03-17 10:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,14.3,1,101.82 +2026-04-07 09:42:00,2026-04-07 23:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-24 14:36:19,2026-03-24 14:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.224,BetMGM,MONEYLINE,0.0,NA,112.26 +2026-04-15 09:23:52,2026-04-15 11:00:00,NHL,Carolina Hurricanes,New York Rangers,-2.5,0.0,0.066,Fanduel,POINTS_SPREAD,0.2,1,119.06 +2026-03-21 21:57:00,2026-03-23 20:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,154.42 +2026-03-29 23:04:00,2026-03-30 23:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.5,0,119.1 +2026-02-27 12:01:00,2026-02-28 23:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,107.29 +2026-03-31 09:00:56,2026-03-31 08:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,-5.9,0.0,0.883,Fanduel,POINTS_SPREAD,1.5,1,151.34 +2026-03-25 15:30:00,2026-03-26 17:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,150.29 +2026-03-17 10:02:00,2026-03-18 19:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,51.3,0,109.53 +2026-03-01 23:52:00,2026-03-02 23:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,1,108.29 +2026-03-30 14:26:00,2026-04-01 14:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,225.6,0,101.82 +2026-04-02 09:48:21,2026-04-02 11:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,56.1,0.302,Fanduel,POINTS_TOTAL,52.4,1,100.0 +2026-04-11 17:13:00,2026-04-14 17:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,211.8,0,105.47 +2026-03-01 10:34:03,2026-03-01 09:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.767,BetMGM,MONEYLINE,0.0,NA,103.83 +2026-03-25 08:08:00,2026-03-25 10:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,107.87 +2026-04-16 05:41:24,2026-04-16 06:00:00,NFL,Buffalo Bills,Miami Dolphins,2.6,0.0,0.43,Fanduel,POINTS_SPREAD,3.9,1,111.65 +2026-03-11 08:34:00,2026-03-13 09:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,26.6,0,100.0 +2026-03-04 07:18:00,2026-03-05 14:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,142.48 +2026-04-16 10:02:58,2026-04-16 08:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.861,BetMGM,MONEYLINE,0.0,NA,194.83 +2026-04-17 02:03:00,2026-04-18 06:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.3,0,159.11 +2026-04-15 01:15:12,2026-04-15 01:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,-3.5,0.0,0.29,BetMGM,POINTS_SPREAD,4.1,1,110.48 +2026-03-13 04:09:00,2026-03-16 02:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,0,113.57 +2026-04-05 03:27:00,2026-04-06 15:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,224.2,0,100.0 +2026-04-07 14:06:38,2026-04-07 15:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.248,Fanduel,MONEYLINE,0.0,NA,142.27 +2026-04-19 05:04:51,2026-04-19 03:00:00,NFL,Baltimore Ravens,Miami Dolphins,5.1,0.0,0.877,Fanduel,POINTS_SPREAD,1.0,1,100.0 +2026-03-27 09:11:00,2026-03-30 04:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,224.5,0,108.09 +2026-04-11 23:35:00,2026-04-13 15:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,47.7,1,108.62 +2026-03-09 07:56:00,2026-03-12 01:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,47.9,0,104.21 +2026-04-11 13:58:21,2026-04-11 13:00:00,NFL,Miami Dolphins,Baltimore Ravens,-6.8,0.0,0.452,BetMGM,POINTS_SPREAD,0.6,1,130.36 +2026-03-25 04:51:44,2026-03-25 06:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,9.1,0.293,Fanduel,POINTS_TOTAL,7.0,0,130.73 +2026-04-13 13:39:12,2026-04-13 13:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,232.6,0.29,BetMGM,POINTS_TOTAL,225.4,1,100.88 +2026-03-06 02:49:00,2026-03-06 18:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.8,0,100.0 +2026-03-06 16:33:00,2026-03-08 17:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-02 11:49:00,2026-03-04 22:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,0,100.0 +2026-03-29 17:43:00,2026-03-30 19:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,1,117.8 +2026-04-14 15:30:38,2026-04-14 15:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,9.4,0.498,Fanduel,POINTS_TOTAL,11.8,0,110.88 +2026-04-19 04:22:00,2026-04-20 06:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-28 16:16:00,2026-03-01 19:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,222.7,1,108.35 +2026-03-28 17:23:00,2026-03-31 14:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,102.5 +2026-03-10 07:38:00,2026-03-13 07:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.9,1,104.68 +2026-03-23 18:12:00,2026-03-25 05:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,216.9,0,103.67 +2026-02-25 17:52:00,2026-02-28 11:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,45.8,0,100.0 +2026-02-26 19:10:54,2026-02-26 18:00:00,NBA,Phoenix Suns,Dallas Mavericks,2.3,0.0,0.805,BetMGM,POINTS_SPREAD,0.4,0,116.3 +2026-03-12 19:19:45,2026-03-12 19:00:00,NBA,Denver Nuggets,Golden State Warriors,4.7,0.0,0.532,BetMGM,POINTS_SPREAD,4.0,1,121.89 +2026-04-05 14:00:00,2026-04-06 23:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,126.24 +2026-03-04 14:01:00,2026-03-06 20:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,218.7,1,100.89 +2026-04-18 10:21:42,2026-04-18 12:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.215,Fanduel,MONEYLINE,0.0,NA,152.48 +2026-03-31 04:36:00,2026-04-01 04:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,7.7,0,100.0 +2026-03-23 02:44:24,2026-03-23 03:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,46.5,0.68,Fanduel,POINTS_TOTAL,46.2,1,100.0 +2026-03-09 19:41:00,2026-03-11 19:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.3,1,148.08 +2026-04-17 00:00:57,2026-04-17 01:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,5.4,0.0,0.372,Fanduel,POINTS_SPREAD,2.8,1,117.73 +2026-04-16 00:04:58,2026-04-16 00:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,238.4,0.611,Fanduel,POINTS_TOTAL,232.5,0,125.51 +2026-04-03 14:18:00,2026-04-04 10:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,60.4,0,119.91 +2026-04-04 13:35:00,2026-04-04 18:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,164.71 +2026-03-24 14:06:00,2026-03-26 10:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,65.0,1,110.41 +2026-03-28 22:39:21,2026-03-28 21:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,3.5,0.702,Fanduel,POINTS_TOTAL,3.5,0,115.91 +2026-03-04 12:13:00,2026-03-04 21:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,63.6,1,111.9 +2026-03-04 00:18:58,2026-03-03 23:00:00,NHL,Boston Bruins,Edmonton Oilers,-2.7,0.0,0.661,BetMGM,POINTS_SPREAD,0.4,0,100.0 +2026-03-31 04:06:48,2026-03-31 04:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,235.8,0.21,Fanduel,POINTS_TOTAL,237.5,0,114.04 +2026-03-30 22:26:00,2026-04-01 17:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,75.6,0,107.4 +2026-03-11 09:55:00,2026-03-12 02:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,1,100.0 +2026-03-03 20:17:00,2026-03-05 18:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,113.43 +2026-03-14 20:54:00,2026-03-16 10:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,100.0 +2026-04-15 10:13:24,2026-04-15 09:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.43,Fanduel,MONEYLINE,0.0,NA,127.87 +2026-02-28 00:41:00,2026-03-01 11:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,112.88 +2026-04-10 08:12:19,2026-04-10 07:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.574,BetMGM,MONEYLINE,0.0,NA,101.18 +2026-02-24 13:36:02,2026-02-24 12:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.928,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-28 06:35:00,2026-03-30 15:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,127.71 +2026-04-15 21:13:00,2026-04-18 02:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.3,1,132.21 +2026-03-26 14:47:00,2026-03-27 13:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-26 02:58:48,2026-02-26 04:00:00,NBA,Denver Nuggets,Miami Heat,4.2,0.0,0.06,BetMGM,POINTS_SPREAD,5.7,0,100.0 +2026-03-31 21:49:00,2026-04-01 12:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,1,100.0 +2026-02-26 21:43:00,2026-02-28 06:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.6,1,112.26 +2026-03-18 18:25:00,2026-03-19 22:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,1,131.38 +2026-03-07 21:15:00,2026-03-08 22:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,1,100.0 +2026-04-05 05:22:00,2026-04-08 03:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-26 19:32:00,2026-02-27 23:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-18 16:17:13,2026-03-18 14:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.3,0.0,0.829,Fanduel,POINTS_SPREAD,0.8,1,111.37 +2026-03-16 23:49:00,2026-03-17 22:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,55.6,0,107.13 +2026-03-20 13:27:57,2026-03-20 13:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.272,Fanduel,MONEYLINE,0.0,NA,132.28 +2026-03-18 12:20:15,2026-03-18 14:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,52.7,0.057,BetMGM,POINTS_TOTAL,51.3,1,100.0 +2026-02-25 12:07:33,2026-02-25 13:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,33.2,0.192,Fanduel,POINTS_TOTAL,29.2,1,110.03 +2026-03-15 01:04:15,2026-03-14 23:00:00,NBA,Denver Nuggets,Boston Celtics,3.5,0.0,0.707,Fanduel,POINTS_SPREAD,0.1,1,116.88 +2026-04-01 00:57:00,2026-04-02 22:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,150.99 +2026-03-06 08:18:00,2026-03-09 00:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,1,100.0 +2026-04-06 19:21:14,2026-04-06 18:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,16.1,0.818,BetMGM,POINTS_TOTAL,15.8,0,122.87 +2026-02-26 01:09:00,2026-02-27 17:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,149.44 +2026-04-02 03:02:00,2026-04-03 23:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,106.68 +2026-03-21 10:18:19,2026-03-21 11:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,3.5,0.074,Fanduel,POINTS_TOTAL,11.8,1,141.17 +2026-02-28 05:34:00,2026-02-28 17:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,130.69 +2026-04-06 20:53:00,2026-04-07 09:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,162.68 +2026-04-15 14:46:58,2026-04-15 13:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,5.1,0.761,BetMGM,POINTS_TOTAL,4.2,1,100.0 +2026-04-10 07:25:00,2026-04-10 23:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,195.52 +2026-03-22 07:14:00,2026-03-23 02:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,214.6,1,121.25 +2026-03-19 05:10:00,2026-03-21 23:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,158.77 +2026-04-11 23:39:00,2026-04-14 18:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,121.0 +2026-03-10 23:43:00,2026-03-13 15:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,1,111.7 +2026-02-27 10:24:00,2026-03-01 21:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-09 14:01:00,2026-03-11 02:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,1,100.0 +2026-03-24 05:44:39,2026-03-24 04:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,2.0,0.0,0.687,Fanduel,POINTS_SPREAD,2.4,0,112.88 +2026-04-02 18:23:00,2026-04-03 04:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,144.39 +2026-04-02 23:35:04,2026-04-02 23:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,47.6,0.256,BetMGM,POINTS_TOTAL,49.5,0,117.37 +2026-03-12 05:39:00,2026-03-12 15:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,0,100.0 +2026-03-18 03:41:00,2026-03-18 16:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.9,1,121.66 +2026-04-12 15:22:00,2026-04-13 10:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,147.04 +2026-03-21 04:45:00,2026-03-22 19:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,247.5,1,120.89 +2026-03-13 08:09:00,2026-03-16 05:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,36.5,1,107.72 +2026-04-03 23:19:00,2026-04-04 18:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,111.46 +2026-02-26 06:53:57,2026-02-26 05:00:00,NHL,Boston Bruins,New York Rangers,0.0,6.1,0.922,Fanduel,POINTS_TOTAL,6.2,0,113.43 +2026-03-13 00:47:06,2026-03-13 00:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,49.7,0.495,Fanduel,POINTS_TOTAL,50.6,0,109.6 +2026-04-14 17:55:00,2026-04-17 02:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,5.6,1,109.43 +2026-03-01 04:08:00,2026-03-02 10:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.7,1,110.04 +2026-04-14 21:45:00,2026-04-15 15:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,1,100.0 +2026-04-15 05:06:00,2026-04-17 06:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.8,0,117.69 +2026-02-25 00:32:14,2026-02-25 01:00:00,NHL,Carolina Hurricanes,Boston Bruins,-1.4,0.0,0.518,Fanduel,POINTS_SPREAD,2.7,0,100.0 +2026-03-20 19:33:00,2026-03-22 08:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,148.05 +2026-02-26 11:53:44,2026-02-26 11:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,38.9,0.593,BetMGM,POINTS_TOTAL,37.3,0,106.4 +2026-04-03 09:47:00,2026-04-03 11:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,1,100.0 +2026-02-20 20:27:00,2026-02-22 07:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,220.0,1,102.85 +2026-03-13 12:19:00,2026-03-13 20:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.3,1,120.38 +2026-03-24 05:13:00,2026-03-26 21:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,1,100.0 +2026-04-08 04:55:30,2026-04-08 04:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.875,Fanduel,MONEYLINE,0.0,NA,190.69 +2026-02-28 17:42:00,2026-03-01 07:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.6,0,126.67 +2026-04-20 18:04:27,2026-04-20 18:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.197,Fanduel,MONEYLINE,0.0,NA,112.31 +2026-04-07 03:46:00,2026-04-08 12:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.4,0,100.0 +2026-04-02 21:56:46,2026-04-02 20:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.671,BetMGM,MONEYLINE,0.0,NA,118.1 +2026-02-21 17:19:00,2026-02-21 20:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,142.98 +2026-03-09 11:54:00,2026-03-11 04:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,210.7,1,106.78 +2026-02-28 08:27:00,2026-03-02 14:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,118.64 +2026-03-26 11:36:43,2026-03-26 11:00:00,NHL,Florida Panthers,Toronto Maple Leafs,1.1,0.0,0.604,Fanduel,POINTS_SPREAD,1.0,1,108.78 +2026-04-16 14:46:00,2026-04-17 13:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,146.82 +2026-03-11 08:49:00,2026-03-14 05:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.3,1,100.0 +2026-03-20 08:41:04,2026-03-20 09:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.206,Fanduel,MONEYLINE,0.0,NA,117.28 +2026-03-11 02:26:00,2026-03-13 04:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,216.2,1,104.78 +2026-04-16 05:17:00,2026-04-18 23:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,142.4 +2026-03-07 17:13:34,2026-03-07 16:00:00,NBA,Denver Nuggets,Miami Heat,7.9,0.0,0.931,BetMGM,POINTS_SPREAD,0.5,0,141.56 +2026-03-15 16:35:00,2026-03-18 06:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,142.28 +2026-02-26 09:06:00,2026-02-28 07:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.8,0,114.27 +2026-04-13 21:45:00,2026-04-16 04:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,1,103.61 +2026-03-03 06:28:00,2026-03-05 05:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.9,0,122.06 +2026-03-24 01:40:19,2026-03-24 00:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.874,BetMGM,MONEYLINE,0.0,NA,129.2 +2026-03-06 17:40:00,2026-03-08 06:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,38.0,1,102.87 +2026-03-03 16:54:00,2026-03-04 07:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,116.6 +2026-03-25 20:57:00,2026-03-26 04:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.0,0,110.36 +2026-03-26 06:53:00,2026-03-28 08:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,136.36 +2026-04-02 03:52:00,2026-04-02 05:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,222.8,0,102.65 +2026-04-16 16:21:20,2026-04-16 15:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.513,BetMGM,MONEYLINE,0.0,NA,143.51 +2026-03-01 05:51:00,2026-03-03 17:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,54.5,1,115.77 +2026-04-09 18:33:00,2026-04-10 16:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,243.1,0,124.06 +2026-03-06 11:08:56,2026-03-06 12:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.383,Fanduel,MONEYLINE,0.0,NA,146.07 +2026-04-02 09:33:36,2026-04-02 10:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,38.7,0.62,BetMGM,POINTS_TOTAL,35.0,1,101.05 +2026-04-09 12:39:00,2026-04-12 09:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,0,105.84 +2026-03-19 10:36:01,2026-03-19 09:00:00,NBA,Miami Heat,Phoenix Suns,0.0,234.5,0.739,Fanduel,POINTS_TOTAL,233.3,1,128.11 +2026-04-07 06:13:00,2026-04-08 09:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,1,109.33 +2026-03-17 23:50:00,2026-03-20 16:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,228.3,1,112.56 +2026-03-25 02:42:00,2026-03-27 20:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.5,1,100.0 +2026-03-30 05:47:15,2026-03-30 05:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,-3.0,0.0,0.857,Fanduel,POINTS_SPREAD,2.6,0,100.0 +2026-03-17 06:47:00,2026-03-19 15:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,185.17 +2026-02-23 16:49:00,2026-02-26 09:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,219.4,0,106.9 +2026-04-14 02:34:38,2026-04-14 03:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.298,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-09 11:08:55,2026-03-09 11:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.344,Fanduel,MONEYLINE,0.0,NA,105.94 +2026-02-22 02:05:00,2026-02-24 03:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,196.83 +2026-02-20 16:00:00,2026-02-22 11:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.9,1,122.02 +2026-03-18 21:16:00,2026-03-19 12:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-22 10:54:58,2026-03-22 10:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,48.0,0.511,Fanduel,POINTS_TOTAL,49.3,1,115.01 +2026-03-06 19:24:00,2026-03-07 21:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,4.3,0,110.8 +2026-04-02 06:18:00,2026-04-03 02:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,0,100.0 +2026-02-26 18:04:00,2026-02-28 15:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,0,118.76 +2026-03-20 21:09:56,2026-03-20 22:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.283,Fanduel,MONEYLINE,0.0,NA,193.55 +2026-04-16 23:22:00,2026-04-18 19:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,229.4,1,112.96 +2026-04-10 23:52:10,2026-04-10 23:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,45.3,0.401,Fanduel,POINTS_TOTAL,38.5,1,100.0 +2026-03-31 22:59:00,2026-04-01 18:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.8,0,127.76 +2026-03-16 00:24:00,2026-03-18 09:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,1,126.03 +2026-02-20 11:37:00,2026-02-21 04:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,41.5,1,118.48 +2026-04-04 01:03:00,2026-04-06 14:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,1,100.0 +2026-04-01 14:29:00,2026-04-02 04:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,54.8,0,100.36 +2026-04-04 18:14:00,2026-04-07 14:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,108.86 +2026-04-12 12:30:00,2026-04-15 11:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,0,100.0 +2026-03-24 12:23:00,2026-03-26 03:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-23 14:11:16,2026-03-23 16:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.096,BetMGM,MONEYLINE,0.0,NA,110.44 +2026-03-27 07:30:00,2026-03-27 14:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-24 00:38:07,2026-03-24 00:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.3,0.0,0.484,BetMGM,POINTS_SPREAD,1.8,1,109.3 +2026-03-21 16:30:00,2026-03-21 15:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.8,Fanduel,MONEYLINE,0.0,NA,128.79 +2026-03-31 00:50:00,2026-04-02 15:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,116.04 +2026-03-29 14:41:25,2026-03-29 14:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,45.3,0.619,BetMGM,POINTS_TOTAL,43.2,0,100.0 +2026-04-10 01:33:52,2026-04-10 02:00:00,NHL,Florida Panthers,Vegas Golden Knights,2.9,0.0,0.416,Fanduel,POINTS_SPREAD,3.4,1,100.0 +2026-03-19 04:28:00,2026-03-21 16:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,164.35 +2026-04-06 21:55:00,2026-04-09 01:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.0,0,102.59 +2026-03-15 02:06:13,2026-03-15 00:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,239.8,0.729,BetMGM,POINTS_TOTAL,242.3,1,117.17 +2026-03-09 15:40:00,2026-03-10 16:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,205.2,1,100.0 +2026-03-28 10:49:00,2026-03-30 21:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,10.0,0,133.6 +2026-02-23 20:50:18,2026-02-23 21:00:00,NHL,Boston Bruins,Colorado Avalanche,0.8,0.0,0.285,Fanduel,POINTS_SPREAD,2.7,0,105.12 +2026-03-19 01:10:00,2026-03-21 13:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.8,1,129.63 +2026-02-23 14:32:30,2026-02-23 13:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,-0.8,0.0,0.675,BetMGM,POINTS_SPREAD,0.1,1,100.0 +2026-02-18 10:14:00,2026-02-20 14:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,231.77 +2026-02-23 16:26:00,2026-02-26 07:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-25 06:44:19,2026-02-25 06:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,-2.5,0.0,0.574,Fanduel,POINTS_SPREAD,0.0,1,142.46 +2026-03-24 22:35:00,2026-03-25 08:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,160.75 +2026-03-11 20:08:42,2026-03-11 20:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.465,Fanduel,MONEYLINE,0.0,NA,102.92 +2026-03-06 21:00:00,2026-03-09 21:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,166.15 +2026-04-18 03:27:00,2026-04-20 14:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,1,104.95 +2026-03-19 13:01:00,2026-03-22 02:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,1,109.28 +2026-03-06 22:12:00,2026-03-08 02:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,107.27 +2026-03-01 14:03:00,2026-03-02 17:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,6.4,1,112.02 +2026-04-02 11:16:00,2026-04-04 02:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,239.7,0,106.29 +2026-04-13 15:41:00,2026-04-15 04:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.6,0,100.0 +2026-04-11 12:55:00,2026-04-11 19:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,225.3,1,111.02 +2026-02-20 21:22:00,2026-02-22 19:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-09 10:36:00,2026-04-10 22:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,133.78 +2026-04-16 07:19:00,2026-04-18 11:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,4.0,0,108.13 +2026-03-15 00:21:00,2026-03-15 08:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,142.64 +2026-03-21 11:19:46,2026-03-21 12:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,217.2,0.171,Fanduel,POINTS_TOTAL,211.7,1,100.0 +2026-04-10 02:36:00,2026-04-12 04:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,1,140.08 +2026-02-27 10:39:00,2026-02-27 23:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-01 04:21:00,2026-04-02 05:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,110.44 +2026-02-26 14:49:00,2026-03-01 09:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,31.7,1,109.71 +2026-02-24 04:51:00,2026-02-25 06:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,46.0,0,100.0 +2026-04-15 12:31:00,2026-04-16 08:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,129.17 +2026-03-23 04:21:09,2026-03-23 04:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.512,BetMGM,MONEYLINE,0.0,NA,182.19 +2026-03-21 22:35:00,2026-03-22 19:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,240.1,1,100.0 +2026-03-20 00:42:00,2026-03-22 11:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,25.4,0,106.98 +2026-02-25 00:41:00,2026-02-26 16:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,243.6,0,125.49 +2026-02-28 05:39:49,2026-02-28 05:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,6.7,0.0,0.849,Fanduel,POINTS_SPREAD,3.5,0,125.94 +2026-03-26 18:32:00,2026-03-27 21:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.5,0,100.0 +2026-04-03 09:09:00,2026-04-04 08:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,143.86 +2026-02-23 14:29:00,2026-02-23 19:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,42.0,0,108.16 +2026-03-18 18:47:00,2026-03-18 19:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,1,138.55 +2026-03-06 00:43:00,2026-03-08 02:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,137.02 +2026-03-16 09:13:00,2026-03-19 09:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,113.36 +2026-02-27 00:50:00,2026-02-27 19:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,178.44 +2026-04-07 01:02:00,2026-04-09 16:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.2,1,119.7 +2026-02-20 23:39:00,2026-02-23 13:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.8,0,100.0 +2026-04-06 11:10:44,2026-04-06 11:00:00,NBA,Phoenix Suns,Golden State Warriors,1.4,0.0,0.643,BetMGM,POINTS_SPREAD,0.2,1,100.0 +2026-03-02 22:40:00,2026-03-03 15:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.0,1,103.05 +2026-03-13 02:45:00,2026-03-14 15:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,5.2,1,100.0 +2026-02-27 09:54:00,2026-02-28 14:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,235.3,1,119.98 +2026-04-18 06:33:54,2026-04-18 05:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,13.1,0.955,Fanduel,POINTS_TOTAL,15.0,0,121.52 +2026-04-16 03:49:00,2026-04-16 04:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.4,1,100.0 +2026-04-04 20:38:00,2026-04-04 22:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,150.04 +2026-02-19 10:02:00,2026-02-22 02:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,118.66 +2026-03-18 00:44:00,2026-03-18 13:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,225.6,0,117.63 +2026-02-21 18:50:20,2026-02-21 20:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.163,Fanduel,MONEYLINE,0.0,NA,159.8 +2026-03-21 15:08:00,2026-03-22 14:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,47.1,0,118.74 +2026-04-04 09:38:25,2026-04-04 10:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.169,Fanduel,MONEYLINE,0.0,NA,133.01 +2026-04-08 18:59:50,2026-04-08 19:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,6.2,0.0,0.488,BetMGM,POINTS_SPREAD,1.6,0,130.91 +2026-03-07 16:49:00,2026-03-09 21:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,0,163.18 +2026-03-20 00:14:00,2026-03-21 17:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,0,100.0 +2026-02-25 11:29:00,2026-02-26 12:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,0,114.39 +2026-04-16 03:56:37,2026-04-16 03:00:00,NFL,Dallas Cowboys,Buffalo Bills,-3.6,0.0,0.709,Fanduel,POINTS_SPREAD,1.2,0,100.0 +2026-04-07 05:10:00,2026-04-09 05:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-08 20:46:00,2026-03-09 02:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,0,116.89 +2026-04-02 20:03:00,2026-04-03 16:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-16 12:43:22,2026-03-16 13:00:00,NBA,Los Angeles Lakers,Boston Celtics,-3.5,0.0,0.241,BetMGM,POINTS_SPREAD,8.0,1,101.65 +2026-02-26 18:28:16,2026-02-26 19:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,29.5,0.546,BetMGM,POINTS_TOTAL,26.2,0,100.0 +2026-04-06 01:09:56,2026-04-06 02:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,40.6,0.483,BetMGM,POINTS_TOTAL,46.0,0,114.17 +2026-04-08 03:50:45,2026-04-08 04:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,49.6,0.632,Fanduel,POINTS_TOTAL,50.7,0,114.79 +2026-03-04 15:27:00,2026-03-05 14:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,120.35 +2026-04-07 17:00:56,2026-04-07 18:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,227.8,0.183,Fanduel,POINTS_TOTAL,235.3,1,110.23 +2026-03-13 21:47:00,2026-03-16 06:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,58.2,0,129.16 +2026-03-07 05:27:00,2026-03-08 00:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,0,100.0 +2026-04-13 02:12:00,2026-04-15 13:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,228.4,0,100.0 +2026-03-04 21:04:57,2026-03-04 20:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.872,BetMGM,MONEYLINE,0.0,NA,109.94 +2026-03-08 14:35:07,2026-03-08 14:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,12.5,0.484,Fanduel,POINTS_TOTAL,9.7,0,132.52 +2026-03-30 06:16:16,2026-03-30 07:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,232.3,0.446,BetMGM,POINTS_TOTAL,234.3,1,110.01 +2026-03-08 16:21:00,2026-03-10 14:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,102.42 +2026-03-08 15:08:57,2026-03-08 15:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.122,Fanduel,MONEYLINE,0.0,NA,133.51 +2026-02-20 20:27:00,2026-02-22 11:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,54.5,1,100.0 +2026-04-10 16:20:00,2026-04-13 15:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,116.2 +2026-03-27 02:02:00,2026-03-28 02:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,13.9,0,118.51 +2026-04-19 17:41:00,2026-04-20 18:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,0,124.05 +2026-04-17 14:59:00,2026-04-20 09:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,1,100.0 +2026-04-02 21:56:20,2026-04-02 22:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,8.5,0.213,Fanduel,POINTS_TOTAL,3.5,1,101.98 +2026-02-21 22:28:00,2026-02-23 16:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,23.1,0,101.06 +2026-04-20 12:33:00,2026-04-20 18:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,154.9 +2026-02-20 07:12:00,2026-02-21 18:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-04 06:09:45,2026-03-04 06:00:00,NFL,Baltimore Ravens,Miami Dolphins,3.7,0.0,0.182,Fanduel,POINTS_SPREAD,3.2,1,100.0 +2026-04-16 15:24:00,2026-04-16 20:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,206.2,1,108.33 +2026-04-11 07:22:00,2026-04-13 08:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.5,1,100.0 +2026-03-03 03:45:55,2026-03-03 03:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.794,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-28 12:16:10,2026-03-28 12:00:00,NFL,Philadelphia Eagles,Miami Dolphins,2.2,0.0,0.101,BetMGM,POINTS_SPREAD,2.2,0,100.0 +2026-03-30 00:22:21,2026-03-30 01:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,15.9,0.352,BetMGM,POINTS_TOTAL,20.1,1,122.08 +2026-02-19 09:57:00,2026-02-22 07:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,1,110.27 +2026-03-26 20:41:52,2026-03-26 19:00:00,NBA,Golden State Warriors,Boston Celtics,-3.6,0.0,0.866,Fanduel,POINTS_SPREAD,1.1,1,140.9 +2026-03-02 10:41:00,2026-03-04 16:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.0,0,145.7 +2026-04-15 22:28:00,2026-04-16 22:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,165.26 +2026-03-08 17:52:00,2026-03-11 05:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,113.25 +2026-04-12 20:37:06,2026-04-12 20:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,42.1,0.445,Fanduel,POINTS_TOTAL,50.6,0,100.0 +2026-03-13 07:24:00,2026-03-15 01:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,5.5,0,101.46 +2026-04-07 23:33:00,2026-04-09 01:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,144.06 +2026-03-19 05:53:00,2026-03-21 18:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.5,0,100.0 +2026-04-16 01:37:00,2026-04-16 14:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,153.46 +2026-03-06 11:07:00,2026-03-06 15:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,226.3,1,111.48 +2026-02-24 20:36:00,2026-02-27 20:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,125.02 +2026-03-26 08:51:56,2026-03-26 08:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,41.7,0.483,BetMGM,POINTS_TOTAL,38.0,1,103.22 +2026-03-18 19:42:00,2026-03-20 03:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.8,0,100.0 +2026-04-03 14:00:00,2026-04-04 08:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,0,100.0 +2026-03-06 03:35:36,2026-03-06 03:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,46.6,0.72,Fanduel,POINTS_TOTAL,48.4,0,115.52 +2026-03-10 19:17:00,2026-03-11 23:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,1,100.0 +2026-03-09 02:08:00,2026-03-09 23:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,114.23 +2026-03-26 09:12:00,2026-03-28 12:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,0,100.0 +2026-03-22 03:55:00,2026-03-23 08:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,111.92 +2026-04-08 23:22:00,2026-04-10 14:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,115.36 +2026-03-26 15:21:00,2026-03-26 15:00:00,NBA,Boston Celtics,Miami Heat,1.3,0.0,0.5,Fanduel,POINTS_SPREAD,3.0,1,117.0 +2026-03-15 09:33:32,2026-03-15 09:00:00,NBA,Milwaukee Bucks,Phoenix Suns,3.9,0.0,0.803,Fanduel,POINTS_SPREAD,2.3,0,122.1 +2026-04-18 22:37:00,2026-04-19 19:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,0,123.52 +2026-02-26 00:23:00,2026-02-28 00:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,0,100.0 +2026-03-25 09:01:00,2026-03-26 04:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,117.81 +2026-03-27 06:11:10,2026-03-27 06:00:00,NHL,Edmonton Oilers,Florida Panthers,-0.7,0.0,0.251,Fanduel,POINTS_SPREAD,1.1,0,124.65 +2026-03-22 09:56:00,2026-03-24 09:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,108.82 +2026-03-05 15:23:00,2026-03-05 20:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,0,114.94 +2026-04-17 01:10:00,2026-04-17 03:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,55.7,0,109.36 +2026-02-24 18:56:31,2026-02-24 19:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.514,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-01 20:57:00,2026-03-04 12:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,10.8,1,112.69 +2026-03-29 06:38:00,2026-03-29 12:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,32.1,0,118.93 +2026-02-22 16:25:12,2026-02-22 16:00:00,NBA,Milwaukee Bucks,Phoenix Suns,4.1,0.0,0.84,BetMGM,POINTS_SPREAD,1.0,0,140.6 +2026-03-28 01:07:09,2026-03-28 00:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,56.4,0.462,BetMGM,POINTS_TOTAL,59.8,1,122.1 +2026-03-01 11:48:36,2026-03-01 12:00:00,NHL,Carolina Hurricanes,Florida Panthers,-1.2,0.0,0.07,BetMGM,POINTS_SPREAD,1.1,0,100.02 +2026-03-12 22:44:38,2026-03-12 20:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,3.5,0.948,BetMGM,POINTS_TOTAL,3.5,1,105.06 +2026-02-28 19:48:00,2026-03-01 07:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.2,0,108.51 +2026-03-28 00:30:43,2026-03-28 01:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.454,Fanduel,MONEYLINE,0.0,NA,178.36 +2026-02-26 20:22:00,2026-02-27 18:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.0,0,100.0 +2026-02-25 11:16:00,2026-02-27 16:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,130.17 +2026-02-26 09:24:00,2026-02-26 20:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,9.0,0,107.25 +2026-03-08 12:36:13,2026-03-08 11:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,3.1,0.0,0.729,BetMGM,POINTS_SPREAD,1.1,1,100.0 +2026-04-21 07:48:37,2026-04-21 08:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.309,Fanduel,MONEYLINE,0.0,NA,106.28 +2026-03-16 18:44:16,2026-03-16 17:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.696,Fanduel,MONEYLINE,0.0,NA,118.5 +2026-04-16 15:50:00,2026-04-17 09:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,42.3,0,115.92 +2026-03-08 15:57:24,2026-03-08 16:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.18,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-23 09:54:00,2026-03-24 01:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,33.3,1,116.44 +2026-03-26 08:49:21,2026-03-26 07:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.702,Fanduel,MONEYLINE,0.0,NA,169.95 +2026-03-13 07:50:00,2026-03-13 16:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.7,1,100.61 +2026-04-09 17:07:00,2026-04-11 00:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,112.2 +2026-04-11 14:00:37,2026-04-11 13:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,229.9,0.959,Fanduel,POINTS_TOTAL,238.1,0,100.0 +2026-02-25 03:56:00,2026-02-25 21:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,5.9,1,109.07 +2026-03-10 05:36:00,2026-03-10 07:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,111.29 +2026-04-03 14:06:00,2026-04-05 17:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-15 03:05:00,2026-04-17 20:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,38.6,1,100.0 +2026-02-22 01:51:43,2026-02-22 03:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,1.3,0.0,0.054,Fanduel,POINTS_SPREAD,0.7,0,115.63 +2026-03-02 00:33:38,2026-03-02 00:00:00,NFL,Kansas City Chiefs,Miami Dolphins,4.3,0.0,0.398,BetMGM,POINTS_SPREAD,2.5,1,100.0 +2026-04-10 22:08:00,2026-04-12 07:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,110.58 +2026-04-01 05:16:00,2026-04-01 06:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.4,BetMGM,MONEYLINE,0.0,NA,129.56 +2026-02-27 18:55:00,2026-03-01 23:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,117.77 +2026-04-01 19:07:42,2026-04-01 19:00:00,NHL,Boston Bruins,Toronto Maple Leafs,3.7,0.0,0.065,Fanduel,POINTS_SPREAD,0.0,1,104.26 +2026-04-03 04:24:56,2026-04-03 04:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,3.5,0.183,Fanduel,POINTS_TOTAL,3.5,0,122.47 +2026-03-30 05:39:15,2026-03-30 05:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,13.4,0.857,Fanduel,POINTS_TOTAL,7.9,0,125.36 +2026-04-08 02:13:00,2026-04-10 03:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,148.04 +2026-02-22 04:46:00,2026-02-22 06:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,129.91 +2026-03-30 22:21:00,2026-03-31 20:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,123.05 +2026-03-04 15:20:12,2026-03-04 15:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,-6.6,0.0,0.89,BetMGM,POINTS_SPREAD,2.7,0,100.0 +2026-04-16 09:26:00,2026-04-16 18:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,123.76 +2026-04-07 02:07:38,2026-04-07 03:00:00,NFL,Dallas Cowboys,Detroit Lions,-0.4,0.0,0.448,BetMGM,POINTS_SPREAD,0.1,0,100.0 +2026-04-07 02:04:00,2026-04-08 12:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,42.8,0,107.83 +2026-03-29 15:31:08,2026-03-29 16:00:00,NHL,New York Rangers,Edmonton Oilers,-4.6,0.0,0.323,Fanduel,POINTS_SPREAD,1.3,1,129.08 +2026-04-18 01:54:00,2026-04-18 17:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.0,1,103.96 +2026-03-08 03:21:00,2026-03-08 13:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.2,0,102.13 +2026-02-26 11:33:00,2026-03-01 08:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,14.0,0,100.0 +2026-02-18 18:41:00,2026-02-21 07:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,48.9,1,110.08 +2026-04-07 06:53:00,2026-04-07 09:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,1,100.0 +2026-03-23 20:39:00,2026-03-26 12:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,117.75 +2026-03-08 22:48:00,2026-03-09 01:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,128.2 +2026-04-01 04:24:42,2026-04-01 04:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.315,BetMGM,MONEYLINE,0.0,NA,104.72 +2026-04-12 19:12:00,2026-04-14 10:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,140.34 +2026-03-25 21:48:00,2026-03-27 15:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.0,1,100.0 +2026-03-29 20:24:57,2026-03-29 19:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.5,0.0,0.772,Fanduel,POINTS_SPREAD,1.2,0,104.97 +2026-03-13 06:43:00,2026-03-15 18:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,43.8,1,121.75 +2026-03-26 07:20:07,2026-03-26 06:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.1,0.0,0.734,Fanduel,POINTS_SPREAD,1.8,1,108.12 +2026-04-13 23:06:00,2026-04-14 12:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,117.37 +2026-04-14 00:38:00,2026-04-14 04:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,152.96 +2026-04-11 07:52:18,2026-04-11 08:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,207.3,0.635,BetMGM,POINTS_TOTAL,202.9,1,100.0 +2026-03-04 07:50:00,2026-03-05 23:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,119.96 +2026-03-31 16:00:00,2026-04-01 02:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-20 03:21:00,2026-03-21 21:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-08 13:52:42,2026-04-08 13:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,-3.4,0.0,0.565,Fanduel,POINTS_SPREAD,0.6,0,100.0 +2026-03-12 20:14:00,2026-03-13 10:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,147.65 +2026-02-22 04:53:00,2026-02-24 13:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.93 +2026-04-15 19:18:00,2026-04-16 21:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,1,129.46 +2026-04-15 22:59:00,2026-04-18 06:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,0,121.96 +2026-03-13 12:26:00,2026-03-16 01:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,214.4,0,110.55 +2026-04-17 04:33:00,2026-04-17 08:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-19 13:47:39,2026-03-19 14:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.487,Fanduel,MONEYLINE,0.0,NA,153.1 +2026-03-04 13:07:34,2026-03-04 14:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.081,Fanduel,MONEYLINE,0.0,NA,137.41 +2026-02-23 04:45:00,2026-02-25 13:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,123.66 +2026-03-27 17:19:15,2026-03-27 18:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,48.7,0.357,Fanduel,POINTS_TOTAL,49.0,1,100.0 +2026-03-26 16:40:19,2026-03-26 17:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,56.3,0.474,BetMGM,POINTS_TOTAL,58.1,1,124.7 +2026-04-17 07:52:00,2026-04-17 23:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,135.2 +2026-02-24 02:44:00,2026-02-25 07:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,5.6,0,100.0 +2026-03-10 22:48:00,2026-03-11 23:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,121.77 +2026-03-15 10:18:00,2026-03-17 20:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,1,104.05 +2026-04-14 23:31:00,2026-04-14 23:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.25,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-06 16:51:00,2026-03-08 17:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,58.2,1,112.82 +2026-03-13 20:11:52,2026-03-13 20:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.6,0.0,0.716,Fanduel,POINTS_SPREAD,3.4,0,107.79 +2026-03-22 10:32:38,2026-03-22 10:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.448,Fanduel,MONEYLINE,0.0,NA,115.02 +2026-03-09 00:11:00,2026-03-10 03:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,145.45 +2026-02-18 04:59:00,2026-02-20 14:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,0,121.0 +2026-03-03 07:01:15,2026-03-03 08:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.357,BetMGM,MONEYLINE,0.0,NA,138.97 +2026-04-13 11:00:00,2026-04-14 00:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,46.9,0,100.0 +2026-02-25 01:46:00,2026-02-26 18:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,58.1,0,107.97 +2026-03-03 05:54:00,2026-03-04 13:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,10.8,0,102.01 +2026-04-06 08:14:20,2026-04-06 09:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,44.0,0.313,Fanduel,POINTS_TOTAL,45.0,1,108.34 +2026-03-28 03:40:00,2026-03-31 03:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,109.26 +2026-03-05 20:49:00,2026-03-06 00:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.8,0,100.0 +2026-03-29 14:26:00,2026-03-29 15:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,29.7,1,123.17 +2026-04-20 11:15:00,2026-04-20 19:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,1,129.98 +2026-03-08 01:06:00,2026-03-08 15:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,1,125.54 +2026-02-28 02:53:00,2026-03-02 20:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,121.72 +2026-04-01 07:29:28,2026-04-01 09:00:00,NBA,Milwaukee Bucks,Phoenix Suns,2.1,0.0,0.086,Fanduel,POINTS_SPREAD,2.8,1,100.0 +2026-03-06 19:20:00,2026-03-08 20:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,11.0,1,107.23 +2026-02-28 19:57:00,2026-03-01 14:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,126.74 +2026-04-10 23:03:22,2026-04-10 23:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.691,Fanduel,MONEYLINE,0.0,NA,114.4 +2026-03-21 23:34:00,2026-03-22 16:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-01 21:25:00,2026-03-03 20:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,213.3,0,102.16 +2026-02-24 14:07:55,2026-02-24 14:00:00,NHL,Florida Panthers,Boston Bruins,0.0,3.5,0.344,Fanduel,POINTS_TOTAL,3.5,0,122.1 +2026-03-23 16:21:00,2026-03-25 19:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,36.1,0,142.16 +2026-02-27 22:41:14,2026-02-27 23:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.118,Fanduel,MONEYLINE,0.0,NA,152.44 +2026-03-05 13:40:00,2026-03-05 18:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.9,1,105.14 +2026-03-11 03:27:40,2026-03-11 03:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,59.4,0.576,Fanduel,POINTS_TOTAL,65.8,0,100.0 +2026-02-28 06:35:00,2026-03-02 22:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-29 20:08:10,2026-03-29 20:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.101,BetMGM,MONEYLINE,0.0,NA,110.63 +2026-04-20 08:11:00,2026-04-21 02:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.4,0,100.0 +2026-03-11 09:25:00,2026-03-12 08:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,1,100.0 +2026-04-02 13:07:00,2026-04-02 19:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-28 20:46:00,2026-03-03 06:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,31.7,0,117.85 +2026-03-17 21:13:01,2026-03-17 21:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.789,BetMGM,MONEYLINE,0.0,NA,152.73 +2026-03-26 01:12:00,2026-03-26 20:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-17 00:32:36,2026-04-17 00:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,14.6,0.47,BetMGM,POINTS_TOTAL,22.9,1,114.36 +2026-04-16 09:41:00,2026-04-18 08:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.4,0,141.65 +2026-02-24 05:11:00,2026-02-24 04:00:00,NHL,New York Rangers,Florida Panthers,-1.2,0.0,0.85,Fanduel,POINTS_SPREAD,1.6,0,100.0 +2026-03-26 00:18:08,2026-03-26 00:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.723,BetMGM,MONEYLINE,0.0,NA,112.45 +2026-04-10 12:58:00,2026-04-11 10:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,0,122.25 +2026-03-19 20:00:00,2026-03-19 19:00:00,NHL,Florida Panthers,New York Rangers,0.0,16.9,0.35,Fanduel,POINTS_TOTAL,14.9,1,111.76 +2026-02-20 16:04:00,2026-02-22 08:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,122.32 +2026-02-23 09:43:26,2026-02-23 09:00:00,NFL,Kansas City Chiefs,Miami Dolphins,4.1,0.0,0.708,Fanduel,POINTS_SPREAD,2.5,0,132.38 +2026-03-08 07:56:00,2026-03-08 20:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,130.55 +2026-03-02 17:24:00,2026-03-04 11:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,0,112.29 +2026-03-14 23:33:49,2026-03-14 22:00:00,NBA,Golden State Warriors,Los Angeles Lakers,1.8,0.0,0.799,BetMGM,POINTS_SPREAD,2.2,1,100.0 +2026-02-20 13:43:00,2026-02-21 03:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,15.3,0,126.99 +2026-02-20 11:33:00,2026-02-20 17:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,124.35 +2026-03-23 08:29:00,2026-03-25 09:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,1,100.0 +2026-02-21 04:10:00,2026-02-23 00:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,141.74 +2026-04-15 06:44:00,2026-04-16 07:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,125.77 +2026-03-23 08:57:51,2026-03-23 09:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.527,BetMGM,MONEYLINE,0.0,NA,142.51 +2026-04-13 07:12:00,2026-04-14 14:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,106.2 +2026-02-26 17:16:00,2026-03-01 01:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,33.8,1,100.0 +2026-03-15 08:14:51,2026-03-15 07:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,210.2,0.927,BetMGM,POINTS_TOTAL,212.7,0,108.04 +2026-03-16 20:52:00,2026-03-17 22:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,112.7 +2026-02-22 06:44:00,2026-02-24 06:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,1,120.63 +2026-03-26 21:22:00,2026-03-27 17:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.7,0,122.59 +2026-04-09 05:23:00,2026-04-10 07:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,233.8,0,110.13 +2026-03-23 01:09:00,2026-03-23 02:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,112.23 +2026-03-05 12:32:00,2026-03-07 01:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,120.76 +2026-03-09 21:05:28,2026-03-09 22:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.236,Fanduel,MONEYLINE,0.0,NA,152.44 +2026-03-27 00:36:27,2026-03-27 01:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.9,0.0,0.297,Fanduel,POINTS_SPREAD,1.6,1,100.0 +2026-04-18 12:03:00,2026-04-21 04:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-10 23:48:00,2026-03-12 18:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,1,107.73 +2026-02-26 20:29:00,2026-03-01 17:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,63.9,1,118.17 +2026-02-25 14:18:00,2026-02-28 12:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,0,108.42 +2026-03-07 18:59:00,2026-03-10 05:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,0,100.65 +2026-03-02 16:19:00,2026-03-03 05:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,0,113.4 +2026-03-03 23:43:00,2026-03-06 01:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,1,142.69 +2026-03-07 06:07:00,2026-03-09 16:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-08 04:46:00,2026-04-10 19:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,0,100.0 +2026-04-01 12:02:13,2026-04-01 12:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,28.6,0.579,Fanduel,POINTS_TOTAL,31.4,0,112.62 +2026-02-28 14:44:00,2026-03-02 14:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,158.84 +2026-03-16 06:19:00,2026-03-18 13:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,16.0,1,109.05 +2026-03-27 12:44:00,2026-03-29 14:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.1,0,100.0 +2026-03-08 22:05:00,2026-03-09 05:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,1,119.14 +2026-04-09 14:29:00,2026-04-12 11:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,1,100.0 +2026-03-06 19:39:40,2026-03-06 19:00:00,NBA,Miami Heat,Boston Celtics,0.0,233.5,0.776,BetMGM,POINTS_TOTAL,230.5,0,128.05 +2026-02-21 12:34:00,2026-02-23 09:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,10.5,1,128.58 +2026-04-01 21:21:00,2026-04-02 08:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,223.9,0,102.03 +2026-04-12 19:29:00,2026-04-14 13:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,16.1,1,102.33 +2026-03-09 18:17:36,2026-03-09 17:00:00,NFL,Miami Dolphins,Kansas City Chiefs,-8.1,0.0,0.67,Fanduel,POINTS_SPREAD,0.9,0,100.0 +2026-03-18 05:56:00,2026-03-19 11:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,127.4 +2026-02-25 02:44:00,2026-02-26 02:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,140.05 +2026-03-07 20:05:44,2026-03-07 20:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,1.0,0.0,0.793,BetMGM,POINTS_SPREAD,1.5,1,100.0 +2026-03-28 01:04:00,2026-03-30 13:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,213.7,0,141.43 +2026-03-11 14:52:00,2026-03-13 14:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,143.24 +2026-02-28 15:37:00,2026-03-03 06:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,45.3,0,100.0 +2026-02-19 20:43:00,2026-02-20 19:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,131.0 +2026-04-02 15:07:00,2026-04-04 00:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.8,0,117.23 +2026-03-07 06:07:00,2026-03-08 17:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,0,100.0 +2026-02-22 16:12:00,2026-02-24 08:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,1,100.0 +2026-02-20 06:07:00,2026-02-21 01:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,1,123.8 +2026-03-04 04:03:00,2026-03-06 14:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,0,110.88 +2026-03-19 17:22:00,2026-03-21 12:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,1,100.0 +2026-03-31 09:20:14,2026-03-31 09:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.718,Fanduel,MONEYLINE,0.0,NA,128.85 +2026-03-13 18:32:28,2026-03-13 18:00:00,NBA,Miami Heat,Phoenix Suns,0.0,230.7,0.336,Fanduel,POINTS_TOTAL,231.3,0,109.23 +2026-03-11 18:35:00,2026-03-11 19:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,102.25 +2026-03-26 06:50:00,2026-03-28 07:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,159.7 +2026-03-10 21:54:31,2026-03-10 20:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,49.1,0.764,Fanduel,POINTS_TOTAL,46.7,1,106.4 +2026-03-29 15:35:24,2026-03-29 15:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.63,Fanduel,MONEYLINE,0.0,NA,137.79 +2026-04-01 03:52:00,2026-04-02 23:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-26 06:08:00,2026-03-27 21:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,1,100.0 +2026-03-22 14:52:24,2026-03-22 15:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,21.6,0.28,Fanduel,POINTS_TOTAL,17.9,0,123.27 +2026-04-05 07:28:56,2026-04-05 07:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,222.8,0.333,Fanduel,POINTS_TOTAL,223.7,1,119.86 +2026-03-17 03:36:00,2026-03-19 16:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.4,0,128.81 +2026-02-27 15:49:00,2026-03-01 07:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,113.9 +2026-03-19 01:13:00,2026-03-21 02:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,177.72 +2026-04-13 08:28:22,2026-04-13 08:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.391,Fanduel,MONEYLINE,0.0,NA,103.5 +2026-03-14 08:24:00,2026-03-16 03:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,47.1,1,111.71 +2026-04-02 22:26:00,2026-04-05 12:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,1,111.35 +2026-03-22 15:47:00,2026-03-24 02:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,114.88 +2026-04-12 22:57:38,2026-04-12 23:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.048,Fanduel,MONEYLINE,0.0,NA,121.13 +2026-03-27 15:37:00,2026-03-30 12:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,4.3,1,106.68 +2026-03-03 18:57:00,2026-03-05 20:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,108.8 +2026-02-26 13:32:00,2026-02-28 18:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-01 22:49:00,2026-04-02 22:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,229.2,1,113.24 +2026-03-21 21:25:00,2026-03-24 21:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,176.74 +2026-02-21 14:47:00,2026-02-22 01:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,1,100.0 +2026-04-17 04:45:00,2026-04-18 21:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,128.8 +2026-04-03 09:09:00,2026-04-05 07:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.6,0,110.36 +2026-03-31 22:26:00,2026-04-02 09:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,136.93 +2026-03-26 23:23:00,2026-03-29 20:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,105.4 +2026-04-15 12:56:56,2026-04-15 13:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,-1.0,0.0,0.233,Fanduel,POINTS_SPREAD,2.2,1,112.44 +2026-02-28 12:16:00,2026-03-02 20:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,231.8,1,123.33 +2026-03-03 08:34:00,2026-03-05 00:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,127.36 +2026-04-20 04:26:00,2026-04-20 07:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.5,1,124.27 +2026-03-06 02:30:38,2026-03-06 01:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,65.5,0.948,BetMGM,POINTS_TOTAL,67.3,0,107.94 +2026-03-14 13:41:00,2026-03-17 00:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,143.51 +2026-03-09 20:32:00,2026-03-10 15:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,121.05 +2026-04-05 20:11:00,2026-04-06 03:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,1,113.49 +2026-04-13 09:14:02,2026-04-13 09:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.228,Fanduel,MONEYLINE,0.0,NA,149.82 +2026-03-23 10:09:00,2026-03-25 16:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,21.0,0,120.92 +2026-04-05 19:12:18,2026-04-05 19:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,216.2,0.185,BetMGM,POINTS_TOTAL,216.3,0,100.74 +2026-02-22 15:19:00,2026-02-22 21:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-11 23:57:00,2026-03-14 17:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,0,109.96 +2026-03-17 15:00:00,2026-03-18 05:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-18 08:19:00,2026-04-19 06:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.8,0,100.0 +2026-03-19 00:22:00,2026-03-19 18:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,5.9,1,112.34 +2026-04-05 06:39:30,2026-04-05 06:00:00,NHL,Colorado Avalanche,Florida Panthers,-1.2,0.0,0.425,Fanduel,POINTS_SPREAD,1.7,0,105.83 +2026-04-15 09:27:00,2026-04-17 01:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-17 00:40:00,2026-03-19 16:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.2,0,134.44 +2026-04-02 23:39:00,2026-04-04 08:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,5.8,0,100.0 +2026-03-15 10:33:00,2026-03-17 06:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,140.82 +2026-03-24 21:55:00,2026-03-25 11:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-18 20:15:00,2026-03-20 04:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,1,107.13 +2026-03-07 13:13:00,2026-03-09 17:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.6,1,100.0 +2026-03-31 20:24:03,2026-03-31 19:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,44.6,0.867,BetMGM,POINTS_TOTAL,42.7,0,108.94 +2026-04-01 02:16:00,2026-04-01 22:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,114.64 +2026-04-01 18:18:38,2026-04-01 20:00:00,NHL,Carolina Hurricanes,Boston Bruins,-1.5,0.0,0.198,BetMGM,POINTS_SPREAD,2.8,1,100.0 +2026-02-26 19:38:27,2026-02-26 19:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,32.6,0.547,BetMGM,POINTS_TOTAL,35.3,1,123.84 +2026-03-10 23:14:12,2026-03-10 22:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,38.4,0.84,Fanduel,POINTS_TOTAL,36.2,1,101.75 +2026-03-14 06:59:56,2026-03-14 07:00:00,NBA,Dallas Mavericks,Denver Nuggets,4.1,0.0,0.433,BetMGM,POINTS_SPREAD,1.4,1,100.0 +2026-04-10 05:34:00,2026-04-11 20:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,54.4,0,121.27 +2026-04-19 22:55:00,2026-04-21 09:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.8,0,120.13 +2026-03-17 16:38:00,2026-03-20 10:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,7.8,1,128.63 +2026-03-16 11:10:28,2026-03-16 10:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.536,BetMGM,MONEYLINE,0.0,NA,171.96 +2026-03-23 19:20:00,2026-03-25 07:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,216.9,0,100.1 +2026-03-21 10:38:15,2026-03-21 09:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,7.8,0.857,BetMGM,POINTS_TOTAL,3.9,1,100.0 +2026-04-13 23:39:38,2026-04-13 23:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.248,BetMGM,MONEYLINE,0.0,NA,115.95 +2026-04-01 02:30:00,2026-04-03 12:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-24 12:25:00,2026-03-26 19:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,230.3,0,100.0 +2026-04-16 08:01:00,2026-04-17 19:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-23 17:49:00,2026-02-25 10:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-17 11:46:00,2026-04-18 20:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,111.63 +2026-04-14 08:24:00,2026-04-17 03:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,145.41 +2026-02-20 03:59:00,2026-02-22 17:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,8.2,0,103.76 +2026-04-16 19:07:21,2026-04-16 19:00:00,NBA,Golden State Warriors,Phoenix Suns,0.1,0.0,0.452,Fanduel,POINTS_SPREAD,3.5,0,116.3 +2026-04-01 07:48:00,2026-04-02 13:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,107.1 +2026-03-22 08:11:00,2026-03-24 11:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,127.39 +2026-02-23 01:31:00,2026-02-24 18:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,1,102.27 +2026-03-01 13:57:52,2026-03-01 14:00:00,NFL,Dallas Cowboys,Miami Dolphins,-3.2,0.0,0.316,BetMGM,POINTS_SPREAD,1.3,0,100.0 +2026-02-22 03:29:00,2026-02-23 05:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,11.6,0,100.0 +2026-03-09 06:04:00,2026-03-11 20:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,157.06 +2026-04-06 23:36:00,2026-04-07 05:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,103.32 +2026-03-26 15:44:00,2026-03-27 09:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,203.97 +2026-04-11 07:23:58,2026-04-11 08:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.061,Fanduel,MONEYLINE,0.0,NA,191.57 +2026-04-05 12:15:25,2026-04-05 13:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,34.5,0.219,BetMGM,POINTS_TOTAL,33.2,1,100.0 +2026-03-07 19:04:45,2026-03-07 19:00:00,NBA,Miami Heat,Denver Nuggets,-1.1,0.0,0.582,BetMGM,POINTS_SPREAD,3.6,1,137.01 +2026-04-03 07:20:00,2026-04-04 20:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,131.2 +2026-02-25 10:29:06,2026-02-25 11:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,36.0,0.445,BetMGM,POINTS_TOTAL,38.5,1,112.79 +2026-04-03 08:34:46,2026-04-03 10:00:00,NBA,Dallas Mavericks,Denver Nuggets,-4.3,0.0,0.171,Fanduel,POINTS_SPREAD,1.2,1,128.73 +2026-04-11 14:38:00,2026-04-13 19:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,1,100.0 +2026-03-13 05:32:00,2026-03-15 15:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,230.6,1,111.61 +2026-04-01 02:58:16,2026-04-01 02:00:00,NBA,Boston Celtics,Miami Heat,0.0,240.4,0.496,Fanduel,POINTS_TOTAL,238.4,0,133.47 +2026-03-16 05:31:18,2026-03-16 03:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.885,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-04 14:49:00,2026-03-06 12:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,123.12 +2026-04-06 22:22:00,2026-04-08 09:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-12 04:45:00,2026-04-13 19:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,120.14 +2026-03-18 04:03:58,2026-03-18 03:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,25.5,0.561,Fanduel,POINTS_TOTAL,28.2,0,100.0 +2026-03-25 00:19:45,2026-03-25 00:00:00,NHL,Carolina Hurricanes,Boston Bruins,4.2,0.0,0.132,Fanduel,POINTS_SPREAD,1.7,1,100.0 +2026-02-23 19:14:58,2026-02-23 18:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.611,BetMGM,MONEYLINE,0.0,NA,129.33 +2026-03-25 17:24:00,2026-03-27 04:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,115.86 +2026-03-14 21:45:51,2026-03-14 23:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,60.6,0.227,BetMGM,POINTS_TOTAL,63.8,1,100.0 +2026-04-15 06:22:00,2026-04-17 05:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,208.3,1,100.0 +2026-04-14 12:31:00,2026-04-16 05:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,174.98 +2026-03-19 23:49:00,2026-03-22 15:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,234.3,1,108.12 +2026-03-13 10:19:22,2026-03-13 10:00:00,NBA,Boston Celtics,Golden State Warriors,3.0,0.0,0.841,Fanduel,POINTS_SPREAD,0.6,1,100.0 +2026-03-29 12:34:04,2026-03-29 13:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.206,BetMGM,MONEYLINE,0.0,NA,157.07 +2026-03-20 04:23:00,2026-03-22 05:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,133.78 +2026-02-27 07:22:00,2026-03-01 00:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,141.3 +2026-04-01 06:05:34,2026-04-01 06:00:00,NBA,Milwaukee Bucks,Denver Nuggets,-0.4,0.0,0.231,Fanduel,POINTS_SPREAD,2.6,1,100.27 +2026-03-20 16:07:00,2026-03-21 09:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,152.09 +2026-03-22 21:55:00,2026-03-25 07:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-01 08:06:00,2026-03-01 12:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.0,1,100.0 +2026-03-09 12:53:00,2026-03-11 12:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-19 22:11:00,2026-04-21 05:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.2,1,100.0 +2026-03-30 04:33:00,2026-03-31 02:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,18.1,0,103.1 +2026-04-16 01:24:00,2026-04-16 03:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,102.92 +2026-04-12 01:27:01,2026-04-12 01:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,44.3,0.189,BetMGM,POINTS_TOTAL,52.6,0,100.0 +2026-03-16 19:52:00,2026-03-17 13:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,115.01 +2026-04-08 17:47:00,2026-04-08 22:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,38.5,1,125.88 +2026-02-24 02:36:00,2026-02-25 18:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,1,104.55 +2026-04-05 00:17:00,2026-04-06 11:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,10.7,0,102.07 +2026-03-27 07:16:00,2026-03-30 05:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,46.7,1,101.55 +2026-03-01 10:49:00,2026-03-01 20:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,142.26 +2026-04-17 19:26:00,2026-04-18 08:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,149.87 +2026-03-01 06:41:00,2026-03-01 09:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,122.98 +2026-04-16 19:14:00,2026-04-18 20:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.0,1,100.0 +2026-04-18 13:55:00,2026-04-21 06:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,108.06 +2026-04-02 21:20:00,2026-04-04 18:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-24 08:08:00,2026-02-26 09:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,134.21 +2026-02-22 21:16:00,2026-02-25 05:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,7.5,1,119.27 +2026-03-28 13:08:00,2026-03-31 11:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,15.5,1,132.55 +2026-03-23 17:01:55,2026-03-23 18:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.144,BetMGM,MONEYLINE,0.0,NA,127.21 +2026-03-18 17:16:03,2026-03-18 16:00:00,NFL,Baltimore Ravens,Buffalo Bills,6.8,0.0,0.667,BetMGM,POINTS_SPREAD,2.7,0,147.12 +2026-04-06 03:43:58,2026-04-06 02:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,226.4,0.611,Fanduel,POINTS_TOTAL,215.9,0,134.4 +2026-04-10 22:09:00,2026-04-13 11:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,1,100.0 +2026-03-15 10:37:00,2026-03-18 10:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,231.0,1,128.74 +2026-04-21 13:03:10,2026-04-21 12:00:00,NHL,New York Rangers,Toronto Maple Leafs,-3.0,0.0,0.451,Fanduel,POINTS_SPREAD,1.7,1,141.77 +2026-04-17 02:23:00,2026-04-18 12:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,21.7,0,100.68 +2026-03-09 20:04:00,2026-03-11 14:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,108.58 +2026-02-27 12:52:00,2026-03-01 20:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,0,109.72 +2026-04-01 14:06:00,2026-04-02 18:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,17.4,1,100.0 +2026-02-20 11:27:00,2026-02-21 11:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.9,0,112.7 +2026-04-04 21:54:00,2026-04-06 11:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,1,120.19 +2026-02-23 09:24:09,2026-02-23 10:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,13.4,0.362,BetMGM,POINTS_TOTAL,9.0,0,126.44 +2026-03-18 11:11:00,2026-03-21 05:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-01 05:10:32,2026-04-01 05:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,51.7,0.403,Fanduel,POINTS_TOTAL,46.0,0,104.46 +2026-03-18 09:50:00,2026-03-19 05:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.4,1,101.08 +2026-03-01 16:15:00,2026-03-02 07:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.9,0,100.0 +2026-03-05 10:25:48,2026-03-05 08:00:00,NHL,Boston Bruins,Carolina Hurricanes,-3.9,0.0,0.86,BetMGM,POINTS_SPREAD,4.2,0,100.0 +2026-03-03 22:54:00,2026-03-06 04:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,227.2,1,104.44 +2026-03-30 03:33:00,2026-04-02 03:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,148.56 +2026-03-08 16:07:16,2026-03-08 15:00:00,NBA,Miami Heat,Boston Celtics,0.3,0.0,0.546,Fanduel,POINTS_SPREAD,1.5,0,108.39 +2026-04-07 07:38:00,2026-04-07 11:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,0,100.0 +2026-03-21 11:40:48,2026-03-21 11:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.71,BetMGM,MONEYLINE,0.0,NA,100.57 +2026-04-11 03:09:00,2026-04-13 08:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,107.37 +2026-04-08 22:08:27,2026-04-08 21:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.597,Fanduel,MONEYLINE,0.0,NA,140.43 +2026-03-04 02:12:28,2026-03-04 01:00:00,NBA,Miami Heat,Milwaukee Bucks,-1.1,0.0,0.786,Fanduel,POINTS_SPREAD,1.6,1,100.0 +2026-04-16 16:43:25,2026-04-16 16:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.719,Fanduel,MONEYLINE,0.0,NA,183.97 +2026-02-19 15:57:00,2026-02-21 01:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,48.9,0,100.0 +2026-02-21 02:47:00,2026-02-23 02:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,120.03 +2026-03-06 20:39:03,2026-03-06 21:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.9,0.0,0.117,BetMGM,POINTS_SPREAD,1.8,1,103.08 +2026-03-04 06:05:00,2026-03-07 04:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,1,100.0 +2026-04-18 18:30:03,2026-04-18 19:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.167,BetMGM,MONEYLINE,0.0,NA,130.57 +2026-02-23 03:56:00,2026-02-23 05:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,107.01 +2026-03-05 22:18:00,2026-03-08 17:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,112.74 +2026-03-13 21:05:00,2026-03-14 00:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,220.7,0,107.69 +2026-03-30 20:55:00,2026-03-30 22:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,1,100.0 +2026-04-16 04:20:27,2026-04-16 04:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,6.7,0.147,Fanduel,POINTS_TOTAL,3.5,0,123.43 +2026-03-27 12:36:44,2026-03-27 13:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,3.5,0.193,Fanduel,POINTS_TOTAL,3.5,0,112.82 +2026-02-25 06:36:00,2026-02-27 10:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,132.25 +2026-03-12 20:28:00,2026-03-14 08:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,112.37 +2026-03-12 06:07:00,2026-03-14 10:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,148.88 +2026-03-18 22:45:00,2026-03-20 01:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,118.69 +2026-04-03 20:55:00,2026-04-06 14:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,12.8,1,100.0 +2026-04-09 04:36:04,2026-04-09 05:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,3.5,0.356,BetMGM,POINTS_TOTAL,3.5,0,110.07 +2026-04-14 07:20:15,2026-04-14 06:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,31.9,0.857,BetMGM,POINTS_TOTAL,32.3,1,105.68 +2026-02-28 22:17:00,2026-03-01 14:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,109.63 +2026-02-24 11:17:32,2026-02-24 10:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,48.7,0.553,Fanduel,POINTS_TOTAL,52.8,0,109.25 +2026-02-26 15:18:00,2026-02-28 21:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-18 13:01:00,2026-03-19 23:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,133.64 +2026-03-20 01:12:00,2026-03-23 01:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,0,132.07 +2026-04-13 10:27:00,2026-04-14 17:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,166.14 +2026-04-02 13:30:00,2026-04-02 22:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,5.1,1,109.85 +2026-03-07 16:06:00,2026-03-10 13:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,120.28 +2026-04-01 15:14:55,2026-04-01 13:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,43.0,0.894,BetMGM,POINTS_TOTAL,45.6,0,100.0 +2026-02-23 17:17:00,2026-02-23 22:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.9,1,121.76 +2026-04-02 00:11:00,2026-04-03 18:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,1,127.82 +2026-04-17 23:07:12,2026-04-18 01:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,1.8,0.0,0.09,Fanduel,POINTS_SPREAD,1.5,0,122.08 +2026-03-16 10:09:00,2026-03-17 04:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,144.74 +2026-04-15 08:24:04,2026-04-15 09:00:00,NFL,Buffalo Bills,Baltimore Ravens,3.3,0.0,0.556,BetMGM,POINTS_SPREAD,1.1,1,100.0 +2026-02-22 20:40:25,2026-02-22 19:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.619,Fanduel,MONEYLINE,0.0,NA,139.32 +2026-04-09 21:51:12,2026-04-09 21:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.89,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-26 13:31:00,2026-02-27 11:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,121.1 +2026-02-25 05:10:34,2026-02-25 05:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,-2.5,0.0,0.781,BetMGM,POINTS_SPREAD,0.4,1,109.29 +2026-02-28 02:30:00,2026-03-02 12:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-19 08:50:00,2026-02-21 06:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,1,100.0 +2026-02-27 18:46:08,2026-02-27 18:00:00,NBA,Los Angeles Lakers,Miami Heat,-2.2,0.0,0.323,Fanduel,POINTS_SPREAD,0.6,0,100.0 +2026-03-27 22:02:00,2026-03-29 07:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,112.44 +2026-03-02 18:38:00,2026-03-03 23:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,102.93 +2026-04-02 23:42:00,2026-04-03 08:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,171.85 +2026-03-19 20:13:00,2026-03-20 07:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,1,117.96 +2026-04-07 23:25:00,2026-04-09 08:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,7.4,0,115.24 +2026-03-17 14:47:06,2026-03-17 14:00:00,NFL,Detroit Lions,Dallas Cowboys,1.6,0.0,0.845,Fanduel,POINTS_SPREAD,1.0,0,132.02 +2026-03-29 07:41:03,2026-03-29 09:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.067,BetMGM,MONEYLINE,0.0,NA,128.87 +2026-04-17 09:42:00,2026-04-20 05:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,231.0,0,113.76 +2026-04-13 13:27:30,2026-04-13 14:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.125,BetMGM,MONEYLINE,0.0,NA,133.53 +2026-04-14 22:51:00,2026-04-16 08:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,0,100.0 +2026-04-13 20:43:00,2026-04-14 20:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,43.8,0,100.0 +2026-04-06 18:35:00,2026-04-06 19:00:00,NHL,Toronto Maple Leafs,New York Rangers,1.7,0.0,0.5,Fanduel,POINTS_SPREAD,3.8,1,124.22 +2026-04-14 15:28:00,2026-04-14 21:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,44.3,1,110.48 +2026-02-25 20:56:00,2026-02-26 19:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,113.35 +2026-04-06 11:55:58,2026-04-06 11:00:00,NFL,Buffalo Bills,Philadelphia Eagles,1.3,0.0,0.711,BetMGM,POINTS_SPREAD,0.2,1,100.0 +2026-03-15 18:47:00,2026-03-18 11:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,1,109.72 +2026-03-15 11:17:00,2026-03-18 08:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-17 22:10:00,2026-04-17 22:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.4,0.0,0.55,BetMGM,POINTS_SPREAD,0.2,1,117.73 +2026-04-19 18:12:00,2026-04-20 08:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,0,100.0 +2026-03-30 09:00:51,2026-03-30 07:00:00,NBA,Los Angeles Lakers,Boston Celtics,-4.7,0.0,0.827,Fanduel,POINTS_SPREAD,0.1,0,100.0 +2026-03-20 04:00:00,2026-03-21 13:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.4,1,107.7 +2026-03-11 21:33:00,2026-03-13 21:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,46.5,0,117.71 +2026-02-28 17:56:00,2026-03-03 02:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,228.0,0,113.96 +2026-03-17 03:22:42,2026-03-17 05:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,1.4,0.0,0.215,BetMGM,POINTS_SPREAD,0.7,0,108.84 +2026-03-26 02:51:00,2026-03-28 15:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,214.7,0,120.31 +2026-04-06 09:23:00,2026-04-08 13:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,7.5,1,106.86 +2026-03-29 13:16:00,2026-03-30 16:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,161.01 +2026-03-05 22:44:36,2026-03-05 23:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.32,Fanduel,MONEYLINE,0.0,NA,107.1 +2026-02-21 16:04:00,2026-02-21 19:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,1,116.28 +2026-04-08 19:28:00,2026-04-09 00:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,0,118.04 +2026-02-21 14:57:27,2026-02-21 14:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.497,BetMGM,MONEYLINE,0.0,NA,178.56 +2026-02-21 12:51:46,2026-02-21 14:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.221,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-01 13:36:00,2026-04-03 21:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,57.8,1,104.97 +2026-03-04 08:16:19,2026-03-04 08:00:00,NBA,Boston Celtics,Milwaukee Bucks,5.2,0.0,0.374,BetMGM,POINTS_SPREAD,0.4,0,147.1 +2026-04-06 04:26:14,2026-04-06 06:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,7.5,0.0,0.118,BetMGM,POINTS_SPREAD,1.9,1,100.0 +2026-02-23 21:09:00,2026-02-24 19:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,145.1 +2026-03-28 16:51:14,2026-03-28 16:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,230.4,0.768,BetMGM,POINTS_TOTAL,237.0,0,100.0 +2026-03-04 03:02:00,2026-03-05 12:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,226.3,0,117.95 +2026-03-15 04:48:00,2026-03-17 20:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,137.93 +2026-03-30 12:58:00,2026-03-30 15:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,152.39 +2026-03-15 15:47:46,2026-03-15 17:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,8.8,0.371,Fanduel,POINTS_TOTAL,12.9,0,116.12 +2026-04-08 07:59:00,2026-04-08 21:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,220.5,1,100.0 +2026-03-29 15:13:00,2026-03-31 23:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,130.76 +2026-03-23 00:32:00,2026-03-24 17:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.5,1,125.11 +2026-02-23 20:43:00,2026-02-25 05:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,235.1,1,115.46 +2026-03-05 15:26:00,2026-03-08 06:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,109.04 +2026-03-05 15:39:00,2026-03-08 15:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,0,137.56 +2026-03-21 23:15:00,2026-03-22 17:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,162.37 +2026-03-14 02:25:15,2026-03-14 03:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.507,BetMGM,MONEYLINE,0.0,NA,155.02 +2026-03-21 22:41:07,2026-03-21 22:00:00,NFL,San Francisco 49ers,Miami Dolphins,2.8,0.0,0.634,BetMGM,POINTS_SPREAD,1.6,1,114.1 +2026-03-04 18:12:00,2026-03-06 19:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,114.56 +2026-03-21 16:21:00,2026-03-21 18:00:00,NHL,Vegas Golden Knights,New York Rangers,-0.5,0.0,0.15,BetMGM,POINTS_SPREAD,0.0,1,100.0 +2026-04-13 04:20:00,2026-04-15 21:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,40.1,0,135.69 +2026-03-17 04:33:00,2026-03-18 07:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,1,100.0 +2026-03-14 17:48:00,2026-03-15 08:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,9.7,1,121.08 +2026-03-23 17:05:31,2026-03-23 15:00:00,NBA,Los Angeles Lakers,Miami Heat,-0.6,0.0,0.764,Fanduel,POINTS_SPREAD,0.5,1,125.51 +2026-03-14 00:58:02,2026-03-14 00:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.328,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-03 12:45:24,2026-03-03 14:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.33,BetMGM,MONEYLINE,0.0,NA,155.2 +2026-02-27 20:36:37,2026-02-27 21:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.209,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-05 18:20:00,2026-04-08 10:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,102.54 +2026-03-13 10:04:00,2026-03-13 20:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,228.7,0,116.28 +2026-04-06 16:13:00,2026-04-07 15:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.3,1,102.21 +2026-03-26 04:05:00,2026-03-26 04:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,17.8,0.05,BetMGM,POINTS_TOTAL,17.4,0,104.85 +2026-03-01 15:04:00,2026-03-02 16:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,34.5,0,105.59 +2026-04-14 01:00:40,2026-04-14 01:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,11.5,0.376,Fanduel,POINTS_TOTAL,11.7,0,116.83 +2026-02-23 23:20:00,2026-02-26 04:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.78 +2026-03-02 04:44:00,2026-03-04 16:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,21.0,0,112.28 +2026-03-28 06:58:00,2026-03-31 06:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,48.3,0,128.81 +2026-04-12 00:45:00,2026-04-12 17:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,0,100.0 +2026-04-20 03:22:33,2026-04-20 03:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,21.5,0.642,BetMGM,POINTS_TOTAL,24.0,0,100.0 +2026-03-03 18:00:13,2026-03-03 16:00:00,NBA,Miami Heat,Phoenix Suns,-5.0,0.0,0.729,BetMGM,POINTS_SPREAD,6.4,0,119.29 +2026-02-20 21:31:49,2026-02-20 20:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.799,BetMGM,MONEYLINE,0.0,NA,120.95 +2026-04-02 06:26:00,2026-04-04 07:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.6,1,100.0 +2026-03-06 00:05:16,2026-03-06 00:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,9.2,0.046,Fanduel,POINTS_TOTAL,6.0,0,114.03 +2026-03-13 22:54:00,2026-03-15 02:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,1,110.61 +2026-04-11 11:07:03,2026-04-11 10:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.517,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-29 21:49:00,2026-04-01 05:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,1,140.11 +2026-03-09 17:03:08,2026-03-09 16:00:00,NBA,Golden State Warriors,Phoenix Suns,-0.2,0.0,0.923,BetMGM,POINTS_SPREAD,2.9,1,100.0 +2026-04-05 13:37:00,2026-04-07 03:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,0,126.99 +2026-02-23 21:04:00,2026-02-24 11:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,144.57 +2026-03-20 20:56:00,2026-03-21 03:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,1,118.74 +2026-03-04 16:06:00,2026-03-06 11:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,1,113.84 +2026-03-19 17:38:00,2026-03-19 18:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-25 17:27:00,2026-03-25 22:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,119.62 +2026-03-19 17:27:00,2026-03-21 02:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,165.79 +2026-03-01 00:25:00,2026-03-01 08:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-21 10:37:36,2026-03-21 11:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.42,Fanduel,MONEYLINE,0.0,NA,105.65 +2026-03-04 10:00:19,2026-03-04 10:00:00,NFL,Miami Dolphins,Kansas City Chiefs,1.8,0.0,0.474,BetMGM,POINTS_SPREAD,2.2,1,100.0 +2026-04-19 01:33:00,2026-04-19 09:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,1,100.0 +2026-03-19 01:25:00,2026-03-20 07:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,1,128.85 +2026-03-29 03:49:00,2026-03-30 22:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,1,135.99 +2026-03-13 03:05:00,2026-03-15 02:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,58.7,1,114.82 +2026-04-10 19:41:00,2026-04-13 16:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,1,114.25 +2026-04-05 18:10:49,2026-04-05 17:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.899,Fanduel,MONEYLINE,0.0,NA,136.8 +2026-02-19 09:11:00,2026-02-21 17:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,120.13 +2026-02-27 22:39:00,2026-03-02 00:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,38.5,0,122.33 +2026-03-01 13:06:34,2026-03-01 11:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.831,Fanduel,MONEYLINE,0.0,NA,105.62 +2026-03-29 03:49:46,2026-03-29 02:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.621,Fanduel,POINTS_SPREAD,2.5,0,100.0 +2026-02-23 08:42:00,2026-02-23 11:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,1,125.99 +2026-04-15 10:55:00,2026-04-15 11:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,1,100.0 +2026-04-13 09:24:00,2026-04-13 17:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,235.7,0,112.42 +2026-03-26 14:43:00,2026-03-28 10:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,123.64 +2026-04-10 05:21:00,2026-04-12 04:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,0,115.78 +2026-03-22 17:31:00,2026-03-25 17:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,1,136.35 +2026-04-06 09:32:00,2026-04-08 16:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,45.6,0,112.2 +2026-03-21 06:15:00,2026-03-24 05:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,137.96 +2026-03-04 21:44:15,2026-03-04 23:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.057,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-15 04:46:21,2026-04-15 05:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.102,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-06 10:48:00,2026-04-07 07:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.4,0,120.09 +2026-03-18 13:51:00,2026-03-19 12:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,8.0,1,114.4 +2026-03-10 21:07:00,2026-03-13 20:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,0,100.0 +2026-04-18 13:03:03,2026-04-18 12:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,35.8,0.467,Fanduel,POINTS_TOTAL,37.7,1,100.0 +2026-03-21 17:08:00,2026-03-22 11:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,146.73 +2026-03-28 08:56:42,2026-03-28 07:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.7,0.0,0.715,Fanduel,POINTS_SPREAD,0.5,0,100.0 +2026-02-26 23:02:00,2026-03-01 02:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,101.78 +2026-04-06 03:48:43,2026-04-06 03:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.354,BetMGM,MONEYLINE,0.0,NA,112.58 +2026-03-19 19:12:01,2026-03-19 19:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.2,0.0,0.089,Fanduel,POINTS_SPREAD,3.4,0,121.97 +2026-03-09 06:31:39,2026-03-09 05:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,46.4,0.837,Fanduel,POINTS_TOTAL,46.4,1,109.79 +2026-02-27 06:06:00,2026-02-27 15:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,43.9,1,100.0 +2026-04-10 02:02:00,2026-04-12 09:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,0,100.0 +2026-02-20 11:03:00,2026-02-21 02:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,0,100.43 +2026-03-18 00:13:02,2026-03-18 00:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,215.8,0.428,Fanduel,POINTS_TOTAL,213.9,1,112.17 +2026-03-26 21:50:12,2026-03-26 22:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,-3.4,0.0,0.54,Fanduel,POINTS_SPREAD,0.2,1,100.66 +2026-03-24 14:27:00,2026-03-27 07:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,227.3,1,116.05 +2026-04-11 15:06:46,2026-04-11 17:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.121,Fanduel,MONEYLINE,0.0,NA,111.28 +2026-03-18 17:51:00,2026-03-20 19:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,176.56 +2026-04-15 05:44:09,2026-04-15 05:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.862,BetMGM,MONEYLINE,0.0,NA,118.31 +2026-04-06 15:20:30,2026-04-06 17:00:00,NHL,New York Rangers,Boston Bruins,0.0,3.5,0.225,BetMGM,POINTS_TOTAL,3.5,0,100.0 +2026-04-14 10:31:25,2026-04-14 10:00:00,NHL,Carolina Hurricanes,Boston Bruins,4.6,0.0,0.519,Fanduel,POINTS_SPREAD,2.1,1,100.0 +2026-04-01 03:09:31,2026-04-01 05:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.064,Fanduel,MONEYLINE,0.0,NA,110.67 +2026-04-04 05:17:00,2026-04-06 23:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,236.1,1,101.06 +2026-03-06 07:23:00,2026-03-07 16:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,124.04 +2026-03-05 06:26:18,2026-03-05 05:00:00,NFL,Detroit Lions,Kansas City Chiefs,1.0,0.0,0.485,Fanduel,POINTS_SPREAD,1.3,1,116.69 +2026-04-12 15:55:24,2026-04-12 14:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.78,BetMGM,MONEYLINE,0.0,NA,100.59 +2026-03-10 06:25:00,2026-03-12 02:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,100.0 +2026-03-18 11:29:55,2026-03-18 12:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.094,Fanduel,MONEYLINE,0.0,NA,115.45 +2026-04-13 21:36:00,2026-04-15 12:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,125.81 +2026-04-09 17:56:34,2026-04-09 16:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,2.9,0.0,0.681,BetMGM,POINTS_SPREAD,3.6,1,100.0 +2026-03-29 23:52:00,2026-03-31 14:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,100.0 +2026-04-01 09:20:00,2026-04-04 08:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,1,100.0 +2026-02-28 06:28:00,2026-03-03 01:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,105.77 +2026-04-04 04:02:00,2026-04-07 00:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,43.1,0,125.21 +2026-03-15 05:10:00,2026-03-18 02:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,102.57 +2026-04-08 15:04:00,2026-04-09 12:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,230.8,1,105.88 +2026-02-19 01:31:00,2026-02-20 22:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,182.56 +2026-03-10 14:10:00,2026-03-13 14:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,171.12 +2026-02-24 07:20:00,2026-02-25 06:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,142.53 +2026-03-17 08:33:00,2026-03-18 11:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,172.27 +2026-04-01 13:03:00,2026-04-04 09:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,146.78 +2026-03-26 17:24:00,2026-03-27 08:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,221.2,1,106.8 +2026-03-25 08:31:00,2026-03-28 04:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,250.4,1,129.5 +2026-04-10 12:45:52,2026-04-10 12:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.666,BetMGM,MONEYLINE,0.0,NA,164.62 +2026-03-25 06:52:00,2026-03-26 01:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,14.5,1,108.59 +2026-03-12 00:50:00,2026-03-12 10:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-13 19:50:00,2026-04-13 21:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,231.4,1,100.0 +2026-04-07 05:34:00,2026-04-08 04:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.2,0,100.0 +2026-02-26 22:22:00,2026-03-01 03:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,0,121.31 +2026-02-23 05:32:00,2026-02-24 03:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,105.06 +2026-04-09 17:56:55,2026-04-09 19:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,3.0,0.0,0.044,Fanduel,POINTS_SPREAD,1.6,0,111.46 +2026-03-29 06:30:27,2026-03-29 06:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.547,BetMGM,MONEYLINE,0.0,NA,111.91 +2026-04-14 00:39:00,2026-04-14 20:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.3,0,114.56 +2026-03-08 05:56:00,2026-03-09 14:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,12.5,1,111.15 +2026-03-13 10:29:46,2026-03-13 08:00:00,NFL,San Francisco 49ers,Detroit Lions,-2.2,0.0,0.921,BetMGM,POINTS_SPREAD,0.9,0,100.0 +2026-02-24 20:58:00,2026-02-27 08:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,0,138.22 +2026-02-22 18:32:00,2026-02-24 06:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-02 08:45:28,2026-03-02 09:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.136,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-23 04:21:20,2026-02-23 04:00:00,NHL,Boston Bruins,Vegas Golden Knights,-4.9,0.0,0.163,Fanduel,POINTS_SPREAD,2.1,0,100.0 +2026-03-12 05:51:00,2026-03-15 05:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,1,104.37 +2026-04-13 10:51:00,2026-04-13 12:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,241.4,1,122.93 +2026-03-16 09:29:00,2026-03-19 01:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,121.57 +2026-04-11 02:20:00,2026-04-12 12:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,111.4 +2026-04-17 05:01:43,2026-04-17 05:00:00,NHL,Colorado Avalanche,Edmonton Oilers,-0.2,0.0,0.754,Fanduel,POINTS_SPREAD,0.9,1,115.78 +2026-04-04 00:27:00,2026-04-05 07:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,46.1,0,100.0 +2026-04-06 08:20:00,2026-04-07 07:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,221.2,0,100.0 +2026-04-04 12:03:27,2026-04-04 12:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.147,BetMGM,MONEYLINE,0.0,NA,120.46 +2026-03-23 13:46:00,2026-03-26 13:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,122.59 +2026-04-06 19:18:34,2026-04-06 19:00:00,NHL,Colorado Avalanche,Florida Panthers,-0.9,0.0,0.431,BetMGM,POINTS_SPREAD,1.1,1,100.0 +2026-03-23 10:24:00,2026-03-26 06:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.6,1,100.0 +2026-04-18 15:40:00,2026-04-20 21:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.0,0,169.31 +2026-03-03 10:50:44,2026-03-03 09:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.743,Fanduel,MONEYLINE,0.0,NA,134.46 +2026-03-22 05:11:00,2026-03-22 15:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,134.31 +2026-04-05 16:49:00,2026-04-05 23:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,147.0 +2026-04-01 16:22:07,2026-04-01 16:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,-6.2,0.0,0.584,Fanduel,POINTS_SPREAD,1.2,1,142.92 +2026-03-30 03:24:00,2026-04-01 04:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,227.4,1,100.0 +2026-03-20 09:29:40,2026-03-20 08:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,224.4,0.876,Fanduel,POINTS_TOTAL,224.5,0,100.54 +2026-04-16 04:45:00,2026-04-17 10:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,36.1,1,102.41 +2026-03-19 13:31:00,2026-03-21 04:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,100.0 +2026-03-20 12:12:00,2026-03-21 20:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,43.0,0,100.0 +2026-03-27 04:12:48,2026-03-27 06:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,55.5,0.06,BetMGM,POINTS_TOTAL,55.1,1,102.65 +2026-04-13 02:10:00,2026-04-14 12:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,218.6,1,122.21 +2026-04-07 03:53:00,2026-04-08 21:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.9,1,132.71 +2026-04-18 00:29:00,2026-04-20 11:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,0,133.65 +2026-04-20 01:51:00,2026-04-21 10:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,157.08 +2026-02-20 01:13:00,2026-02-22 12:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,230.1,1,114.24 +2026-03-14 00:50:21,2026-03-14 02:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.302,Fanduel,MONEYLINE,0.0,NA,163.43 +2026-03-14 15:24:55,2026-03-14 15:00:00,NBA,Golden State Warriors,Los Angeles Lakers,-3.6,0.0,0.844,Fanduel,POINTS_SPREAD,1.1,1,141.3 +2026-03-26 04:46:04,2026-03-26 04:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.906,BetMGM,MONEYLINE,0.0,NA,118.37 +2026-03-15 19:49:00,2026-03-18 06:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.5,1,101.81 +2026-04-09 07:08:00,2026-04-10 11:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,143.49 +2026-02-28 21:04:00,2026-03-03 08:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,165.65 +2026-03-16 06:26:00,2026-03-16 08:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.8,0,100.0 +2026-03-05 23:56:00,2026-03-08 22:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,1,100.0 +2026-04-14 22:12:00,2026-04-16 04:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,33.3,1,121.9 +2026-03-28 18:28:00,2026-03-30 20:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,104.88 +2026-03-14 03:15:00,2026-03-15 20:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-25 02:07:00,2026-02-28 01:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,140.58 +2026-03-06 14:59:00,2026-03-07 17:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-31 00:38:00,2026-04-01 19:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,0,100.0 +2026-04-12 06:46:00,2026-04-13 19:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,219.7,0,125.08 +2026-04-02 21:25:15,2026-04-02 21:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.2,0.0,0.607,BetMGM,POINTS_SPREAD,4.0,1,126.63 +2026-03-16 21:05:34,2026-03-16 22:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,23.2,0.081,Fanduel,POINTS_TOTAL,27.1,1,121.02 +2026-03-05 14:16:00,2026-03-08 05:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,122.13 +2026-03-08 12:18:33,2026-03-08 12:00:00,NBA,Milwaukee Bucks,Denver Nuggets,1.9,0.0,0.792,BetMGM,POINTS_SPREAD,2.9,1,100.0 +2026-04-16 22:56:00,2026-04-17 17:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,1,100.0 +2026-04-03 13:30:00,2026-04-05 21:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.1,1,131.42 +2026-03-13 09:27:43,2026-03-13 09:00:00,NHL,Colorado Avalanche,Edmonton Oilers,-2.5,0.0,0.604,BetMGM,POINTS_SPREAD,0.5,0,100.0 +2026-02-19 13:32:00,2026-02-22 01:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,149.09 +2026-03-03 19:43:00,2026-03-04 18:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,114.99 +2026-04-17 21:21:00,2026-04-18 13:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.0,0,115.24 +2026-03-31 16:55:00,2026-04-03 10:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,122.95 +2026-03-31 05:25:00,2026-04-03 01:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-26 05:41:00,2026-02-27 02:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,11.3,0,113.34 +2026-02-22 17:44:00,2026-02-24 15:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,0,121.13 +2026-04-01 20:47:49,2026-04-01 19:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.799,Fanduel,MONEYLINE,0.0,NA,121.95 +2026-03-04 15:26:51,2026-03-04 13:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,-1.1,0.0,0.927,BetMGM,POINTS_SPREAD,2.8,1,118.88 +2026-03-04 11:48:07,2026-03-04 12:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.534,BetMGM,MONEYLINE,0.0,NA,113.24 +2026-03-08 06:45:52,2026-03-08 07:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,45.2,0.166,BetMGM,POINTS_TOTAL,49.5,1,117.7 +2026-03-15 00:35:00,2026-03-15 19:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,0,107.28 +2026-04-17 13:20:00,2026-04-18 23:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-12 19:11:00,2026-03-13 05:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.7,1,100.0 +2026-03-05 18:29:00,2026-03-05 23:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,129.02 +2026-03-11 09:12:43,2026-03-11 11:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.104,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-22 01:54:00,2026-02-23 13:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,1,104.27 +2026-03-05 15:59:00,2026-03-05 18:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,1,109.62 +2026-03-16 09:05:00,2026-03-18 10:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,5.8,1,118.6 +2026-03-28 17:29:00,2026-03-29 17:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,38.6,0,104.42 +2026-03-26 06:20:00,2026-03-28 11:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,56.5,0,100.0 +2026-04-05 23:20:00,2026-04-06 14:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.4,1,135.84 +2026-03-02 14:15:00,2026-03-05 14:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,222.1,0,102.73 +2026-04-03 03:25:42,2026-04-03 03:00:00,NBA,Denver Nuggets,Dallas Mavericks,5.4,0.0,0.315,BetMGM,POINTS_SPREAD,0.3,1,100.0 +2026-04-07 16:42:54,2026-04-07 16:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,230.0,0.655,BetMGM,POINTS_TOTAL,228.9,0,114.68 +2026-03-10 20:27:27,2026-03-10 20:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.897,Fanduel,MONEYLINE,0.0,NA,160.55 +2026-03-01 17:38:00,2026-03-03 01:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.6,1,117.52 +2026-03-03 04:15:01,2026-03-03 03:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.789,BetMGM,MONEYLINE,0.0,NA,121.39 +2026-03-29 13:47:00,2026-03-31 00:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,11.0,1,105.27 +2026-03-28 22:18:00,2026-03-29 09:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,16.2,0,118.32 +2026-02-22 20:12:00,2026-02-24 13:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-24 08:35:00,2026-03-24 18:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.0,0,129.28 +2026-04-21 08:14:40,2026-04-21 07:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,3.5,0.676,Fanduel,POINTS_TOTAL,3.5,0,119.02 +2026-02-25 00:06:00,2026-02-25 18:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,219.1,0,117.8 +2026-03-26 22:29:00,2026-03-28 10:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,33.8,0,131.61 +2026-03-07 07:54:00,2026-03-09 14:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,13.5,0,104.07 +2026-04-19 09:33:57,2026-04-19 10:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.522,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-03 21:19:00,2026-03-06 01:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,106.19 +2026-04-15 09:25:34,2026-04-15 10:00:00,NHL,Florida Panthers,Vegas Golden Knights,1.7,0.0,0.081,BetMGM,POINTS_SPREAD,2.5,1,100.0 +2026-03-08 17:24:22,2026-03-08 18:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,24.0,0.091,Fanduel,POINTS_TOTAL,27.7,1,119.92 +2026-04-14 01:41:00,2026-04-14 22:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,32.9,1,105.74 +2026-02-23 04:08:00,2026-02-26 02:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.9,0,113.04 +2026-04-16 08:30:57,2026-04-16 07:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,-2.2,0.0,0.622,BetMGM,POINTS_SPREAD,0.8,0,100.0 +2026-03-18 03:54:07,2026-03-18 04:00:00,NFL,San Francisco 49ers,Miami Dolphins,4.8,0.0,0.184,Fanduel,POINTS_SPREAD,2.9,0,138.05 +2026-04-03 05:05:00,2026-04-06 01:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-08 03:12:00,2026-04-09 18:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,100.0 +2026-03-21 00:38:00,2026-03-21 19:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,5.4,0,110.16 +2026-02-26 01:31:00,2026-02-28 05:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,145.81 +2026-04-06 19:08:00,2026-04-07 22:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.4,1,123.14 +2026-03-31 09:31:00,2026-03-31 13:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,52.9,1,122.51 +2026-03-19 11:17:34,2026-03-19 11:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.231,BetMGM,MONEYLINE,0.0,NA,153.11 +2026-02-27 09:23:02,2026-02-27 09:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.778,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-18 19:36:27,2026-04-18 20:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,2.4,0.0,0.447,Fanduel,POINTS_SPREAD,2.1,0,134.52 +2026-04-15 16:53:25,2026-04-15 15:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,8.2,0.819,Fanduel,POINTS_TOTAL,9.8,1,107.33 +2026-02-21 09:56:08,2026-02-21 10:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,11.7,0.723,Fanduel,POINTS_TOTAL,14.5,0,103.52 +2026-03-24 20:37:21,2026-03-24 21:00:00,NBA,Boston Celtics,Denver Nuggets,-2.1,0.0,0.052,Fanduel,POINTS_SPREAD,1.6,1,142.96 +2026-03-11 16:15:00,2026-03-11 20:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,136.42 +2026-03-20 16:06:00,2026-03-21 10:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,1,100.0 +2026-04-16 09:30:00,2026-04-17 18:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,107.54 +2026-04-18 08:53:00,2026-04-20 13:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,120.6 +2026-04-05 10:39:00,2026-04-07 06:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,139.93 +2026-03-11 01:57:46,2026-03-11 03:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.171,Fanduel,MONEYLINE,0.0,NA,170.76 +2026-03-14 19:43:00,2026-03-15 16:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.9,1,102.59 +2026-03-11 04:59:00,2026-03-11 13:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,104.98 +2026-03-18 09:32:00,2026-03-19 14:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,122.09 +2026-04-13 03:30:00,2026-04-13 11:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,47.2,0,105.96 +2026-04-08 17:36:58,2026-04-08 18:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.211,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-29 02:48:00,2026-04-01 02:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.3,1,103.09 +2026-04-18 17:06:00,2026-04-21 08:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,0,100.0 +2026-04-03 22:20:00,2026-04-06 07:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.0,0,100.0 +2026-03-13 13:10:08,2026-03-13 13:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.673,BetMGM,MONEYLINE,0.0,NA,146.83 +2026-03-14 17:26:00,2026-03-15 18:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.2,0,100.0 +2026-04-14 21:49:00,2026-04-16 23:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,124.89 +2026-03-25 20:15:00,2026-03-27 00:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,157.28 +2026-04-05 16:09:00,2026-04-08 14:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,162.45 +2026-03-03 02:10:44,2026-03-03 02:00:00,NFL,Baltimore Ravens,Detroit Lions,-0.7,0.0,0.793,Fanduel,POINTS_SPREAD,1.9,1,121.24 +2026-03-12 01:42:25,2026-03-12 03:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.219,Fanduel,MONEYLINE,0.0,NA,107.07 +2026-02-23 01:50:00,2026-02-23 14:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,149.83 +2026-04-07 10:05:00,2026-04-09 20:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,109.41 +2026-02-21 19:57:04,2026-02-21 20:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.106,BetMGM,MONEYLINE,0.0,NA,125.96 +2026-04-07 01:46:00,2026-04-08 15:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,160.9 +2026-04-13 06:59:00,2026-04-13 18:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,0,121.09 +2026-04-16 03:23:00,2026-04-16 04:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,41.4,0.55,BetMGM,POINTS_TOTAL,38.4,1,118.62 +2026-03-30 04:57:00,2026-03-30 19:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,50.7,1,113.03 +2026-02-26 07:30:00,2026-02-27 00:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,0,108.41 +2026-03-16 20:49:01,2026-03-16 23:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,-4.8,0.0,0.039,BetMGM,POINTS_SPREAD,0.9,1,140.14 +2026-03-13 05:08:45,2026-03-13 03:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.932,Fanduel,MONEYLINE,0.0,NA,105.21 +2026-03-12 14:13:00,2026-03-15 06:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,114.59 +2026-04-11 04:10:00,2026-04-13 13:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,116.56 +2026-03-28 07:10:33,2026-03-28 07:00:00,NFL,Detroit Lions,Buffalo Bills,-1.2,0.0,0.192,BetMGM,POINTS_SPREAD,3.1,0,110.8 +2026-04-15 14:12:04,2026-04-15 13:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,23.0,0.956,Fanduel,POINTS_TOTAL,22.7,0,118.01 +2026-03-21 08:03:00,2026-03-23 14:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,162.32 +2026-03-02 00:12:52,2026-03-02 01:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,49.3,0.366,Fanduel,POINTS_TOTAL,57.8,0,102.22 +2026-04-09 22:53:00,2026-04-10 00:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,1,100.01 +2026-03-15 02:35:00,2026-03-15 07:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,1,100.0 +2026-03-10 23:08:27,2026-03-10 21:00:00,NBA,Denver Nuggets,Los Angeles Lakers,3.5,0.0,0.747,BetMGM,POINTS_SPREAD,2.0,0,131.18 +2026-04-10 19:16:00,2026-04-11 05:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,0,123.44 +2026-04-19 01:06:00,2026-04-21 03:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.6,0,100.0 +2026-04-07 12:12:00,2026-04-10 09:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,61.4,1,117.95 +2026-03-29 16:07:00,2026-03-30 22:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,0,100.0 +2026-04-18 02:14:00,2026-04-20 09:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.8,0,100.0 +2026-03-23 12:03:00,2026-03-25 00:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,156.47 +2026-02-22 04:31:00,2026-02-22 06:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,175.75 +2026-03-06 11:41:00,2026-03-08 08:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.7,0,111.54 +2026-04-18 15:06:25,2026-04-18 15:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.469,BetMGM,MONEYLINE,0.0,NA,116.97 +2026-03-21 21:30:04,2026-03-21 21:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.206,BetMGM,MONEYLINE,0.0,NA,161.57 +2026-03-03 10:23:00,2026-03-06 01:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,118.34 +2026-03-11 14:23:27,2026-03-11 13:00:00,NBA,Miami Heat,Phoenix Suns,3.4,0.0,0.647,Fanduel,POINTS_SPREAD,1.3,1,105.65 +2026-02-23 08:03:00,2026-02-23 10:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,129.32 +2026-03-10 17:05:00,2026-03-12 16:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,0,100.0 +2026-03-17 13:14:00,2026-03-18 03:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,0,110.05 +2026-03-28 09:17:00,2026-03-29 22:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,223.0,1,115.59 +2026-03-25 16:56:00,2026-03-27 02:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-10 05:22:00,2026-04-10 13:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,6.2,0,102.91 +2026-03-31 17:44:32,2026-03-31 19:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.053,Fanduel,MONEYLINE,0.0,NA,151.63 +2026-03-20 00:41:00,2026-03-22 04:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,224.9,1,103.77 +2026-03-01 09:24:00,2026-03-02 11:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,212.2,1,115.8 +2026-04-09 22:41:00,2026-04-11 16:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,0,113.6 +2026-02-28 11:30:00,2026-03-02 15:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.9,0,111.4 +2026-03-09 23:07:00,2026-03-12 07:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.3,1,124.04 +2026-03-03 19:42:15,2026-03-03 18:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,237.2,0.907,Fanduel,POINTS_TOTAL,239.5,0,117.99 +2026-03-27 14:41:00,2026-03-28 05:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,1,119.84 +2026-02-20 17:27:14,2026-02-20 17:00:00,NHL,New York Rangers,Florida Panthers,-1.5,0.0,0.368,BetMGM,POINTS_SPREAD,0.8,0,100.0 +2026-02-24 19:21:00,2026-02-26 14:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,229.4,0,104.67 +2026-04-18 16:41:00,2026-04-19 13:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.9,1,108.21 +2026-03-12 15:49:00,2026-03-12 21:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,28.7,0,105.62 +2026-03-18 16:16:00,2026-03-18 23:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.8,1,112.29 +2026-03-02 03:39:24,2026-03-02 02:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.88,BetMGM,MONEYLINE,0.0,NA,188.22 +2026-03-16 02:57:31,2026-03-16 02:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,25.7,0.914,BetMGM,POINTS_TOTAL,28.3,0,110.88 +2026-03-24 22:16:22,2026-03-24 22:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,232.3,0.591,BetMGM,POINTS_TOTAL,228.3,1,107.83 +2026-03-23 14:56:00,2026-03-25 23:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-04 06:54:00,2026-03-04 14:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,68.0,1,131.73 +2026-03-22 17:17:00,2026-03-22 21:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-10 01:19:00,2026-04-12 02:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,1,100.0 +2026-03-31 06:17:57,2026-03-31 05:00:00,NBA,Phoenix Suns,Golden State Warriors,1.9,0.0,0.872,Fanduel,POINTS_SPREAD,3.6,1,119.97 +2026-04-11 23:49:00,2026-04-13 05:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-29 16:06:00,2026-04-01 06:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,0,100.0 +2026-03-19 13:23:00,2026-03-20 17:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,215.0,1,100.0 +2026-03-20 18:43:31,2026-03-20 18:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,12.0,0.814,BetMGM,POINTS_TOTAL,11.0,1,105.88 +2026-03-25 10:51:00,2026-03-25 11:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.0,1,144.85 +2026-03-28 20:37:00,2026-03-29 05:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,230.9,1,132.92 +2026-03-09 22:41:00,2026-03-11 22:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,144.41 +2026-03-23 01:27:00,2026-03-23 12:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,15.2,1,128.02 +2026-04-01 23:29:00,2026-04-02 04:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,1,100.0 +2026-04-19 03:54:00,2026-04-20 22:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,0,128.32 +2026-04-15 02:01:00,2026-04-17 20:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,5.2,1,110.79 +2026-02-22 15:29:00,2026-02-23 19:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,1,100.0 +2026-03-15 03:19:00,2026-03-17 08:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,0,126.36 +2026-02-25 01:23:00,2026-02-28 00:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,1,133.1 +2026-02-22 13:57:00,2026-02-24 12:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,146.52 +2026-04-07 16:27:00,2026-04-08 05:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.1,1,106.74 +2026-03-08 06:57:54,2026-03-08 09:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.055,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-07 19:28:00,2026-04-08 21:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,155.22 +2026-04-09 15:26:00,2026-04-12 07:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,234.6,1,107.02 +2026-03-08 04:03:00,2026-03-08 23:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,0,107.09 +2026-02-24 07:19:00,2026-02-24 19:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,213.2,1,148.9 +2026-03-04 05:33:00,2026-03-06 18:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,1,100.0 +2026-03-14 02:49:00,2026-03-15 15:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,0,103.94 +2026-03-18 02:28:03,2026-03-18 02:00:00,NBA,Dallas Mavericks,Boston Celtics,-2.0,0.0,0.717,Fanduel,POINTS_SPREAD,0.0,1,137.13 +2026-04-20 17:19:02,2026-04-20 17:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.578,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-29 00:39:00,2026-03-30 07:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.9,0,100.0 +2026-03-21 20:38:00,2026-03-22 02:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,0,107.99 +2026-04-13 00:38:00,2026-04-15 05:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,169.99 +2026-04-19 18:26:00,2026-04-21 10:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,126.23 +2026-03-08 19:14:00,2026-03-11 06:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,109.7 +2026-04-01 07:36:00,2026-04-02 23:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,231.2,0,124.85 +2026-03-17 12:57:00,2026-03-20 12:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,227.7,0,100.0 +2026-03-12 11:39:00,2026-03-12 23:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,102.3 +2026-04-16 19:22:00,2026-04-17 05:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-10 16:14:00,2026-04-12 22:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,161.73 +2026-03-04 14:36:25,2026-03-04 14:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.519,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-31 09:36:00,2026-03-31 22:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.9,1,100.0 +2026-03-03 14:24:00,2026-03-05 13:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,1,124.78 +2026-03-26 02:52:57,2026-03-26 03:00:00,NFL,Detroit Lions,San Francisco 49ers,0.5,0.0,0.072,BetMGM,POINTS_SPREAD,0.5,0,120.63 +2026-04-01 23:55:00,2026-04-03 20:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,135.56 +2026-04-04 21:40:00,2026-04-05 07:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,137.67 +2026-04-05 07:39:00,2026-04-06 02:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,131.49 +2026-04-11 18:53:00,2026-04-13 05:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,222.0,0,100.0 +2026-03-01 02:25:00,2026-03-02 06:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,188.44 +2026-04-02 22:51:00,2026-04-03 19:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,210.2,1,100.0 +2026-03-10 14:30:00,2026-03-10 17:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,5.8,1,115.66 +2026-03-14 05:37:37,2026-03-14 03:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,40.4,0.909,Fanduel,POINTS_TOTAL,36.7,0,112.66 +2026-04-14 09:35:00,2026-04-14 21:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,227.8,0,120.85 +2026-02-19 17:42:00,2026-02-20 22:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,105.4 +2026-03-26 22:37:00,2026-03-29 20:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,143.08 +2026-04-03 02:32:00,2026-04-04 01:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,1,128.15 +2026-03-29 01:43:00,2026-03-30 07:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,19.4,0,106.0 +2026-04-02 06:01:30,2026-04-02 07:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,33.4,0.425,Fanduel,POINTS_TOTAL,35.1,0,118.67 +2026-02-28 13:04:00,2026-03-02 06:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,0,100.0 +2026-02-27 09:36:00,2026-03-01 19:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,0,122.04 +2026-03-20 21:02:00,2026-03-20 22:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,1,100.0 +2026-03-30 13:14:00,2026-04-01 12:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,0,100.0 +2026-03-09 22:44:00,2026-03-10 16:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,229.0,0,119.7 +2026-04-14 23:50:00,2026-04-16 03:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,130.2 +2026-02-25 02:58:00,2026-02-26 09:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,1,100.0 +2026-03-23 12:52:00,2026-03-25 12:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,115.83 +2026-03-07 08:19:27,2026-03-07 10:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,58.1,0.097,Fanduel,POINTS_TOTAL,56.3,1,105.39 +2026-03-05 18:30:00,2026-03-08 06:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,0,129.31 +2026-02-21 17:41:00,2026-02-21 18:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.4,Fanduel,MONEYLINE,0.0,NA,123.99 +2026-03-13 02:30:38,2026-03-13 02:00:00,NBA,Denver Nuggets,Miami Heat,3.9,0.0,0.698,Fanduel,POINTS_SPREAD,5.4,0,100.0 +2026-03-11 05:56:00,2026-03-11 14:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.0,0,100.0 +2026-02-26 20:17:00,2026-03-01 06:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,171.09 +2026-04-11 03:13:00,2026-04-12 18:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,0,113.15 +2026-03-09 21:02:00,2026-03-12 06:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,152.2 +2026-04-18 12:04:00,2026-04-21 03:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,5.9,0,100.0 +2026-04-03 17:05:00,2026-04-05 17:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,0,100.0 +2026-04-10 00:20:00,2026-04-12 06:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,6.3,0,101.33 +2026-03-18 08:07:00,2026-03-20 15:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,0,100.0 +2026-03-17 05:37:00,2026-03-19 12:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,1,100.0 +2026-02-18 21:32:00,2026-02-20 22:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-03 03:22:00,2026-03-04 10:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,7.8,1,100.0 +2026-03-28 04:52:00,2026-03-30 11:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,136.56 +2026-03-12 16:10:00,2026-03-14 08:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,152.91 +2026-02-22 09:56:15,2026-02-22 09:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.757,BetMGM,MONEYLINE,0.0,NA,135.88 +2026-04-13 17:07:00,2026-04-15 14:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,131.37 +2026-04-11 05:18:00,2026-04-13 03:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,1,100.0 +2026-04-04 08:01:00,2026-04-06 14:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,60.0,1,108.53 +2026-04-05 09:40:00,2026-04-06 01:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,101.86 +2026-03-24 14:43:00,2026-03-26 21:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,49.0,0,107.0 +2026-04-18 22:05:00,2026-04-19 06:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.0,0,103.31 +2026-03-08 11:52:50,2026-03-08 12:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.588,BetMGM,MONEYLINE,0.0,NA,111.24 +2026-03-24 06:53:00,2026-03-26 00:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,123.35 +2026-03-18 02:17:00,2026-03-18 04:00:00,NBA,Boston Celtics,Golden State Warriors,7.6,0.0,0.15,BetMGM,POINTS_SPREAD,1.9,0,132.49 +2026-02-27 23:18:45,2026-02-27 21:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,48.8,0.932,BetMGM,POINTS_TOTAL,54.1,1,128.91 +2026-03-18 16:26:15,2026-03-18 15:00:00,NFL,Dallas Cowboys,Detroit Lions,0.3,0.0,0.507,BetMGM,POINTS_SPREAD,0.2,1,107.21 +2026-03-26 19:55:49,2026-03-26 21:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.199,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-18 22:32:00,2026-02-21 10:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,118.21 +2026-03-11 20:21:00,2026-03-12 19:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.5,0,100.0 +2026-04-12 16:37:27,2026-04-12 15:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,55.9,0.947,BetMGM,POINTS_TOTAL,52.0,0,111.28 +2026-03-17 14:12:00,2026-03-19 21:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,0,123.59 +2026-04-02 02:11:00,2026-04-02 09:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,0,102.56 +2026-03-07 11:06:00,2026-03-08 18:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,223.6,1,100.0 +2026-04-10 09:22:00,2026-04-12 10:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,223.7,0,107.72 +2026-04-21 10:25:16,2026-04-21 11:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,43.4,0.346,BetMGM,POINTS_TOTAL,41.1,1,120.17 +2026-04-11 13:08:00,2026-04-14 10:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,112.08 +2026-03-21 01:25:18,2026-03-20 23:00:00,NHL,New York Rangers,Boston Bruins,2.1,0.0,0.885,BetMGM,POINTS_SPREAD,3.6,0,118.68 +2026-03-26 06:42:07,2026-03-26 07:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,49.8,0.134,Fanduel,POINTS_TOTAL,50.2,0,117.32 +2026-03-21 18:43:00,2026-03-23 01:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,149.99 +2026-04-16 01:41:33,2026-04-16 00:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,6.2,0.0,0.842,BetMGM,POINTS_SPREAD,2.8,1,100.0 +2026-03-15 00:09:00,2026-03-17 16:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,23.4,0,107.98 +2026-04-19 14:50:00,2026-04-21 08:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,220.3,0,132.86 +2026-03-16 20:27:01,2026-03-16 19:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.739,Fanduel,MONEYLINE,0.0,NA,132.01 +2026-04-14 10:52:00,2026-04-16 01:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,118.89 +2026-02-25 17:50:00,2026-02-25 23:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,210.0,1,114.09 +2026-04-09 12:12:13,2026-04-09 12:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.329,Fanduel,MONEYLINE,0.0,NA,182.82 +2026-04-06 12:02:00,2026-04-07 23:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,220.1,0,105.65 +2026-04-06 05:25:00,2026-04-06 13:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.9,0,104.36 +2026-02-19 22:33:00,2026-02-21 15:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,156.8 +2026-03-30 07:17:14,2026-03-30 07:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.368,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-03 13:32:00,2026-03-06 09:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,51.3,0,118.04 +2026-03-09 10:03:16,2026-03-09 08:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,35.1,0.946,Fanduel,POINTS_TOTAL,32.3,0,121.85 +2026-03-30 05:32:07,2026-03-30 07:00:00,NFL,Philadelphia Eagles,Buffalo Bills,1.9,0.0,0.034,BetMGM,POINTS_SPREAD,2.1,1,103.56 +2026-04-13 07:06:00,2026-04-13 19:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,1,130.34 +2026-02-24 13:50:00,2026-02-27 03:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,126.56 +2026-03-21 13:31:18,2026-03-21 13:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.485,BetMGM,MONEYLINE,0.0,NA,120.68 +2026-02-27 01:52:54,2026-02-27 00:00:00,NHL,Colorado Avalanche,Boston Bruins,3.9,0.0,0.755,BetMGM,POINTS_SPREAD,2.8,0,114.74 +2026-04-15 13:32:18,2026-04-15 13:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,14.4,0.335,Fanduel,POINTS_TOTAL,16.5,0,100.0 +2026-04-11 07:30:00,2026-04-13 02:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.3,0,113.06 +2026-03-27 19:12:00,2026-03-29 15:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,49.9,0,104.0 +2026-03-09 16:19:00,2026-03-10 11:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,44.5,1,106.88 +2026-03-12 08:00:00,2026-03-15 05:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.9,1,114.52 +2026-04-06 14:23:00,2026-04-08 15:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,17.6,1,100.0 +2026-04-04 06:00:00,2026-04-06 00:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,119.4 +2026-03-29 22:31:00,2026-03-30 19:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,137.01 +2026-03-03 22:11:00,2026-03-06 17:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,48.4,1,116.45 +2026-04-03 09:31:00,2026-04-04 09:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,221.6,0,118.78 +2026-03-03 21:43:00,2026-03-06 02:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.0,1,100.0 +2026-02-22 13:47:00,2026-02-25 13:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,47.6,0,115.64 +2026-04-07 14:20:00,2026-04-08 01:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,34.5,0,118.85 +2026-04-11 02:40:00,2026-04-13 06:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,51.5,1,100.75 +2026-03-06 22:42:43,2026-03-06 22:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,25.8,0.804,BetMGM,POINTS_TOTAL,21.7,0,105.35 +2026-04-05 11:29:02,2026-04-05 10:00:00,NBA,Golden State Warriors,Los Angeles Lakers,-3.7,0.0,0.728,BetMGM,POINTS_SPREAD,2.7,1,101.2 +2026-03-27 05:33:00,2026-03-29 22:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,137.69 +2026-03-15 19:39:15,2026-03-15 18:00:00,NBA,Los Angeles Lakers,Golden State Warriors,7.6,0.0,0.657,Fanduel,POINTS_SPREAD,4.5,0,122.01 +2026-03-10 19:44:44,2026-03-10 18:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.2,0.0,0.843,BetMGM,POINTS_SPREAD,2.0,0,106.64 +2026-03-03 14:36:01,2026-03-03 13:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.539,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-28 12:43:00,2026-03-30 18:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-17 09:51:00,2026-03-18 09:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,1,110.29 +2026-03-12 02:40:00,2026-03-12 23:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,147.19 +2026-04-13 11:35:42,2026-04-13 11:00:00,NBA,Denver Nuggets,Milwaukee Bucks,-2.2,0.0,0.465,Fanduel,POINTS_SPREAD,0.5,0,111.06 +2026-04-17 22:21:31,2026-04-17 21:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,49.0,0.814,Fanduel,POINTS_TOTAL,46.3,0,114.39 +2026-03-09 22:35:56,2026-03-09 23:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,207.5,0.283,Fanduel,POINTS_TOTAL,204.5,0,117.23 +2026-03-01 16:21:00,2026-03-03 10:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,123.77 +2026-03-08 20:42:00,2026-03-09 08:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.0,1,100.0 +2026-04-08 07:13:00,2026-04-10 09:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,102.11 +2026-03-31 19:08:15,2026-03-31 19:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,53.2,0.407,Fanduel,POINTS_TOTAL,50.5,0,120.35 +2026-03-12 00:17:00,2026-03-14 15:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,0,127.59 +2026-04-04 09:21:20,2026-04-04 08:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.613,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-12 13:58:00,2026-03-13 15:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,219.6,1,101.49 +2026-03-01 18:27:13,2026-03-01 18:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,16.1,0.329,Fanduel,POINTS_TOTAL,9.2,0,139.06 +2026-03-14 09:25:00,2026-03-14 23:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,49.1,0,108.13 +2026-03-09 20:32:43,2026-03-09 19:00:00,NHL,Vegas Golden Knights,Florida Panthers,1.3,0.0,0.604,BetMGM,POINTS_SPREAD,1.8,1,100.0 +2026-03-09 07:28:00,2026-03-11 16:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,134.56 +2026-02-27 02:44:00,2026-02-27 06:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,114.01 +2026-03-23 12:14:38,2026-03-23 11:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,7.8,0.598,Fanduel,POINTS_TOTAL,11.3,1,105.25 +2026-04-17 19:14:00,2026-04-19 12:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,233.1,0,117.47 +2026-03-27 11:22:00,2026-03-28 21:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,5.4,1,112.09 +2026-02-21 10:27:00,2026-02-23 00:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,40.2,1,112.98 +2026-03-28 23:52:00,2026-03-31 18:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-08 14:58:00,2026-03-09 00:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,6.8,1,100.0 +2026-03-12 13:56:00,2026-03-12 19:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-25 15:59:00,2026-02-27 02:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,1,100.0 +2026-03-13 18:05:24,2026-03-13 16:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,51.1,0.83,BetMGM,POINTS_TOTAL,45.5,1,100.0 +2026-02-27 13:38:56,2026-02-27 12:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,51.3,0.633,Fanduel,POINTS_TOTAL,53.2,1,101.98 +2026-02-22 00:53:00,2026-02-24 23:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,5.0,1,120.05 +2026-04-03 11:15:00,2026-04-04 19:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,146.96 +2026-02-20 18:27:00,2026-02-23 18:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,139.9 +2026-03-11 18:40:00,2026-03-14 16:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,47.4,0,115.69 +2026-04-12 09:09:00,2026-04-15 02:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,104.05 +2026-03-23 00:38:00,2026-03-23 21:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,113.67 +2026-04-06 09:09:00,2026-04-08 03:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,196.7,1,108.05 +2026-03-17 09:49:00,2026-03-18 13:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,49.3,1,100.0 +2026-02-25 18:40:00,2026-02-27 20:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,145.34 +2026-03-05 18:21:00,2026-03-07 23:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,1,100.0 +2026-04-06 23:00:00,2026-04-07 10:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.4,0,137.13 +2026-03-13 08:02:00,2026-03-15 18:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,44.6,0,104.0 +2026-04-11 21:45:44,2026-04-11 23:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,3.5,0.293,BetMGM,POINTS_TOTAL,3.5,0,100.96 +2026-04-06 10:12:00,2026-04-06 17:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.2,1,100.0 +2026-04-06 20:39:00,2026-04-08 19:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,22.9,1,103.33 +2026-04-12 01:27:00,2026-04-14 18:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,106.49 +2026-03-26 12:41:50,2026-03-26 12:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.538,BetMGM,MONEYLINE,0.0,NA,152.6 +2026-02-19 05:51:00,2026-02-21 19:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.3,1,111.18 +2026-03-07 19:26:00,2026-03-09 08:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,165.69 +2026-04-05 20:13:00,2026-04-06 16:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,130.69 +2026-04-11 07:46:00,2026-04-13 21:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,37.8,0,117.48 +2026-04-03 19:18:00,2026-04-05 20:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.7,1,115.3 +2026-02-24 03:43:00,2026-02-26 20:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,0,100.0 +2026-04-01 23:42:00,2026-04-03 13:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,61.3,0,102.43 +2026-04-15 13:51:44,2026-04-15 14:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,3.5,0.293,BetMGM,POINTS_TOTAL,3.5,1,114.87 +2026-04-18 11:44:00,2026-04-20 15:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,1,108.48 +2026-03-11 05:23:00,2026-03-11 16:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,240.7,0,105.41 +2026-03-07 08:31:00,2026-03-08 20:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,227.0,1,103.22 +2026-03-22 20:28:00,2026-03-25 01:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,1,114.76 +2026-04-09 03:54:00,2026-04-11 17:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,125.58 +2026-03-08 09:02:12,2026-03-08 07:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,28.0,0.69,Fanduel,POINTS_TOTAL,24.9,0,124.92 +2026-04-13 01:20:30,2026-04-13 00:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,3.5,0.925,BetMGM,POINTS_TOTAL,3.5,1,128.34 +2026-03-23 16:24:00,2026-03-26 13:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,0,100.0 +2026-03-04 15:39:06,2026-03-04 14:00:00,NBA,Denver Nuggets,Milwaukee Bucks,-4.8,0.0,0.895,Fanduel,POINTS_SPREAD,0.5,1,127.12 +2026-04-05 10:52:00,2026-04-07 04:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.0,1,100.0 +2026-03-15 20:40:00,2026-03-17 23:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,168.78 +2026-03-23 23:04:00,2026-03-26 04:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,175.92 +2026-03-31 19:54:12,2026-03-31 21:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,13.9,0.29,Fanduel,POINTS_TOTAL,15.0,0,100.0 +2026-03-03 11:04:00,2026-03-04 22:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,0,116.31 +2026-02-27 05:20:00,2026-02-27 21:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,0,122.84 +2026-03-31 01:49:00,2026-04-02 20:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,30.6,0,109.56 +2026-04-13 07:08:00,2026-04-15 04:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,29.7,0,100.0 +2026-02-24 17:21:00,2026-02-25 07:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,0,111.87 +2026-04-12 03:52:36,2026-04-12 04:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,56.7,0.47,BetMGM,POINTS_TOTAL,59.5,0,100.0 +2026-03-01 11:13:00,2026-03-02 00:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,44.4,0,112.95 +2026-02-20 07:53:00,2026-02-22 16:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,131.67 +2026-02-20 23:19:00,2026-02-22 08:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,46.0,1,102.21 +2026-04-01 15:38:00,2026-04-01 17:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,120.16 +2026-03-18 13:27:00,2026-03-20 06:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,106.86 +2026-04-10 08:29:00,2026-04-13 01:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,5.0,1,100.3 +2026-04-05 00:31:06,2026-04-05 00:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.245,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-03 08:40:50,2026-03-03 09:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,3.5,0.188,Fanduel,POINTS_TOTAL,3.5,0,142.13 +2026-04-10 14:34:00,2026-04-12 18:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,100.0 +2026-04-16 19:55:12,2026-04-16 20:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.8,0.0,0.29,BetMGM,POINTS_SPREAD,0.4,1,124.35 +2026-03-27 11:23:00,2026-03-29 12:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,129.38 +2026-04-02 10:50:00,2026-04-02 18:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,228.5,0,100.0 +2026-04-09 05:21:58,2026-04-09 06:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,217.3,0.311,BetMGM,POINTS_TOTAL,213.7,1,109.59 +2026-04-08 01:10:00,2026-04-10 19:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,59.5,0,106.23 +2026-04-03 04:01:00,2026-04-04 08:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.4,0,105.82 +2026-03-19 09:45:00,2026-03-22 02:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,106.09 +2026-04-01 12:17:00,2026-04-01 18:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,106.83 +2026-04-10 17:24:07,2026-04-10 17:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,51.8,0.384,Fanduel,POINTS_TOTAL,53.1,1,103.41 +2026-04-12 08:15:00,2026-04-14 04:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,227.5,0,131.73 +2026-02-21 23:23:22,2026-02-21 23:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,218.8,0.641,BetMGM,POINTS_TOTAL,222.8,1,113.77 +2026-02-19 05:31:00,2026-02-21 07:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,19.9,1,115.89 +2026-03-29 13:34:36,2026-03-29 15:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,-2.1,0.0,0.07,Fanduel,POINTS_SPREAD,1.3,1,134.71 +2026-03-20 11:19:00,2026-03-22 18:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,164.18 +2026-03-02 06:59:00,2026-03-05 04:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-31 13:19:00,2026-04-01 02:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,0,102.37 +2026-03-26 21:39:00,2026-03-27 12:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,5.5,0,126.89 +2026-02-18 06:38:00,2026-02-20 15:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,154.24 +2026-03-07 22:01:21,2026-03-07 23:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,37.6,0.452,BetMGM,POINTS_TOTAL,37.1,1,114.09 +2026-03-15 21:30:33,2026-03-15 22:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,5.1,0.542,BetMGM,POINTS_TOTAL,9.2,1,117.31 +2026-04-09 21:23:00,2026-04-10 02:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.6,1,134.9 +2026-04-04 12:20:00,2026-04-05 01:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.5,0,124.19 +2026-03-31 03:18:00,2026-04-02 04:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.3,0,101.19 +2026-03-05 23:42:00,2026-03-07 21:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,1,103.49 +2026-03-31 03:31:00,2026-03-31 21:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,44.8,0,112.25 +2026-03-10 21:47:48,2026-03-10 22:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,12.0,0.66,BetMGM,POINTS_TOTAL,9.3,0,118.92 +2026-04-13 02:44:22,2026-04-13 03:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.041,BetMGM,MONEYLINE,0.0,NA,132.59 +2026-02-20 14:09:00,2026-02-22 07:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,178.1 +2026-03-27 23:32:00,2026-03-28 00:00:00,NFL,Baltimore Ravens,Miami Dolphins,6.5,0.0,0.1,BetMGM,POINTS_SPREAD,1.8,0,107.81 +2026-03-06 20:11:00,2026-03-07 01:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,8.0,1,107.47 +2026-03-08 06:32:00,2026-03-10 19:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,111.94 +2026-03-22 23:23:00,2026-03-24 15:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,110.91 +2026-04-11 19:03:00,2026-04-13 04:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,42.1,1,114.45 +2026-02-22 06:31:00,2026-02-23 12:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.0,0,124.35 +2026-03-16 18:10:40,2026-03-16 18:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.676,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-05 20:45:00,2026-04-08 02:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,103.03 +2026-02-21 18:55:00,2026-02-22 20:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,221.6,0,116.52 +2026-03-18 03:43:00,2026-03-18 08:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,231.7,0,131.71 +2026-04-09 02:42:00,2026-04-11 09:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-18 01:47:00,2026-02-20 16:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,234.0,1,120.28 +2026-03-31 03:07:00,2026-04-01 13:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,150.45 +2026-04-04 07:09:00,2026-04-06 12:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,116.3 +2026-04-16 16:11:00,2026-04-16 21:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,12.3,0,119.09 +2026-03-18 21:32:00,2026-03-21 06:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,176.1 +2026-04-13 12:16:00,2026-04-14 12:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,50.0,0,116.97 +2026-03-12 14:31:18,2026-03-12 15:00:00,NFL,Kansas City Chiefs,Detroit Lions,-1.3,0.0,0.385,Fanduel,POINTS_SPREAD,1.7,1,100.0 +2026-03-18 00:32:40,2026-03-17 22:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.876,Fanduel,MONEYLINE,0.0,NA,117.08 +2026-04-11 00:41:13,2026-04-10 23:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,238.2,0.829,BetMGM,POINTS_TOTAL,235.4,0,114.1 +2026-03-19 06:53:00,2026-03-20 06:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,8.0,0,105.05 +2026-04-15 22:19:00,2026-04-16 15:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,1,124.12 +2026-04-15 03:28:26,2026-04-15 05:00:00,NFL,Dallas Cowboys,Miami Dolphins,-1.0,0.0,0.058,BetMGM,POINTS_SPREAD,3.1,0,100.0 +2026-04-16 11:05:00,2026-04-19 02:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,1,128.36 +2026-04-02 20:14:00,2026-04-05 19:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,103.86 +2026-04-16 17:15:00,2026-04-17 21:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,127.29 +2026-03-21 07:51:00,2026-03-24 07:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-21 02:23:00,2026-02-21 04:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,16.3,1,107.07 +2026-04-13 15:15:00,2026-04-14 15:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,109.15 +2026-03-30 21:00:00,2026-04-02 21:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.0,0,126.1 +2026-04-19 13:33:33,2026-04-19 14:00:00,NBA,Golden State Warriors,Miami Heat,0.0,218.7,0.592,BetMGM,POINTS_TOTAL,224.3,0,100.0 +2026-03-08 10:24:21,2026-03-08 10:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.302,BetMGM,MONEYLINE,0.0,NA,105.78 +2026-04-08 18:00:07,2026-04-08 16:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,63.0,0.734,Fanduel,POINTS_TOTAL,62.2,0,100.26 +2026-04-19 08:16:00,2026-04-19 22:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,0,100.62 +2026-02-28 11:32:00,2026-03-01 16:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,0,100.0 +2026-02-21 16:52:00,2026-02-22 18:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.8,1,161.86 +2026-04-05 15:26:00,2026-04-05 18:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-08 13:30:07,2026-03-08 15:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,50.3,0.134,BetMGM,POINTS_TOTAL,49.4,1,102.95 +2026-04-04 10:24:00,2026-04-05 13:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,22.0,0,107.79 +2026-04-01 11:43:54,2026-04-01 11:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.905,BetMGM,MONEYLINE,0.0,NA,107.12 +2026-03-30 21:39:16,2026-03-30 23:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,221.3,0.146,BetMGM,POINTS_TOTAL,217.9,1,110.67 +2026-03-07 18:07:00,2026-03-10 03:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.2,0,100.0 +2026-03-16 05:23:00,2026-03-17 00:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.5,1,119.47 +2026-04-21 04:13:04,2026-04-21 04:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.506,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-15 11:19:00,2026-03-16 12:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,1,141.97 +2026-04-14 04:18:37,2026-04-14 02:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,50.2,0.859,BetMGM,POINTS_TOTAL,54.5,0,100.55 +2026-03-03 02:18:13,2026-03-03 04:00:00,NBA,Milwaukee Bucks,Denver Nuggets,3.5,0.0,0.179,Fanduel,POINTS_SPREAD,0.7,1,100.0 +2026-04-17 17:07:00,2026-04-20 07:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,1,100.0 +2026-03-12 08:04:51,2026-03-12 08:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,18.5,0.527,BetMGM,POINTS_TOTAL,14.8,0,127.08 +2026-03-17 08:41:00,2026-03-19 01:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,0,100.0 +2026-03-19 10:20:00,2026-03-19 15:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,36.4,0,100.0 +2026-03-05 03:04:00,2026-03-06 19:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,1,111.67 +2026-02-25 05:05:00,2026-02-26 21:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,107.58 +2026-03-12 20:31:06,2026-03-12 21:00:00,NFL,Baltimore Ravens,San Francisco 49ers,1.8,0.0,0.345,BetMGM,POINTS_SPREAD,0.2,0,122.77 +2026-04-06 12:24:00,2026-04-07 09:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,47.5,1,100.0 +2026-04-03 05:56:40,2026-04-03 06:00:00,NHL,Florida Panthers,Boston Bruins,-2.1,0.0,0.226,BetMGM,POINTS_SPREAD,0.1,1,120.55 +2026-03-06 23:40:00,2026-03-07 11:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,130.39 +2026-03-26 06:13:12,2026-03-26 04:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,51.2,0.89,BetMGM,POINTS_TOTAL,58.8,1,121.87 +2026-04-20 17:01:00,2026-04-20 21:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,150.13 +2026-04-17 20:22:00,2026-04-20 13:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,150.09 +2026-03-06 08:05:49,2026-03-06 07:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,61.4,0.799,Fanduel,POINTS_TOTAL,63.6,1,136.74 +2026-03-02 09:52:54,2026-03-02 10:00:00,NHL,New York Rangers,Edmonton Oilers,-3.3,0.0,0.455,BetMGM,POINTS_SPREAD,2.0,0,100.0 +2026-03-30 11:50:00,2026-04-01 20:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,56.0,1,106.47 +2026-02-23 23:44:00,2026-02-24 22:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,7.4,0,113.61 +2026-04-01 02:48:00,2026-04-01 13:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-14 19:23:45,2026-04-14 20:00:00,NHL,Edmonton Oilers,Boston Bruins,-0.2,0.0,0.532,BetMGM,POINTS_SPREAD,1.4,0,105.82 +2026-02-21 03:49:00,2026-02-21 18:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-07 16:52:00,2026-04-07 18:00:00,NHL,Toronto Maple Leafs,New York Rangers,-0.0,0.0,0.1,BetMGM,POINTS_SPREAD,1.0,1,103.76 +2026-03-28 14:23:24,2026-03-28 14:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,3.5,0.48,Fanduel,POINTS_TOTAL,3.5,0,120.52 +2026-03-17 17:46:51,2026-03-17 16:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,225.9,0.777,Fanduel,POINTS_TOTAL,229.5,1,108.83 +2026-04-12 21:49:00,2026-04-14 07:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,1,100.0 +2026-03-10 03:41:06,2026-03-10 03:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,50.6,0.695,Fanduel,POINTS_TOTAL,47.9,1,108.91 +2026-03-20 20:50:00,2026-03-21 18:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.0,1,111.11 +2026-04-14 01:02:00,2026-04-15 18:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,100.0 +2026-03-19 09:52:42,2026-03-19 09:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.4,0.0,0.815,BetMGM,POINTS_SPREAD,3.1,1,125.59 +2026-03-28 15:32:00,2026-03-29 05:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,104.5 +2026-04-14 19:04:00,2026-04-17 12:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,1,103.13 +2026-03-30 06:53:03,2026-03-30 06:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,3.5,0.567,BetMGM,POINTS_TOTAL,3.5,1,115.18 +2026-04-19 09:12:08,2026-04-19 09:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.773,Fanduel,MONEYLINE,0.0,NA,106.16 +2026-03-30 22:39:00,2026-04-02 18:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.7,0,134.13 +2026-03-13 15:51:00,2026-03-16 00:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,1,100.0 +2026-03-21 04:32:00,2026-03-21 18:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,50.7,1,121.07 +2026-04-14 10:02:00,2026-04-15 14:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.3,1,100.0 +2026-04-15 08:41:00,2026-04-17 18:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.2,1,138.63 +2026-03-16 20:38:00,2026-03-19 01:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,142.84 +2026-04-03 18:15:00,2026-04-04 01:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,1,100.0 +2026-04-16 11:58:00,2026-04-16 15:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,228.6,0,112.85 +2026-03-24 20:17:32,2026-03-24 21:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,-1.3,0.0,0.503,Fanduel,POINTS_SPREAD,0.7,1,119.79 +2026-03-27 02:55:49,2026-03-27 02:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.749,BetMGM,MONEYLINE,0.0,NA,149.95 +2026-03-06 05:11:00,2026-03-07 14:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-28 07:46:09,2026-03-28 09:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.162,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-19 16:06:50,2026-04-19 17:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,3.5,0.238,BetMGM,POINTS_TOTAL,3.5,0,111.66 +2026-04-13 23:16:00,2026-04-16 06:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,155.56 +2026-04-11 23:37:00,2026-04-13 10:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,1,104.51 +2026-04-03 10:02:00,2026-04-03 18:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,116.08 +2026-04-03 22:22:21,2026-04-03 22:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.552,Fanduel,MONEYLINE,0.0,NA,166.74 +2026-04-11 01:03:00,2026-04-13 10:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,107.35 +2026-03-16 16:47:28,2026-03-16 16:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,229.7,0.536,Fanduel,POINTS_TOTAL,227.5,1,100.37 +2026-02-21 21:04:00,2026-02-24 12:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,0,101.29 +2026-03-20 21:49:57,2026-03-20 22:00:00,NBA,Golden State Warriors,Denver Nuggets,-6.6,0.0,0.622,BetMGM,POINTS_SPREAD,2.1,0,100.0 +2026-03-04 13:38:44,2026-03-04 11:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,3.6,0.893,BetMGM,POINTS_TOTAL,3.5,0,115.16 +2026-03-04 11:44:00,2026-03-07 01:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,161.67 +2026-03-08 00:40:00,2026-03-08 22:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,100.0 +2026-04-01 23:40:00,2026-04-03 22:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,220.4,1,106.78 +2026-03-08 12:28:32,2026-03-08 11:00:00,NFL,Detroit Lions,San Francisco 49ers,-2.6,0.0,0.853,BetMGM,POINTS_SPREAD,3.0,0,100.0 +2026-03-17 11:03:00,2026-03-18 08:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,180.02 +2026-04-13 10:34:00,2026-04-14 18:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.5,0,109.58 +2026-03-11 03:38:00,2026-03-12 19:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,5.5,1,116.75 +2026-03-26 06:29:00,2026-03-27 04:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.9,0,100.0 +2026-03-18 07:23:18,2026-03-18 08:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,224.9,0.335,Fanduel,POINTS_TOTAL,226.1,1,124.57 +2026-03-17 12:44:43,2026-03-17 14:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.354,BetMGM,MONEYLINE,0.0,NA,155.51 +2026-03-08 10:57:00,2026-03-08 18:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,0,107.53 +2026-03-15 00:30:00,2026-03-16 03:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,115.43 +2026-02-28 07:36:00,2026-03-01 19:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-12 10:51:07,2026-04-12 11:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.534,BetMGM,MONEYLINE,0.0,NA,148.59 +2026-04-06 16:45:44,2026-04-06 15:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,16.4,0.943,BetMGM,POINTS_TOTAL,8.9,0,135.57 +2026-04-21 02:29:00,2026-04-21 04:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,150.34 +2026-03-01 04:55:00,2026-03-03 04:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-09 12:57:24,2026-03-09 14:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.08,BetMGM,MONEYLINE,0.0,NA,133.3 +2026-02-24 14:49:00,2026-02-25 18:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,143.46 +2026-02-22 18:49:00,2026-02-23 14:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.7,1,134.24 +2026-03-11 01:35:18,2026-03-11 01:00:00,NHL,Boston Bruins,Edmonton Oilers,1.5,0.0,0.885,BetMGM,POINTS_SPREAD,0.3,0,105.81 +2026-02-26 15:07:00,2026-02-27 08:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,229.5,0,112.9 +2026-03-21 00:34:00,2026-03-23 09:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,1,100.0 +2026-03-04 03:57:00,2026-03-04 09:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.7,0,146.88 +2026-03-20 17:29:28,2026-03-20 15:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.936,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-15 04:53:40,2026-04-15 06:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,36.4,0.226,BetMGM,POINTS_TOTAL,35.3,1,108.74 +2026-02-26 11:03:00,2026-03-01 08:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,122.37 +2026-03-30 17:03:00,2026-04-02 01:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,108.9 +2026-04-11 18:04:00,2026-04-14 04:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.9,1,100.0 +2026-03-12 16:33:00,2026-03-13 23:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,233.6,0,107.62 +2026-04-05 06:59:45,2026-04-05 09:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.032,BetMGM,MONEYLINE,0.0,NA,107.42 +2026-03-16 06:16:00,2026-03-16 07:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.5,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-11 05:34:50,2026-04-11 05:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,-3.3,0.0,0.638,Fanduel,POINTS_SPREAD,1.0,1,128.9 +2026-03-02 18:14:00,2026-03-03 23:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,1,110.25 +2026-03-19 10:30:51,2026-03-19 10:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.477,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-24 18:49:00,2026-03-25 05:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,156.54 +2026-03-13 23:14:08,2026-03-13 23:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,3.5,0.773,Fanduel,POINTS_TOTAL,3.5,0,119.99 +2026-03-10 13:04:00,2026-03-12 09:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,119.41 +2026-04-15 15:50:00,2026-04-16 01:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,1,102.49 +2026-04-12 14:18:32,2026-04-12 14:00:00,NBA,Golden State Warriors,Milwaukee Bucks,3.7,0.0,0.553,Fanduel,POINTS_SPREAD,5.8,1,100.0 +2026-03-03 15:39:21,2026-03-03 14:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.602,BetMGM,MONEYLINE,0.0,NA,113.53 +2026-02-28 21:56:00,2026-03-02 16:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,0,123.38 +2026-03-21 12:39:00,2026-03-22 05:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,0,113.8 +2026-04-17 20:06:00,2026-04-19 17:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-05 04:05:00,2026-03-07 16:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,1,112.16 +2026-04-11 03:32:00,2026-04-12 22:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,115.68 +2026-03-06 02:27:39,2026-03-06 00:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.837,Fanduel,MONEYLINE,0.0,NA,101.96 +2026-02-21 18:49:00,2026-02-24 13:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,16.7,0,107.66 +2026-04-19 09:05:00,2026-04-20 22:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,1,112.26 +2026-02-22 18:19:00,2026-02-24 10:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,231.0,1,103.85 +2026-03-24 16:47:00,2026-03-26 08:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.3,1,132.39 +2026-02-24 02:23:25,2026-02-24 03:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,-3.5,0.0,0.069,BetMGM,POINTS_SPREAD,3.0,0,121.42 +2026-03-03 06:53:15,2026-03-03 07:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,9.4,0.107,Fanduel,POINTS_TOTAL,6.8,1,106.26 +2026-03-21 23:20:00,2026-03-24 07:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,134.07 +2026-03-13 12:06:28,2026-03-13 12:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.336,BetMGM,MONEYLINE,0.0,NA,142.23 +2026-02-24 21:20:00,2026-02-25 12:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,53.7,0,113.3 +2026-03-20 01:06:06,2026-03-20 01:00:00,NBA,Boston Celtics,Los Angeles Lakers,4.7,0.0,0.045,BetMGM,POINTS_SPREAD,4.4,1,100.0 +2026-04-08 01:23:00,2026-04-11 00:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,4.8,1,126.26 +2026-04-12 09:13:00,2026-04-14 18:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,50.5,1,100.0 +2026-03-18 09:44:00,2026-03-20 18:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-26 08:43:00,2026-03-28 20:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,113.52 +2026-03-28 20:45:00,2026-03-30 08:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,117.27 +2026-03-22 03:04:30,2026-03-22 03:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,32.8,0.225,BetMGM,POINTS_TOTAL,37.3,1,121.69 +2026-03-31 16:29:21,2026-03-31 15:00:00,NFL,Buffalo Bills,Dallas Cowboys,4.8,0.0,0.502,Fanduel,POINTS_SPREAD,0.4,0,121.39 +2026-03-27 10:42:00,2026-03-30 10:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,0,116.93 +2026-03-19 06:22:00,2026-03-20 12:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,149.65 +2026-03-22 08:29:00,2026-03-23 19:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,117.28 +2026-03-16 00:13:00,2026-03-18 16:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,57.4,0,108.59 +2026-03-04 06:51:00,2026-03-05 07:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.1,1,105.85 +2026-02-25 07:12:00,2026-02-26 03:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-13 02:17:51,2026-03-13 02:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.877,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-11 00:40:00,2026-03-11 20:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.9,0,113.9 +2026-04-20 15:58:12,2026-04-20 15:00:00,NBA,Milwaukee Bucks,Denver Nuggets,-1.0,0.0,0.49,Fanduel,POINTS_SPREAD,0.9,0,100.0 +2026-03-15 06:17:26,2026-03-15 05:00:00,NHL,Florida Panthers,Edmonton Oilers,2.0,0.0,0.758,BetMGM,POINTS_SPREAD,2.5,1,100.0 +2026-04-07 14:16:00,2026-04-07 22:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,150.87 +2026-04-06 19:37:20,2026-04-06 18:00:00,NBA,Denver Nuggets,Los Angeles Lakers,5.5,0.0,0.663,Fanduel,POINTS_SPREAD,3.1,0,108.49 +2026-04-18 11:26:00,2026-04-21 11:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.9,0,128.39 +2026-03-21 08:39:37,2026-03-21 09:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,219.2,0.459,BetMGM,POINTS_TOTAL,221.1,1,106.29 +2026-04-17 12:46:00,2026-04-18 06:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,219.8,1,115.69 +2026-03-17 17:57:00,2026-03-20 15:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,150.57 +2026-03-11 04:14:06,2026-03-11 05:00:00,NFL,Kansas City Chiefs,Buffalo Bills,-3.6,0.0,0.345,Fanduel,POINTS_SPREAD,2.2,0,104.29 +2026-04-19 05:55:12,2026-04-19 06:00:00,NHL,Colorado Avalanche,New York Rangers,-2.1,0.0,0.64,Fanduel,POINTS_SPREAD,1.1,1,137.31 +2026-04-16 00:07:00,2026-04-16 18:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,117.56 +2026-02-21 03:42:00,2026-02-23 16:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,121.24 +2026-04-10 01:48:00,2026-04-11 10:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,160.12 +2026-03-27 20:42:00,2026-03-28 08:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-16 14:14:00,2026-03-18 04:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,131.96 +2026-02-28 04:57:00,2026-02-28 22:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,1,115.62 +2026-04-12 10:17:02,2026-04-12 11:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.128,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-26 07:45:00,2026-03-01 06:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,38.6,0,135.07 +2026-02-28 23:44:21,2026-03-01 00:00:00,NBA,Miami Heat,Boston Celtics,-3.3,0.0,0.502,Fanduel,POINTS_SPREAD,1.9,0,100.67 +2026-04-14 00:37:00,2026-04-15 21:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,120.69 +2026-03-22 07:27:00,2026-03-22 08:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,6.8,0,100.0 +2026-04-11 06:58:00,2026-04-11 09:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,0,112.61 +2026-04-05 15:29:13,2026-04-05 15:00:00,NHL,New York Rangers,Edmonton Oilers,-0.1,0.0,0.579,BetMGM,POINTS_SPREAD,1.6,0,116.52 +2026-03-17 00:30:00,2026-03-19 18:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.5,0,122.56 +2026-04-19 03:32:58,2026-04-19 03:00:00,NHL,Colorado Avalanche,Edmonton Oilers,-0.7,0.0,0.211,Fanduel,POINTS_SPREAD,1.5,0,100.0 +2026-04-14 12:46:00,2026-04-16 21:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,0,127.93 +2026-03-07 06:13:00,2026-03-08 15:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.3,1,104.06 +2026-04-16 07:48:00,2026-04-16 17:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,116.65 +2026-03-09 19:56:44,2026-03-09 19:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,233.0,0.893,BetMGM,POINTS_TOTAL,228.5,0,108.73 +2026-03-05 21:31:00,2026-03-06 09:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,1,100.0 +2026-04-07 05:30:56,2026-04-07 05:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.483,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-07 01:57:55,2026-03-07 01:00:00,NHL,Vegas Golden Knights,Florida Panthers,1.2,0.0,0.844,Fanduel,POINTS_SPREAD,0.9,1,101.41 +2026-03-16 20:55:00,2026-03-17 00:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,233.6,0,113.81 +2026-03-02 23:01:00,2026-03-05 05:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,1,154.66 +2026-03-21 17:12:30,2026-03-21 16:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,235.3,0.725,BetMGM,POINTS_TOTAL,236.9,0,115.41 +2026-04-06 00:03:00,2026-04-06 07:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,48.7,1,113.93 +2026-04-06 21:18:58,2026-04-06 23:00:00,NHL,New York Rangers,Edmonton Oilers,-1.5,0.0,0.211,Fanduel,POINTS_SPREAD,0.2,0,116.26 +2026-03-04 11:46:28,2026-03-04 11:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,243.3,0.536,Fanduel,POINTS_TOTAL,240.2,1,114.17 +2026-03-31 02:14:00,2026-03-31 16:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,54.5,1,118.2 +2026-03-20 01:31:00,2026-03-22 06:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,15.3,0,112.3 +2026-03-02 13:23:00,2026-03-04 10:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,216.8,1,100.0 +2026-03-18 10:12:00,2026-03-19 06:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,0,100.0 +2026-04-05 14:45:00,2026-04-07 10:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,0,103.0 +2026-03-18 22:00:00,2026-03-20 03:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,225.8,1,100.0 +2026-03-14 16:58:04,2026-03-14 16:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.956,Fanduel,MONEYLINE,0.0,NA,111.94 +2026-03-07 15:25:00,2026-03-08 02:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,0,116.11 +2026-02-22 07:21:00,2026-02-23 19:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,113.81 +2026-03-20 11:23:46,2026-03-20 12:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.321,Fanduel,MONEYLINE,0.0,NA,106.15 +2026-03-11 15:43:44,2026-03-11 15:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.593,Fanduel,MONEYLINE,0.0,NA,152.94 +2026-03-07 10:29:00,2026-03-10 02:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,59.6,0,117.98 +2026-02-23 08:43:38,2026-02-23 09:00:00,NFL,Philadelphia Eagles,Miami Dolphins,-2.5,0.0,0.398,Fanduel,POINTS_SPREAD,2.2,0,100.0 +2026-04-15 22:18:00,2026-04-18 01:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.9,1,127.62 +2026-04-12 06:46:00,2026-04-13 18:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,9.0,1,110.28 +2026-03-17 23:10:00,2026-03-18 19:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,58.1,1,112.45 +2026-02-28 16:13:00,2026-03-01 06:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,115.09 +2026-02-19 13:04:00,2026-02-22 11:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,0,100.0 +2026-04-06 06:16:00,2026-04-08 07:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,59.3,1,100.0 +2026-03-04 03:29:00,2026-03-05 02:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,138.76 +2026-03-11 15:13:00,2026-03-11 17:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-20 22:29:18,2026-02-20 22:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,44.0,0.485,Fanduel,POINTS_TOTAL,44.3,1,120.42 +2026-03-03 01:48:00,2026-03-05 11:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,0,130.58 +2026-02-23 20:05:00,2026-02-24 22:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,171.04 +2026-03-07 13:44:00,2026-03-09 12:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.1,0,112.5 +2026-04-01 12:51:04,2026-04-01 14:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.106,BetMGM,MONEYLINE,0.0,NA,119.47 +2026-03-08 10:55:14,2026-03-08 10:00:00,NBA,Golden State Warriors,Phoenix Suns,0.1,0.0,0.518,BetMGM,POINTS_SPREAD,2.4,0,100.0 +2026-04-01 18:47:00,2026-04-02 00:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,0,100.0 +2026-02-22 07:07:13,2026-02-22 05:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,227.1,0.829,Fanduel,POINTS_TOTAL,226.2,0,112.1 +2026-02-26 15:23:00,2026-03-01 09:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,30.6,0,110.92 +2026-03-28 21:13:00,2026-03-30 19:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,46.6,1,107.22 +2026-02-25 02:26:00,2026-02-26 19:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-06 17:04:00,2026-03-07 16:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,227.6,0,112.63 +2026-03-30 21:12:00,2026-04-02 19:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,0,100.0 +2026-03-20 09:28:00,2026-03-22 17:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,242.2,0,103.14 +2026-03-16 15:20:00,2026-03-17 11:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,139.13 +2026-03-27 22:22:00,2026-03-28 13:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,1,100.0 +2026-04-13 08:21:00,2026-04-13 14:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,13.5,0,126.91 +2026-02-20 04:48:00,2026-02-20 18:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,126.26 +2026-04-12 10:38:00,2026-04-13 21:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,216.4,1,100.0 +2026-04-15 20:08:00,2026-04-17 10:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,0,115.53 +2026-03-07 18:13:00,2026-03-10 12:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,121.34 +2026-03-02 00:09:00,2026-03-03 19:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,0,102.68 +2026-04-06 06:22:56,2026-04-06 07:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,2.1,0.0,0.383,Fanduel,POINTS_SPREAD,3.0,1,100.0 +2026-03-24 12:44:00,2026-03-27 12:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,119.49 +2026-04-05 11:38:46,2026-04-05 12:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,51.9,0.421,Fanduel,POINTS_TOTAL,52.4,1,113.24 +2026-04-01 12:27:00,2026-04-01 17:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,9.9,0,100.0 +2026-04-12 17:44:00,2026-04-14 15:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,7.9,0,119.31 +2026-03-25 20:57:00,2026-03-28 20:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,15.6,1,116.71 +2026-03-19 19:24:00,2026-03-21 03:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,183.13 +2026-03-06 21:09:00,2026-03-08 19:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,114.39 +2026-03-16 02:32:56,2026-03-16 02:00:00,NHL,Boston Bruins,Carolina Hurricanes,-0.5,0.0,0.633,Fanduel,POINTS_SPREAD,1.1,1,112.37 +2026-02-21 22:51:00,2026-02-22 19:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,133.44 +2026-04-02 07:03:00,2026-04-04 21:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,0,100.83 +2026-03-10 03:53:00,2026-03-13 01:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,12.8,1,110.83 +2026-04-10 23:42:20,2026-04-11 01:00:00,NBA,Los Angeles Lakers,Miami Heat,3.3,0.0,0.063,Fanduel,POINTS_SPREAD,1.5,0,143.44 +2026-03-27 13:25:00,2026-03-27 21:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,235.0,1,123.96 +2026-03-12 07:28:00,2026-03-13 18:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,0,100.0 +2026-04-05 23:41:08,2026-04-06 00:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,227.1,0.573,BetMGM,POINTS_TOTAL,224.2,0,101.93 +2026-04-09 08:33:00,2026-04-10 13:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.8,1,114.07 +2026-03-20 12:43:00,2026-03-23 05:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,1,108.56 +2026-04-17 09:15:48,2026-04-17 09:00:00,NHL,Boston Bruins,Edmonton Oilers,3.1,0.0,0.81,BetMGM,POINTS_SPREAD,0.5,0,100.0 +2026-04-04 01:38:00,2026-04-06 10:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,1,104.43 +2026-04-18 06:26:00,2026-04-20 10:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,148.08 +2026-04-02 13:51:00,2026-04-04 00:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,226.2,0,115.02 +2026-04-11 11:38:00,2026-04-14 07:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.3,0,100.0 +2026-02-24 03:30:00,2026-02-26 13:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,215.1,0,127.57 +2026-02-28 07:30:56,2026-02-28 07:00:00,NBA,Dallas Mavericks,Miami Heat,-0.2,0.0,0.183,Fanduel,POINTS_SPREAD,4.3,0,100.0 +2026-03-11 21:12:00,2026-03-14 04:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,106.16 +2026-03-08 11:27:22,2026-03-08 09:00:00,NBA,Miami Heat,Denver Nuggets,-2.5,0.0,0.941,Fanduel,POINTS_SPREAD,1.4,1,133.24 +2026-03-03 08:27:55,2026-03-03 08:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,8.5,0.694,BetMGM,POINTS_TOTAL,12.2,1,114.96 +2026-03-14 07:39:00,2026-03-16 01:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.9,1,124.5 +2026-04-05 02:19:00,2026-04-07 15:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,154.19 +2026-04-01 00:53:07,2026-04-01 01:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.734,Fanduel,MONEYLINE,0.0,NA,177.43 +2026-03-11 23:01:00,2026-03-12 03:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,165.91 +2026-02-24 04:24:57,2026-02-24 04:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,8.9,0.872,Fanduel,POINTS_TOTAL,5.3,1,102.78 +2026-03-01 15:14:34,2026-03-01 14:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,2.9,0.0,0.881,Fanduel,POINTS_SPREAD,1.1,0,133.73 +2026-02-24 11:16:36,2026-02-24 13:00:00,NHL,New York Rangers,Boston Bruins,1.3,0.0,0.07,Fanduel,POINTS_SPREAD,1.9,0,138.19 +2026-03-08 16:18:06,2026-03-08 15:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,-2.6,0.0,0.595,Fanduel,POINTS_SPREAD,2.9,0,110.99 +2026-02-24 00:04:00,2026-02-24 18:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,149.36 +2026-04-12 01:36:27,2026-04-11 23:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.947,BetMGM,MONEYLINE,0.0,NA,132.16 +2026-03-05 19:53:48,2026-03-05 21:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,3.5,0.41,BetMGM,POINTS_TOTAL,5.9,0,104.66 +2026-04-06 01:03:45,2026-04-06 01:00:00,NFL,Philadelphia Eagles,Buffalo Bills,1.1,0.0,0.382,BetMGM,POINTS_SPREAD,0.3,1,100.0 +2026-03-13 12:47:03,2026-03-13 11:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.767,Fanduel,MONEYLINE,0.0,NA,108.4 +2026-03-21 08:25:00,2026-03-22 10:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,124.31 +2026-03-19 16:59:34,2026-03-19 16:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,59.0,0.931,BetMGM,POINTS_TOTAL,60.7,1,100.0 +2026-03-23 08:54:00,2026-03-24 06:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,1,144.55 +2026-03-25 02:26:00,2026-03-27 20:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,51.1,0,103.05 +2026-02-27 15:07:00,2026-02-28 03:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,5.0,0,100.0 +2026-04-01 04:58:12,2026-04-01 04:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,217.7,0.54,Fanduel,POINTS_TOTAL,214.0,0,135.67 +2026-03-10 09:28:00,2026-03-13 00:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,4.0,0,106.21 +2026-03-31 17:43:00,2026-04-01 20:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,12.9,0,100.03 +2026-03-18 16:27:00,2026-03-19 08:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,1,100.0 +2026-03-07 12:03:38,2026-03-07 13:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,3.5,0.448,Fanduel,POINTS_TOTAL,3.5,0,107.14 +2026-02-22 21:42:00,2026-02-23 04:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,6.5,0,113.03 +2026-03-06 20:25:51,2026-03-06 20:00:00,NHL,New York Rangers,Carolina Hurricanes,-4.9,0.0,0.477,BetMGM,POINTS_SPREAD,5.1,0,100.0 +2026-03-14 18:47:00,2026-03-14 20:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,0,135.62 +2026-04-03 00:10:00,2026-04-05 12:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,109.26 +2026-04-14 06:47:00,2026-04-15 16:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,1,149.59 +2026-03-29 12:04:04,2026-03-29 10:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,6.9,0.0,0.756,Fanduel,POINTS_SPREAD,0.8,1,100.0 +2026-03-31 12:24:00,2026-04-01 19:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.4,1,104.59 +2026-03-28 06:33:20,2026-03-28 05:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.613,Fanduel,MONEYLINE,0.0,NA,166.68 +2026-02-20 07:22:00,2026-02-21 15:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,221.3,0,101.0 +2026-03-31 10:49:00,2026-04-01 14:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,150.88 +2026-04-20 17:14:00,2026-04-21 06:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,233.1,1,108.54 +2026-03-22 16:33:00,2026-03-22 21:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-08 20:13:50,2026-04-08 21:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.488,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-17 18:25:22,2026-04-17 17:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,3.0,0.0,0.491,BetMGM,POINTS_SPREAD,0.4,0,125.38 +2026-03-12 04:24:00,2026-03-15 00:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,59.9,0,100.0 +2026-04-17 14:53:00,2026-04-18 16:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,1,100.0 +2026-03-18 14:21:00,2026-03-20 18:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,125.77 +2026-04-04 07:53:00,2026-04-05 14:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,6.4,1,110.67 +2026-03-06 17:32:00,2026-03-08 21:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,0,100.0 +2026-04-04 20:32:00,2026-04-05 12:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,1,100.0 +2026-04-16 04:59:25,2026-04-16 05:00:00,NFL,Dallas Cowboys,Miami Dolphins,-2.0,0.0,0.419,BetMGM,POINTS_SPREAD,0.4,1,112.21 +2026-03-16 17:11:19,2026-03-16 17:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.474,BetMGM,MONEYLINE,0.0,NA,150.24 +2026-04-14 10:17:33,2026-04-14 09:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.492,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-19 09:23:13,2026-03-19 09:00:00,NBA,Boston Celtics,Los Angeles Lakers,6.5,0.0,0.479,Fanduel,POINTS_SPREAD,2.4,0,143.11 +2026-03-01 17:38:00,2026-03-02 08:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,124.48 +2026-03-31 06:02:00,2026-04-03 06:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-31 09:31:00,2026-04-01 12:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,121.08 +2026-03-07 19:48:00,2026-03-08 19:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,52.9,1,105.52 +2026-04-06 19:33:00,2026-04-07 16:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,103.75 +2026-03-12 02:25:00,2026-03-14 03:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,1,139.82 +2026-04-04 20:39:36,2026-04-04 21:00:00,NFL,Philadelphia Eagles,Buffalo Bills,-1.4,0.0,0.07,Fanduel,POINTS_SPREAD,0.3,0,106.06 +2026-04-04 22:07:00,2026-04-06 03:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,0,130.02 +2026-04-07 15:46:00,2026-04-09 22:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,0,100.0 +2026-03-13 04:33:00,2026-03-14 05:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,226.0,1,108.79 +2026-04-01 19:42:00,2026-04-03 11:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,122.45 +2026-04-05 07:02:49,2026-04-05 05:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.899,BetMGM,MONEYLINE,0.0,NA,104.19 +2026-03-31 23:24:00,2026-04-02 00:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-09 22:36:00,2026-04-10 12:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.0,0,119.14 +2026-04-10 11:53:00,2026-04-12 13:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-03 09:56:36,2026-04-03 09:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.3,0.0,0.32,BetMGM,POINTS_SPREAD,2.0,1,107.08 +2026-04-20 21:15:01,2026-04-20 21:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.739,Fanduel,MONEYLINE,0.0,NA,136.46 +2026-03-04 18:29:00,2026-03-07 01:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,6.9,0,103.33 +2026-04-05 19:51:00,2026-04-08 01:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,35.8,0,126.0 +2026-03-25 08:08:51,2026-03-25 07:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,57.2,0.877,Fanduel,POINTS_TOTAL,54.0,0,113.26 +2026-03-22 04:31:00,2026-03-22 22:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,137.28 +2026-04-06 11:50:00,2026-04-09 10:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,234.0,0,103.2 +2026-03-22 21:27:00,2026-03-25 21:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,219.3,0,101.2 +2026-02-22 06:47:00,2026-02-23 19:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,162.4 +2026-04-18 22:26:00,2026-04-20 07:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,0,115.39 +2026-03-28 17:11:00,2026-03-30 12:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.2,0,100.0 +2026-03-01 19:44:00,2026-03-03 02:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,44.9,0,115.38 +2026-03-31 14:19:10,2026-03-31 14:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.651,BetMGM,MONEYLINE,0.0,NA,135.38 +2026-03-29 01:18:07,2026-03-29 01:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,13.1,0.134,BetMGM,POINTS_TOTAL,10.6,0,131.08 +2026-03-05 01:14:02,2026-03-05 01:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.178,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-22 13:57:00,2026-03-24 13:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,27.8,0,105.72 +2026-04-03 02:56:00,2026-04-03 10:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.2,0,115.35 +2026-03-05 03:46:00,2026-03-06 01:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,1,126.4 +2026-04-01 19:36:00,2026-04-02 18:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.2,1,100.0 +2026-04-10 17:23:00,2026-04-11 09:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,0,100.0 +2026-04-11 17:08:00,2026-04-14 03:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,210.68 +2026-03-12 07:27:00,2026-03-13 23:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,137.95 +2026-03-25 23:02:00,2026-03-28 07:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,1,104.93 +2026-02-23 02:56:00,2026-02-25 22:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,31.5,0,117.63 +2026-02-21 19:47:52,2026-02-21 20:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,-0.4,0.0,0.516,BetMGM,POINTS_SPREAD,2.1,1,115.41 +2026-03-16 23:33:00,2026-03-18 02:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,161.84 +2026-03-19 05:26:00,2026-03-20 03:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,143.03 +2026-04-06 17:40:00,2026-04-07 15:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,237.2,0,121.72 +2026-03-23 18:51:00,2026-03-25 07:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,13.4,0,109.45 +2026-03-30 03:38:00,2026-03-30 14:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,1,120.65 +2026-04-17 21:54:26,2026-04-17 21:00:00,NBA,Milwaukee Bucks,Miami Heat,1.2,0.0,0.908,BetMGM,POINTS_SPREAD,2.3,1,105.56 +2026-04-17 10:49:00,2026-04-18 17:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,217.5,0,100.51 +2026-04-09 01:56:32,2026-04-09 01:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,3.5,0.903,BetMGM,POINTS_TOTAL,3.7,0,100.0 +2026-04-07 22:17:00,2026-04-09 20:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,0,112.7 +2026-04-03 07:44:00,2026-04-06 04:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,233.5,1,118.2 +2026-02-25 12:14:00,2026-02-27 02:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,164.65 +2026-04-12 17:04:39,2026-04-12 18:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.337,Fanduel,MONEYLINE,0.0,NA,108.58 +2026-02-25 15:00:00,2026-02-25 21:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,1,100.0 +2026-03-25 00:58:00,2026-03-25 16:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,113.48 +2026-03-29 01:35:26,2026-03-29 00:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,33.0,0.658,BetMGM,POINTS_TOTAL,32.9,1,108.87 +2026-03-01 20:28:52,2026-03-01 20:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.166,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-14 14:42:00,2026-03-15 05:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-02 00:12:00,2026-03-03 05:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.0,1,124.09 +2026-04-06 01:04:27,2026-04-06 01:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.047,Fanduel,MONEYLINE,0.0,NA,146.07 +2026-03-07 15:35:38,2026-03-07 17:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.198,BetMGM,MONEYLINE,0.0,NA,131.0 +2026-02-24 12:49:24,2026-02-24 13:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.58,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-11 18:18:00,2026-04-12 07:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.8,1,100.0 +2026-04-02 17:15:00,2026-04-05 07:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,229.8,1,127.1 +2026-02-24 08:49:22,2026-02-24 09:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,3.5,0.291,Fanduel,POINTS_TOTAL,5.1,0,102.02 +2026-03-04 01:04:00,2026-03-04 17:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,0,125.71 +2026-03-21 18:31:57,2026-03-21 19:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,34.0,0.572,BetMGM,POINTS_TOTAL,38.8,0,100.83 +2026-03-18 21:56:00,2026-03-19 20:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.6,1,121.32 +2026-03-17 11:52:00,2026-03-19 09:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,1,100.0 +2026-03-11 17:17:00,2026-03-11 21:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,210.4,1,102.06 +2026-03-22 16:08:02,2026-03-22 15:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.428,Fanduel,MONEYLINE,0.0,NA,101.53 +2026-03-11 18:55:00,2026-03-11 20:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.9,1,113.3 +2026-03-20 13:21:12,2026-03-20 13:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.64,BetMGM,MONEYLINE,0.0,NA,184.55 +2026-02-27 22:49:00,2026-02-28 12:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,233.3,1,106.54 +2026-03-28 10:32:40,2026-03-28 11:00:00,NBA,Dallas Mavericks,Boston Celtics,0.3,0.0,0.076,BetMGM,POINTS_SPREAD,2.6,1,100.0 +2026-04-06 05:04:00,2026-04-08 02:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-20 00:51:00,2026-04-20 14:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,133.36 +2026-04-06 22:18:02,2026-04-06 22:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.828,Fanduel,MONEYLINE,0.0,NA,127.25 +2026-02-24 14:49:00,2026-02-26 21:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,136.5 +2026-04-07 14:56:00,2026-04-09 17:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.6,0,100.0 +2026-03-22 15:29:54,2026-03-22 14:00:00,NHL,Florida Panthers,Colorado Avalanche,3.2,0.0,0.555,BetMGM,POINTS_SPREAD,2.0,0,100.0 +2026-04-19 04:02:02,2026-04-19 04:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.728,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-24 16:15:00,2026-03-27 16:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,121.26 +2026-04-16 13:12:00,2026-04-17 08:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.9,1,100.0 +2026-03-18 08:44:02,2026-03-18 08:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,212.2,0.728,BetMGM,POINTS_TOTAL,205.9,1,100.0 +2026-03-30 14:13:00,2026-04-02 09:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,1,120.2 +2026-04-05 01:02:48,2026-04-05 00:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,3.5,0.51,BetMGM,POINTS_TOTAL,3.5,0,114.25 +2026-03-29 22:09:00,2026-04-01 21:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,0,143.21 +2026-04-09 01:07:00,2026-04-10 01:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,6.5,1,100.0 +2026-04-01 02:30:07,2026-04-01 03:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.134,BetMGM,MONEYLINE,0.0,NA,122.42 +2026-04-01 09:09:00,2026-04-03 04:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,101.16 +2026-03-14 01:57:25,2026-03-14 04:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,234.5,0.069,Fanduel,POINTS_TOTAL,233.4,1,103.39 +2026-03-29 10:44:00,2026-03-31 11:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,108.36 +2026-03-09 14:20:00,2026-03-09 22:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,10.1,1,116.88 +2026-03-12 21:49:00,2026-03-13 13:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,189.6 +2026-03-12 20:29:00,2026-03-13 18:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,0,134.81 +2026-04-06 15:46:00,2026-04-06 15:00:00,NHL,New York Rangers,Florida Panthers,1.6,0.0,0.9,Fanduel,POINTS_SPREAD,0.7,1,117.19 +2026-03-04 11:25:36,2026-03-04 11:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.67,BetMGM,MONEYLINE,0.0,NA,135.61 +2026-03-27 07:31:00,2026-03-29 06:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,224.3,1,111.08 +2026-04-17 19:50:00,2026-04-18 20:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,223.2,1,100.0 +2026-04-19 06:02:39,2026-04-19 05:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.387,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-11 23:37:00,2026-03-13 18:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,0,119.82 +2026-03-13 12:05:00,2026-03-15 19:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.2,1,100.0 +2026-03-10 08:21:58,2026-03-10 08:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,225.3,0.261,BetMGM,POINTS_TOTAL,223.2,0,100.67 +2026-03-09 17:15:00,2026-03-12 00:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,102.11 +2026-03-02 23:17:34,2026-03-02 23:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,221.4,0.231,Fanduel,POINTS_TOTAL,218.8,1,100.0 +2026-04-08 13:25:00,2026-04-10 04:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-07 03:28:00,2026-04-09 00:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,239.7,1,126.4 +2026-03-22 20:30:14,2026-03-22 20:00:00,NFL,Philadelphia Eagles,Buffalo Bills,1.5,0.0,0.268,BetMGM,POINTS_SPREAD,2.5,1,100.0 +2026-04-19 03:18:00,2026-04-20 14:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.9,1,111.45 +2026-03-12 14:22:07,2026-03-12 15:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,11.2,0.284,Fanduel,POINTS_TOTAL,11.3,1,127.23 +2026-04-08 19:39:00,2026-04-10 04:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,162.87 +2026-03-29 10:59:14,2026-03-29 11:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.3,0.0,0.568,BetMGM,POINTS_SPREAD,1.2,0,112.94 +2026-04-13 18:03:26,2026-04-13 17:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.558,Fanduel,MONEYLINE,0.0,NA,156.7 +2026-03-13 14:43:00,2026-03-15 06:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,162.55 +2026-04-13 07:13:00,2026-04-16 02:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,11.5,1,126.73 +2026-04-12 02:27:00,2026-04-14 10:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,48.5,1,107.26 +2026-03-20 02:45:00,2026-03-22 04:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,217.8,1,112.22 +2026-03-25 00:07:00,2026-03-27 14:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.2,0,100.0 +2026-03-21 05:19:00,2026-03-22 04:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,0,112.07 +2026-03-11 08:31:26,2026-03-11 07:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,1.3,0.0,0.858,BetMGM,POINTS_SPREAD,5.6,0,100.0 +2026-03-24 08:03:00,2026-03-24 17:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-16 21:35:00,2026-03-19 17:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.4,1,114.03 +2026-04-05 03:02:00,2026-04-07 01:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,1,123.08 +2026-02-22 07:11:00,2026-02-23 14:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-04 14:30:21,2026-04-04 14:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,8.4,0.552,BetMGM,POINTS_TOTAL,8.8,1,110.79 +2026-04-02 22:14:00,2026-04-04 17:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,1,109.29 +2026-04-02 06:07:00,2026-04-04 03:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,145.23 +2026-03-07 03:47:51,2026-03-07 02:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.627,BetMGM,MONEYLINE,0.0,NA,159.63 +2026-03-13 06:21:00,2026-03-15 23:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,50.7,0,100.71 +2026-03-03 06:30:00,2026-03-05 08:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,39.1,1,100.0 +2026-04-15 23:13:00,2026-04-16 07:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,122.47 +2026-04-08 17:56:00,2026-04-11 10:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.4,0,120.51 +2026-04-14 22:13:49,2026-04-14 21:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,3.5,0.799,BetMGM,POINTS_TOTAL,7.8,0,100.0 +2026-03-15 19:15:00,2026-03-16 12:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,110.11 +2026-03-30 02:31:32,2026-03-30 02:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,228.8,0.203,Fanduel,POINTS_TOTAL,232.0,0,108.6 +2026-04-04 22:03:13,2026-04-04 22:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.379,Fanduel,MONEYLINE,0.0,NA,103.53 +2026-02-17 22:12:00,2026-02-20 22:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,127.23 +2026-04-02 04:42:52,2026-04-02 06:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.266,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-30 14:21:00,2026-04-01 01:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,230.9,0,100.41 +2026-03-24 07:34:30,2026-03-24 08:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.575,Fanduel,MONEYLINE,0.0,NA,149.14 +2026-03-30 21:06:02,2026-03-30 19:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,-4.5,0.0,0.928,Fanduel,POINTS_SPREAD,4.1,1,133.21 +2026-03-12 03:24:00,2026-03-14 23:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,1,100.0 +2026-03-10 04:33:00,2026-03-12 03:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,213.4,0,121.85 +2026-04-06 04:59:00,2026-04-06 23:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,0,100.0 +2026-04-05 23:57:00,2026-04-06 18:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,30.3,0,100.0 +2026-03-21 04:26:00,2026-03-23 01:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.6,0,112.61 +2026-02-26 20:54:07,2026-02-26 22:00:00,NBA,Golden State Warriors,Phoenix Suns,1.1,0.0,0.384,Fanduel,POINTS_SPREAD,1.9,1,117.29 +2026-03-29 18:40:51,2026-03-29 18:00:00,NBA,Golden State Warriors,Los Angeles Lakers,-1.6,0.0,0.277,Fanduel,POINTS_SPREAD,2.5,0,133.82 +2026-03-05 17:59:09,2026-03-05 18:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.612,Fanduel,MONEYLINE,0.0,NA,135.6 +2026-03-23 07:53:00,2026-03-23 23:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,1,136.16 +2026-03-01 03:26:00,2026-03-02 08:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.8,1,140.92 +2026-04-04 17:01:00,2026-04-06 20:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,105.67 +2026-03-09 12:38:00,2026-03-10 08:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,175.65 +2026-02-19 07:16:00,2026-02-21 16:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,0,130.44 +2026-03-16 16:18:00,2026-03-19 01:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.7,0,103.13 +2026-03-25 08:44:32,2026-03-25 08:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,14.7,0.753,Fanduel,POINTS_TOTAL,15.8,1,116.04 +2026-03-10 13:43:00,2026-03-13 04:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,219.8,0,125.38 +2026-03-29 06:28:26,2026-03-29 07:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.058,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-11 06:33:00,2026-03-12 06:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,1,100.0 +2026-02-24 17:33:00,2026-02-25 10:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.5,1,101.22 +2026-03-28 18:40:00,2026-03-29 14:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,123.36 +2026-03-08 13:08:19,2026-03-08 13:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,-1.2,0.0,0.824,BetMGM,POINTS_SPREAD,1.3,1,104.93 +2026-04-06 04:33:00,2026-04-07 10:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,8.2,1,117.38 +2026-03-28 02:43:00,2026-03-30 11:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,54.5,1,118.58 +2026-03-01 18:45:00,2026-03-03 00:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,27.1,0,110.18 +2026-03-29 11:59:00,2026-03-30 14:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,1,100.0 +2026-03-31 01:23:00,2026-04-02 20:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,109.88 +2026-03-29 18:37:00,2026-03-31 10:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,13.0,0,126.08 +2026-02-20 06:46:00,2026-02-22 23:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,225.9,1,107.6 +2026-02-26 20:13:00,2026-02-27 21:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,11.9,1,134.78 +2026-02-22 19:39:00,2026-02-25 10:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,105.38 +2026-02-18 03:02:00,2026-02-21 00:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,113.83 +2026-04-01 09:13:00,2026-04-04 09:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,50.0,0,101.55 +2026-04-01 11:41:00,2026-04-02 05:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,13.0,1,100.63 +2026-04-14 23:20:00,2026-04-15 15:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,10.4,1,122.2 +2026-03-14 04:12:21,2026-03-14 02:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.802,Fanduel,MONEYLINE,0.0,NA,147.96 +2026-04-05 07:34:54,2026-04-05 07:00:00,NHL,Boston Bruins,Carolina Hurricanes,-0.2,0.0,0.555,BetMGM,POINTS_SPREAD,1.9,0,107.92 +2026-02-25 06:26:00,2026-02-26 13:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,33.0,1,127.8 +2026-02-23 04:42:00,2026-02-23 21:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,0,100.0 +2026-04-09 03:55:56,2026-04-09 03:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.833,Fanduel,MONEYLINE,0.0,NA,146.2 +2026-03-08 09:59:00,2026-03-08 12:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-20 09:24:00,2026-04-21 11:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.2,1,122.64 +2026-03-26 00:40:00,2026-03-26 01:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-25 19:58:00,2026-03-27 19:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.2,1,121.34 +2026-03-03 04:58:00,2026-03-03 23:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.0,0,100.0 +2026-02-24 06:40:10,2026-02-24 07:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,-0.8,0.0,0.351,BetMGM,POINTS_SPREAD,1.7,0,100.0 +2026-03-06 07:17:00,2026-03-07 08:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,52.4,0,123.35 +2026-02-21 01:00:20,2026-02-20 23:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,-0.9,0.0,0.813,Fanduel,POINTS_SPREAD,3.7,1,115.82 +2026-04-08 11:46:00,2026-04-11 05:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,36.3,1,124.64 +2026-04-18 04:50:00,2026-04-18 14:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.5,0,110.87 +2026-03-14 23:02:00,2026-03-17 07:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,132.95 +2026-02-19 00:34:00,2026-02-21 13:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,0,100.0 +2026-04-03 20:03:00,2026-04-05 18:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.9,0,100.0 +2026-03-30 22:39:00,2026-03-31 12:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,135.96 +2026-03-24 02:14:43,2026-03-24 03:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,231.0,0.204,Fanduel,POINTS_TOTAL,227.9,0,118.2 +2026-04-10 01:43:00,2026-04-10 05:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,143.12 +2026-04-18 02:37:00,2026-04-20 20:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,189.23 +2026-03-09 00:24:12,2026-03-09 00:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.89,BetMGM,POINTS_SPREAD,4.4,1,126.99 +2026-04-03 10:26:00,2026-04-03 18:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.7,0,100.0 +2026-03-03 17:18:00,2026-03-04 20:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,1,108.29 +2026-04-10 18:21:00,2026-04-10 23:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,164.85 +2026-02-25 19:01:00,2026-02-26 19:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,33.8,0,118.9 +2026-04-10 06:03:09,2026-04-10 05:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.862,BetMGM,MONEYLINE,0.0,NA,124.44 +2026-02-25 09:43:49,2026-02-25 11:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.349,BetMGM,MONEYLINE,0.0,NA,138.02 +2026-04-09 08:14:28,2026-04-09 08:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.836,BetMGM,MONEYLINE,0.0,NA,103.84 +2026-03-20 21:31:00,2026-03-21 22:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,10.5,1,137.37 +2026-03-06 06:09:00,2026-03-08 11:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.3,0,100.0 +2026-03-06 13:33:33,2026-03-06 12:00:00,NBA,Phoenix Suns,Los Angeles Lakers,1.9,0.0,0.942,BetMGM,POINTS_SPREAD,2.4,1,100.0 +2026-03-22 04:58:21,2026-03-22 03:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.902,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-01 17:00:00,2026-04-03 14:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,132.77 +2026-02-20 18:07:08,2026-02-20 16:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.873,Fanduel,MONEYLINE,0.0,NA,137.72 +2026-04-15 09:11:00,2026-04-18 01:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,156.92 +2026-04-18 16:22:00,2026-04-20 05:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,1,121.13 +2026-03-01 13:05:04,2026-03-01 13:00:00,NHL,Boston Bruins,New York Rangers,0.0,25.1,0.256,Fanduel,POINTS_TOTAL,29.2,0,111.03 +2026-04-18 23:51:00,2026-04-20 00:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,1,126.71 +2026-04-05 13:00:48,2026-04-05 14:00:00,NFL,Detroit Lions,Miami Dolphins,2.5,0.0,0.06,Fanduel,POINTS_SPREAD,0.9,1,100.0 +2026-02-26 03:18:02,2026-02-26 04:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.078,Fanduel,MONEYLINE,0.0,NA,116.44 +2026-03-05 16:20:02,2026-03-05 16:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,232.5,0.828,Fanduel,POINTS_TOTAL,234.3,0,114.89 +2026-03-23 08:37:00,2026-03-24 03:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-14 05:56:00,2026-03-15 11:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,0,112.14 +2026-03-06 06:35:16,2026-03-06 06:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,223.0,0.946,BetMGM,POINTS_TOTAL,222.2,0,100.0 +2026-02-28 05:10:00,2026-03-02 17:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,109.02 +2026-03-13 18:33:00,2026-03-14 06:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,43.1,1,105.62 +2026-02-18 12:24:00,2026-02-21 11:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,115.89 +2026-03-08 18:16:43,2026-03-08 18:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,47.6,0.504,BetMGM,POINTS_TOTAL,43.8,0,117.6 +2026-04-05 22:51:00,2026-04-07 01:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,0,105.67 +2026-03-28 03:54:55,2026-03-28 04:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,35.6,0.194,Fanduel,POINTS_TOTAL,36.8,0,115.01 +2026-03-15 15:03:00,2026-03-17 16:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.3,1,100.0 +2026-03-15 14:03:00,2026-03-17 08:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,145.0 +2026-03-08 08:21:00,2026-03-09 11:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,33.7,1,100.0 +2026-02-22 16:55:00,2026-02-23 06:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,228.7,0,104.15 +2026-03-14 04:48:00,2026-03-14 07:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-10 19:19:00,2026-03-13 13:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,122.68 +2026-03-23 22:36:43,2026-03-23 21:00:00,NBA,Miami Heat,Milwaukee Bucks,-4.0,0.0,0.904,Fanduel,POINTS_SPREAD,2.1,1,106.47 +2026-04-02 18:40:00,2026-04-03 03:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,61.7,0,100.0 +2026-03-26 01:25:45,2026-03-26 00:00:00,NBA,Boston Celtics,Phoenix Suns,4.3,0.0,0.632,Fanduel,POINTS_SPREAD,3.2,1,119.88 +2026-02-28 23:05:57,2026-02-28 23:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.122,BetMGM,MONEYLINE,0.0,NA,144.82 +2026-04-07 00:10:20,2026-04-07 02:00:00,NBA,Denver Nuggets,Dallas Mavericks,3.1,0.0,0.063,Fanduel,POINTS_SPREAD,1.8,1,116.89 +2026-03-11 18:18:50,2026-03-11 18:00:00,NBA,Denver Nuggets,Boston Celtics,-0.0,0.0,0.738,BetMGM,POINTS_SPREAD,0.1,0,100.0 +2026-03-20 07:57:02,2026-03-20 07:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,229.2,0.778,BetMGM,POINTS_TOTAL,225.3,0,102.08 +2026-04-09 18:45:00,2026-04-12 06:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,112.56 +2026-03-05 17:04:00,2026-03-06 00:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,220.7,0,100.0 +2026-02-27 06:10:00,2026-03-02 04:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,155.75 +2026-04-11 01:37:00,2026-04-13 16:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,167.91 +2026-04-05 23:15:00,2026-04-07 05:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,161.56 +2026-03-06 05:19:00,2026-03-07 14:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.9,0,100.0 +2026-03-31 19:50:00,2026-04-02 22:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,0,138.75 +2026-03-11 02:23:00,2026-03-12 20:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,33.3,0,112.71 +2026-03-04 07:03:00,2026-03-06 14:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,40.3,0,104.58 +2026-03-13 22:26:00,2026-03-13 23:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,109.25 +2026-04-19 22:04:00,2026-04-20 00:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,114.12 +2026-03-18 23:40:00,2026-03-21 09:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,133.22 +2026-04-18 09:20:00,2026-04-19 02:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,226.3,1,119.22 +2026-04-18 19:15:00,2026-04-20 23:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,1,115.47 +2026-03-09 04:15:00,2026-03-11 14:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,240.8,0,100.0 +2026-04-05 10:30:00,2026-04-08 01:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,229.6,1,126.16 +2026-02-26 02:30:00,2026-02-26 13:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,1,100.0 +2026-04-14 07:21:57,2026-04-14 07:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.772,BetMGM,MONEYLINE,0.0,NA,114.26 +2026-03-24 11:02:00,2026-03-26 02:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,1,106.25 +2026-03-05 00:24:00,2026-03-07 19:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,207.2,1,102.33 +2026-02-23 09:54:00,2026-02-24 18:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.6,0,106.2 +2026-03-27 11:37:20,2026-03-27 13:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.263,Fanduel,MONEYLINE,0.0,NA,135.6 +2026-04-12 17:16:00,2026-04-14 23:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,108.33 +2026-04-18 08:02:00,2026-04-19 09:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-09 16:48:37,2026-03-09 15:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.659,Fanduel,MONEYLINE,0.0,NA,152.19 +2026-03-07 06:34:00,2026-03-09 08:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,122.54 +2026-04-11 23:44:00,2026-04-12 02:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,232.0,0,100.45 +2026-03-02 09:34:00,2026-03-03 03:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.3,0,123.34 +2026-03-01 17:57:30,2026-03-01 17:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,242.3,0.375,BetMGM,POINTS_TOTAL,249.5,1,111.27 +2026-03-20 03:20:57,2026-03-20 04:00:00,NBA,Dallas Mavericks,Boston Celtics,-5.0,0.0,0.172,Fanduel,POINTS_SPREAD,1.1,1,120.92 +2026-03-16 00:44:00,2026-03-18 23:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,0,100.0 +2026-03-01 14:08:00,2026-03-02 18:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,142.06 +2026-04-02 23:10:18,2026-04-03 00:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,33.4,0.385,BetMGM,POINTS_TOTAL,31.5,1,100.0 +2026-03-23 12:48:15,2026-03-23 13:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.457,BetMGM,MONEYLINE,0.0,NA,120.21 +2026-03-09 05:52:22,2026-03-09 05:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.591,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-18 21:56:00,2026-04-21 02:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,233.3,0,103.63 +2026-04-10 00:11:00,2026-04-10 22:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,109.42 +2026-03-04 13:26:12,2026-03-04 15:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,3.5,0.14,BetMGM,POINTS_TOTAL,3.5,0,119.48 +2026-03-07 09:02:00,2026-03-08 11:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,209.7,0,116.93 +2026-04-12 10:28:00,2026-04-13 03:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,100.0 +2026-03-11 00:48:30,2026-03-11 01:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.675,BetMGM,MONEYLINE,0.0,NA,129.38 +2026-04-17 17:19:00,2026-04-19 22:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,55.8,0,104.46 +2026-03-23 19:53:25,2026-03-23 21:00:00,NBA,Phoenix Suns,Milwaukee Bucks,-1.4,0.0,0.369,Fanduel,POINTS_SPREAD,1.2,0,100.0 +2026-03-12 07:35:00,2026-03-12 19:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.8,1,100.0 +2026-03-12 14:17:00,2026-03-15 12:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,15.8,1,108.01 +2026-02-23 03:09:14,2026-02-23 03:00:00,NFL,Miami Dolphins,San Francisco 49ers,-3.2,0.0,0.068,BetMGM,POINTS_SPREAD,0.1,0,100.0 +2026-03-15 16:52:00,2026-03-16 12:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.1,0,102.32 +2026-04-07 02:22:00,2026-04-08 20:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,227.0,1,112.41 +2026-03-24 20:49:00,2026-03-25 03:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,106.21 +2026-04-12 22:38:00,2026-04-15 06:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,0,120.56 +2026-03-27 14:24:00,2026-03-29 06:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,8.2,0,102.58 +2026-02-18 12:31:00,2026-02-21 03:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,11.4,1,128.17 +2026-04-13 03:43:19,2026-04-13 04:00:00,NBA,Dallas Mavericks,Golden State Warriors,-0.7,0.0,0.274,BetMGM,POINTS_SPREAD,2.4,1,100.0 +2026-03-17 03:17:54,2026-03-17 02:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,236.9,0.905,BetMGM,POINTS_TOTAL,238.0,0,113.94 +2026-03-22 18:37:00,2026-03-23 06:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,44.7,0,121.43 +2026-04-12 03:36:00,2026-04-14 20:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-01 15:24:00,2026-03-03 05:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.8,1,123.7 +2026-02-22 22:11:00,2026-02-24 23:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,122.78 +2026-04-13 15:48:00,2026-04-14 21:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,117.12 +2026-03-12 02:49:30,2026-03-12 01:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,37.2,0.925,Fanduel,POINTS_TOTAL,38.7,0,105.11 +2026-03-26 05:18:27,2026-03-26 07:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,12.4,0.047,BetMGM,POINTS_TOTAL,20.1,1,112.49 +2026-04-13 03:38:45,2026-04-13 02:00:00,NBA,Phoenix Suns,Milwaukee Bucks,-5.1,0.0,0.832,BetMGM,POINTS_SPREAD,3.0,1,138.07 +2026-02-24 02:47:00,2026-02-25 21:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,147.48 +2026-03-21 22:29:00,2026-03-23 01:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,142.92 +2026-02-26 23:03:00,2026-02-28 12:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,0,100.0 +2026-03-22 13:03:08,2026-03-22 13:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,7.2,0.0,0.523,BetMGM,POINTS_SPREAD,2.7,1,100.0 +2026-03-23 10:03:00,2026-03-23 21:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-04 05:15:25,2026-04-04 07:00:00,NBA,Dallas Mavericks,Denver Nuggets,-3.8,0.0,0.169,BetMGM,POINTS_SPREAD,3.4,1,100.0 +2026-02-21 15:04:00,2026-02-23 01:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,119.79 +2026-03-01 05:25:13,2026-03-01 04:00:00,NHL,New York Rangers,Florida Panthers,0.7,0.0,0.729,Fanduel,POINTS_SPREAD,0.6,0,115.69 +2026-03-01 13:02:00,2026-03-01 20:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,130.04 +2026-04-04 13:36:00,2026-04-05 03:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,0,100.0 +2026-03-25 13:28:00,2026-03-25 21:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,227.6,0,108.93 +2026-03-02 11:56:50,2026-03-02 12:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,51.8,0.438,BetMGM,POINTS_TOTAL,55.2,0,116.8 +2026-02-27 21:01:00,2026-02-28 19:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,1,100.0 +2026-04-20 23:09:16,2026-04-21 00:00:00,NBA,Miami Heat,Golden State Warriors,0.0,240.6,0.246,Fanduel,POINTS_TOTAL,240.3,0,100.68 +2026-04-15 05:41:00,2026-04-15 12:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,54.2,1,126.69 +2026-03-23 02:15:00,2026-03-25 15:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,147.03 +2026-03-05 03:31:00,2026-03-07 09:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,232.4,0,114.67 +2026-03-04 06:37:00,2026-03-06 22:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-05 13:14:50,2026-04-05 13:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,3.0,0.0,0.088,Fanduel,POINTS_SPREAD,0.5,1,100.0 +2026-02-20 23:13:00,2026-02-21 15:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,126.76 +2026-03-26 23:48:00,2026-03-28 05:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,0,105.34 +2026-02-27 04:33:00,2026-03-01 09:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,149.5 +2026-04-02 03:46:00,2026-04-04 14:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,56.4,1,118.81 +2026-04-06 01:17:50,2026-04-06 02:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,29.1,0.338,BetMGM,POINTS_TOTAL,30.5,0,115.45 +2026-03-01 21:41:00,2026-03-03 23:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,123.5 +2026-04-12 23:17:00,2026-04-14 02:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-04 18:46:00,2026-04-06 15:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.0,0,100.0 +2026-02-24 20:19:33,2026-02-24 20:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,244.9,0.492,BetMGM,POINTS_TOTAL,251.8,1,100.0 +2026-04-09 15:59:34,2026-04-09 16:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.281,BetMGM,MONEYLINE,0.0,NA,138.54 +2026-03-21 12:02:45,2026-03-21 11:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.782,Fanduel,MONEYLINE,0.0,NA,199.08 +2026-04-08 13:09:00,2026-04-11 06:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.7,1,108.08 +2026-03-04 11:04:00,2026-03-06 04:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,103.41 +2026-04-18 21:40:00,2026-04-20 04:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,59.6,0,103.33 +2026-02-24 15:42:00,2026-02-26 19:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,145.85 +2026-03-08 02:13:00,2026-03-08 03:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,0,109.3 +2026-03-09 00:08:00,2026-03-10 08:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,111.89 +2026-03-24 06:44:00,2026-03-24 10:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,225.5,1,120.92 +2026-04-08 05:45:00,2026-04-10 04:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-21 20:58:00,2026-03-23 09:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,47.7,0,101.69 +2026-04-08 10:17:34,2026-04-08 10:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,-2.1,0.0,0.681,BetMGM,POINTS_SPREAD,1.1,0,100.0 +2026-03-06 20:07:00,2026-03-07 17:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,37.8,1,110.64 +2026-03-13 13:19:15,2026-03-13 12:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.757,Fanduel,MONEYLINE,0.0,NA,156.72 +2026-04-06 04:56:00,2026-04-08 19:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,0,116.17 +2026-04-10 08:10:00,2026-04-11 11:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,137.62 +2026-04-19 03:04:00,2026-04-19 10:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,206.4,0,103.38 +2026-04-13 00:40:00,2026-04-13 19:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,1,104.65 +2026-04-13 20:52:00,2026-04-15 11:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,112.09 +2026-04-06 11:41:00,2026-04-09 04:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.5,1,100.0 +2026-03-08 06:23:00,2026-03-09 11:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,123.14 +2026-03-08 01:42:00,2026-03-09 17:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,113.41 +2026-04-14 10:20:13,2026-04-14 09:00:00,NBA,Miami Heat,Boston Celtics,0.0,228.6,0.579,BetMGM,POINTS_TOTAL,224.7,1,100.0 +2026-04-07 03:01:00,2026-04-08 05:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,34.4,0,105.01 +2026-03-25 20:24:00,2026-03-26 16:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,5.2,0,100.0 +2026-02-27 11:34:00,2026-02-27 22:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,153.12 +2026-03-12 05:28:00,2026-03-12 06:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.4,0,133.48 +2026-03-13 17:20:51,2026-03-13 17:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,36.5,0.527,Fanduel,POINTS_TOTAL,34.8,0,127.8 +2026-02-25 14:46:10,2026-02-25 15:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,9.1,0.401,BetMGM,POINTS_TOTAL,9.1,0,106.47 +2026-03-17 13:39:00,2026-03-18 15:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,203.9,1,106.84 +2026-04-03 01:04:46,2026-04-03 01:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.521,BetMGM,MONEYLINE,0.0,NA,109.49 +2026-04-15 02:43:00,2026-04-15 16:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,21.2,0,135.16 +2026-03-15 10:14:52,2026-03-15 11:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,12.9,0.266,Fanduel,POINTS_TOTAL,10.4,1,122.0 +2026-03-18 03:09:58,2026-03-18 04:00:00,NHL,Boston Bruins,Edmonton Oilers,-4.1,0.0,0.411,Fanduel,POINTS_SPREAD,0.2,1,131.59 +2026-03-02 14:07:00,2026-03-04 16:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.0,1,124.97 +2026-04-07 01:01:00,2026-04-09 11:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,165.76 +2026-02-28 14:45:00,2026-03-02 09:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,9.5,1,123.39 +2026-03-08 22:21:00,2026-03-09 04:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,134.06 +2026-04-18 22:45:27,2026-04-19 00:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,208.0,0.097,Fanduel,POINTS_TOTAL,200.6,1,100.0 +2026-02-23 12:25:00,2026-02-24 07:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,174.09 +2026-03-27 15:35:25,2026-03-27 15:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.719,BetMGM,MONEYLINE,0.0,NA,140.65 +2026-03-17 11:34:00,2026-03-20 05:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,123.51 +2026-04-21 02:13:00,2026-04-21 06:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.0,1,100.0 +2026-02-19 16:52:00,2026-02-21 02:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.7,0,100.0 +2026-02-28 14:26:31,2026-02-28 13:00:00,NFL,Baltimore Ravens,San Francisco 49ers,-0.2,0.0,0.914,BetMGM,POINTS_SPREAD,1.0,1,108.18 +2026-04-05 22:23:00,2026-04-08 06:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,53.4,0,100.0 +2026-04-19 00:08:00,2026-04-21 00:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,0,100.0 +2026-04-18 10:14:00,2026-04-21 02:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,108.83 +2026-03-12 19:54:03,2026-03-12 19:00:00,NFL,Miami Dolphins,Buffalo Bills,0.7,0.0,0.617,Fanduel,POINTS_SPREAD,0.0,1,129.32 +2026-02-24 14:50:00,2026-02-27 08:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.8,1,107.19 +2026-03-11 07:34:12,2026-03-11 07:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.79,BetMGM,MONEYLINE,0.0,NA,132.9 +2026-04-08 14:25:00,2026-04-10 13:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,123.57 +2026-03-31 14:32:00,2026-03-31 23:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,47.7,0,104.76 +2026-03-18 20:10:00,2026-03-19 09:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,1,126.26 +2026-04-14 14:23:40,2026-04-14 15:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,20.5,0.576,BetMGM,POINTS_TOTAL,16.2,1,100.0 +2026-03-25 14:48:00,2026-03-27 17:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,37.6,1,100.0 +2026-02-21 14:14:00,2026-02-22 21:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,1,121.53 +2026-02-28 05:21:00,2026-02-28 09:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,126.84 +2026-03-19 21:54:00,2026-03-20 05:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,112.14 +2026-03-08 11:24:00,2026-03-09 06:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.8,0,125.68 +2026-02-25 13:25:22,2026-02-25 12:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,227.9,0.791,Fanduel,POINTS_TOTAL,220.0,0,101.57 +2026-03-27 09:00:00,2026-03-29 02:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.32 +2026-04-09 10:36:00,2026-04-12 03:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,1,132.38 +2026-03-10 04:00:00,2026-03-11 03:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.5,0,142.64 +2026-03-19 17:24:00,2026-03-21 18:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,141.09 +2026-04-08 11:04:00,2026-04-09 13:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,116.23 +2026-04-15 02:35:02,2026-04-15 02:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,8.6,0.928,Fanduel,POINTS_TOTAL,5.6,1,110.6 +2026-04-20 12:50:00,2026-04-20 23:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,118.94 +2026-03-11 21:28:00,2026-03-12 00:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,110.64 +2026-02-23 12:43:00,2026-02-26 04:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,241.2,1,100.0 +2026-04-06 04:29:16,2026-04-06 02:00:00,NHL,Edmonton Oilers,Boston Bruins,0.6,0.0,0.846,Fanduel,POINTS_SPREAD,2.9,1,112.59 +2026-02-25 10:21:06,2026-02-25 08:00:00,NBA,Los Angeles Lakers,Golden State Warriors,1.2,0.0,0.795,BetMGM,POINTS_SPREAD,1.9,1,100.0 +2026-04-12 01:37:00,2026-04-14 10:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,41.2,1,100.0 +2026-03-27 02:47:00,2026-03-29 05:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,131.23 +2026-04-13 16:14:00,2026-04-14 00:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.9,0,103.47 +2026-03-11 15:56:00,2026-03-14 05:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,177.82 +2026-02-21 07:00:22,2026-02-21 07:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.391,BetMGM,MONEYLINE,0.0,NA,101.26 +2026-02-24 05:02:00,2026-02-24 19:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,104.58 +2026-04-04 19:09:00,2026-04-06 22:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.2,1,133.77 +2026-04-19 20:42:00,2026-04-21 07:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,0,100.0 +2026-04-15 09:09:00,2026-04-15 10:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,1,120.02 +2026-02-28 07:46:00,2026-03-03 05:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,100.0 +2026-02-26 07:58:52,2026-02-26 08:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,50.3,0.316,Fanduel,POINTS_TOTAL,42.7,0,121.56 +2026-03-25 23:41:00,2026-03-26 09:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.9,1,108.9 +2026-03-09 03:42:00,2026-03-10 15:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,29.6,0,105.46 +2026-04-01 18:22:00,2026-04-01 20:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,225.2,1,100.0 +2026-04-11 11:27:00,2026-04-11 21:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,113.83 +2026-03-29 13:48:00,2026-03-30 19:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,172.48 +2026-03-17 15:56:16,2026-03-17 14:00:00,NHL,New York Rangers,Florida Panthers,0.0,3.5,0.796,BetMGM,POINTS_TOTAL,3.5,0,100.0 +2026-03-28 08:50:00,2026-03-30 05:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,175.66 +2026-02-19 11:28:00,2026-02-21 19:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,221.0,0,100.0 +2026-03-14 22:56:00,2026-03-17 07:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,0,100.0 +2026-03-28 17:39:00,2026-03-30 06:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.6,0,106.19 +2026-02-28 21:50:00,2026-03-01 12:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,12.8,1,109.64 +2026-03-20 17:17:00,2026-03-21 00:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,121.61 +2026-03-28 12:18:00,2026-03-28 20:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,147.18 +2026-02-23 21:25:00,2026-02-24 23:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,61.4,1,121.83 +2026-04-08 01:26:00,2026-04-09 20:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.2,1,122.59 +2026-03-10 13:53:00,2026-03-11 14:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.1,1,100.0 +2026-03-06 10:10:00,2026-03-09 04:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,103.07 +2026-02-27 23:36:00,2026-03-01 21:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,228.9,0,128.62 +2026-03-28 11:08:42,2026-03-28 11:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.715,Fanduel,MONEYLINE,0.0,NA,112.31 +2026-04-05 11:11:01,2026-04-05 10:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,51.2,0.889,Fanduel,POINTS_TOTAL,55.5,1,120.92 +2026-04-15 18:38:00,2026-04-17 23:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,230.1,1,115.4 +2026-03-10 04:54:00,2026-03-11 05:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,1,100.0 +2026-02-24 08:58:00,2026-02-25 01:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-23 04:35:00,2026-02-25 07:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,10.3,1,126.84 +2026-03-30 11:20:00,2026-03-31 16:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,221.0,0,120.36 +2026-03-21 15:33:00,2026-03-22 20:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,149.13 +2026-04-18 14:11:00,2026-04-21 01:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,144.59 +2026-02-21 12:38:00,2026-02-22 00:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,143.59 +2026-03-31 05:25:21,2026-03-31 03:00:00,NBA,Miami Heat,Denver Nuggets,-0.1,0.0,0.902,Fanduel,POINTS_SPREAD,1.0,0,114.78 +2026-02-25 07:01:00,2026-02-26 02:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,171.09 +2026-03-24 16:23:12,2026-03-24 16:00:00,NFL,San Francisco 49ers,Miami Dolphins,3.5,0.0,0.34,BetMGM,POINTS_SPREAD,1.6,1,100.0 +2026-03-02 04:02:00,2026-03-05 00:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,110.75 +2026-02-19 15:23:00,2026-02-21 05:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.9,1,118.34 +2026-03-09 00:04:00,2026-03-10 18:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,152.7 +2026-03-23 01:55:00,2026-03-23 04:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,224.0,0,110.01 +2026-03-07 15:07:00,2026-03-09 23:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-23 06:28:00,2026-03-23 08:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,126.82 +2026-03-07 00:56:24,2026-03-07 01:00:00,NHL,Boston Bruins,Edmonton Oilers,2.8,0.0,0.23,Fanduel,POINTS_SPREAD,1.4,1,100.0 +2026-03-02 06:42:00,2026-03-03 03:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,31.2,0,100.0 +2026-03-07 10:15:46,2026-03-07 12:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.071,Fanduel,MONEYLINE,0.0,NA,157.95 +2026-04-07 23:52:00,2026-04-08 11:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.9,1,118.14 +2026-04-16 10:36:18,2026-04-16 11:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.235,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-18 12:46:07,2026-04-18 11:00:00,NFL,Buffalo Bills,Dallas Cowboys,4.3,0.0,0.684,BetMGM,POINTS_SPREAD,0.4,0,138.32 +2026-03-03 00:16:00,2026-03-05 19:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-26 23:28:15,2026-02-26 23:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.257,Fanduel,MONEYLINE,0.0,NA,111.54 +2026-03-11 01:40:00,2026-03-13 09:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,64.9,1,108.28 +2026-04-10 03:02:00,2026-04-11 21:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,108.07 +2026-03-19 14:48:37,2026-03-19 14:00:00,NBA,Phoenix Suns,Boston Celtics,0.3,0.0,0.309,BetMGM,POINTS_SPREAD,6.7,0,138.5 +2026-03-26 03:15:00,2026-03-27 14:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,0,124.31 +2026-03-19 11:26:00,2026-03-21 02:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,1,124.3 +2026-03-07 03:00:38,2026-03-07 02:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,-0.1,0.0,0.748,BetMGM,POINTS_SPREAD,2.7,0,135.61 +2026-03-14 01:19:00,2026-03-14 23:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.8,0,101.72 +2026-02-24 13:14:00,2026-02-26 07:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,40.6,1,106.9 +2026-03-31 13:54:00,2026-04-02 15:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-03 22:11:56,2026-04-03 21:00:00,NBA,Los Angeles Lakers,Boston Celtics,-1.8,0.0,0.783,Fanduel,POINTS_SPREAD,0.4,0,100.0 +2026-02-25 19:38:00,2026-02-26 13:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,147.69 +2026-04-10 15:15:00,2026-04-11 20:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,230.3,0,100.0 +2026-02-24 05:10:00,2026-02-27 02:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,129.8 +2026-02-28 06:21:00,2026-03-01 02:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,1,129.61 +2026-02-20 13:37:07,2026-02-20 15:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.284,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-16 19:20:00,2026-03-19 01:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,143.94 +2026-03-12 12:09:00,2026-03-13 14:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,120.13 +2026-04-11 14:35:24,2026-04-11 15:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.3,0.0,0.33,Fanduel,POINTS_SPREAD,1.7,1,142.74 +2026-04-03 21:33:42,2026-04-03 20:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,52.0,0.815,Fanduel,POINTS_TOTAL,56.1,1,123.28 +2026-03-15 20:03:00,2026-03-18 17:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,4.2,0,100.96 +2026-04-19 16:05:01,2026-04-19 15:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,43.3,0.439,BetMGM,POINTS_TOTAL,42.6,1,100.0 +2026-03-28 19:32:00,2026-03-31 15:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.4,0,100.0 +2026-03-04 07:08:22,2026-03-04 08:00:00,NBA,Denver Nuggets,Dallas Mavericks,5.6,0.0,0.091,Fanduel,POINTS_SPREAD,3.1,1,102.57 +2026-03-23 14:20:43,2026-03-23 14:00:00,NBA,Boston Celtics,Phoenix Suns,2.4,0.0,0.704,BetMGM,POINTS_SPREAD,3.2,0,111.09 +2026-03-18 20:42:00,2026-03-20 13:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.2,0,124.74 +2026-03-03 07:06:00,2026-03-05 04:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,157.57 +2026-03-29 03:06:00,2026-03-30 22:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,123.58 +2026-03-04 16:01:00,2026-03-06 19:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,38.4,1,104.12 +2026-03-25 23:32:00,2026-03-27 14:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,114.85 +2026-03-06 00:10:06,2026-03-06 00:00:00,NFL,San Francisco 49ers,Dallas Cowboys,-3.7,0.0,0.495,Fanduel,POINTS_SPREAD,3.3,1,160.25 +2026-04-14 13:26:00,2026-04-15 07:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.6,1,100.0 +2026-03-23 21:18:00,2026-03-26 20:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,154.77 +2026-02-24 20:29:02,2026-02-24 21:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,48.3,0.078,Fanduel,POINTS_TOTAL,48.7,1,118.26 +2026-04-04 05:53:00,2026-04-04 16:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-02 02:45:34,2026-04-02 04:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.081,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-14 01:54:00,2026-03-16 05:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,45.4,0,136.29 +2026-03-27 09:14:00,2026-03-28 00:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,139.55 +2026-04-11 03:40:00,2026-04-13 05:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,1,100.0 +2026-03-17 12:20:18,2026-03-17 12:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,38.6,0.185,BetMGM,POINTS_TOTAL,33.6,1,108.72 +2026-04-20 20:46:00,2026-04-21 11:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-15 06:04:00,2026-03-17 10:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,104.41 +2026-02-22 19:14:01,2026-02-22 17:00:00,NBA,Boston Celtics,Los Angeles Lakers,1.1,0.0,0.889,BetMGM,POINTS_SPREAD,2.3,0,112.6 +2026-03-09 00:15:00,2026-03-11 18:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,32.3,0,106.32 +2026-04-07 02:38:00,2026-04-07 13:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,223.9,0,117.11 +2026-04-15 03:08:34,2026-04-15 03:00:00,NHL,New York Rangers,Carolina Hurricanes,0.3,0.0,0.581,Fanduel,POINTS_SPREAD,0.2,1,106.37 +2026-03-16 16:21:00,2026-03-18 17:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-27 10:39:06,2026-02-27 08:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.895,Fanduel,MONEYLINE,0.0,NA,119.33 +2026-03-23 00:18:00,2026-03-25 18:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-08 10:06:00,2026-03-10 00:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,158.82 +2026-04-07 16:49:13,2026-04-07 18:00:00,NBA,Boston Celtics,Denver Nuggets,4.4,0.0,0.229,BetMGM,POINTS_SPREAD,1.6,1,100.0 +2026-04-16 11:29:10,2026-04-16 11:00:00,NBA,Golden State Warriors,Boston Celtics,1.3,0.0,0.601,BetMGM,POINTS_SPREAD,2.0,1,100.0 +2026-03-03 12:11:40,2026-03-03 12:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.726,BetMGM,MONEYLINE,0.0,NA,112.99 +2026-03-08 02:42:00,2026-03-08 12:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,1,101.6 +2026-04-13 03:04:00,2026-04-15 09:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-13 01:28:08,2026-04-13 00:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,41.4,0.823,Fanduel,POINTS_TOTAL,40.4,1,109.25 +2026-03-19 02:59:48,2026-03-19 03:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,40.5,0.11,BetMGM,POINTS_TOTAL,38.8,1,109.35 +2026-04-09 15:30:25,2026-04-09 17:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.069,BetMGM,MONEYLINE,0.0,NA,128.15 +2026-03-27 13:24:00,2026-03-27 19:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,116.13 +2026-03-27 01:59:00,2026-03-28 16:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,1,123.64 +2026-03-27 15:43:00,2026-03-28 09:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,114.7 +2026-04-03 09:04:25,2026-04-03 07:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.919,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-05 06:26:00,2026-04-06 11:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,1,146.08 +2026-04-10 18:11:22,2026-04-10 18:00:00,NBA,Phoenix Suns,Denver Nuggets,-0.4,0.0,0.291,BetMGM,POINTS_SPREAD,1.4,1,106.44 +2026-04-05 14:41:00,2026-04-07 13:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,42.0,1,116.82 +2026-04-05 19:10:00,2026-04-07 06:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-20 23:02:00,2026-02-23 00:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.3,1,139.67 +2026-04-17 15:51:39,2026-04-17 16:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.287,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-03 12:27:00,2026-04-04 12:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.0,1,100.0 +2026-04-21 06:47:49,2026-04-21 08:00:00,NFL,Miami Dolphins,Buffalo Bills,1.7,0.0,0.199,BetMGM,POINTS_SPREAD,3.8,0,127.98 +2026-03-01 02:43:49,2026-03-01 02:00:00,NHL,Colorado Avalanche,Florida Panthers,0.3,0.0,0.349,BetMGM,POINTS_SPREAD,0.5,0,119.48 +2026-03-05 19:30:56,2026-03-05 19:00:00,NBA,Miami Heat,Boston Celtics,-6.0,0.0,0.633,BetMGM,POINTS_SPREAD,2.3,0,100.0 +2026-04-15 17:54:42,2026-04-15 19:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.315,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-10 06:51:00,2026-04-10 14:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-10 20:53:36,2026-03-10 19:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,-2.2,0.0,0.77,BetMGM,POINTS_SPREAD,3.8,1,102.72 +2026-04-14 09:51:00,2026-04-14 14:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,1,128.58 +2026-03-25 12:05:10,2026-03-25 10:00:00,NBA,Boston Celtics,Golden State Warriors,5.2,0.0,0.901,BetMGM,POINTS_SPREAD,3.3,1,100.0 +2026-02-21 05:34:00,2026-02-21 14:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,1,136.25 +2026-03-26 12:34:00,2026-03-29 09:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,0,120.94 +2026-04-17 19:02:00,2026-04-19 09:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,109.13 +2026-03-07 00:37:00,2026-03-07 18:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,210.1,1,124.87 +2026-03-11 00:37:00,2026-03-11 22:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-27 07:38:38,2026-02-27 07:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,34.8,0.598,Fanduel,POINTS_TOTAL,30.4,1,103.55 +2026-03-13 04:46:52,2026-03-13 03:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,242.4,0.616,Fanduel,POINTS_TOTAL,239.1,0,100.0 +2026-04-09 22:30:21,2026-04-09 21:00:00,NFL,Buffalo Bills,Philadelphia Eagles,3.9,0.0,0.752,Fanduel,POINTS_SPREAD,1.2,1,100.0 +2026-02-27 16:38:04,2026-02-27 17:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.406,Fanduel,MONEYLINE,0.0,NA,130.81 +2026-03-21 22:49:00,2026-03-23 02:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,12.3,0,100.0 +2026-04-19 13:29:00,2026-04-20 10:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,218.2,0,111.02 +2026-04-19 18:22:28,2026-04-19 18:00:00,NFL,Detroit Lions,Miami Dolphins,3.6,0.0,0.236,Fanduel,POINTS_SPREAD,0.7,0,140.17 +2026-03-03 06:21:00,2026-03-05 21:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,155.01 +2026-03-07 07:52:00,2026-03-10 06:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,134.59 +2026-03-25 01:24:00,2026-03-25 20:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,224.7,1,102.72 +2026-04-11 07:10:00,2026-04-11 22:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,125.05 +2026-04-15 08:12:00,2026-04-16 10:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,0,138.09 +2026-03-07 06:17:00,2026-03-09 02:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,112.33 +2026-03-15 06:09:25,2026-03-15 06:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,51.1,0.419,Fanduel,POINTS_TOTAL,52.7,0,100.0 +2026-03-08 08:57:00,2026-03-09 00:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.5,1,115.57 +2026-03-21 04:00:00,2026-03-21 15:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,133.74 +2026-04-08 10:13:00,2026-04-11 05:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,0,100.0 +2026-03-12 09:03:55,2026-03-12 07:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.894,Fanduel,MONEYLINE,0.0,NA,153.59 +2026-03-28 10:29:00,2026-03-28 23:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,55.8,1,103.28 +2026-03-04 02:26:00,2026-03-05 17:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,32.9,1,100.0 +2026-04-03 11:39:00,2026-04-05 22:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-21 11:10:27,2026-02-21 11:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,23.8,0.647,Fanduel,POINTS_TOTAL,25.1,0,120.03 +2026-04-01 06:46:00,2026-04-02 18:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-12 09:27:00,2026-04-12 11:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,120.6 +2026-04-05 01:50:00,2026-04-06 07:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,0,124.83 +2026-03-14 17:31:00,2026-03-17 12:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,9.2,0,117.08 +2026-03-28 12:15:07,2026-03-28 11:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,-0.2,0.0,0.884,BetMGM,POINTS_SPREAD,0.6,0,101.22 +2026-02-24 01:24:00,2026-02-25 05:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,36.1,0,100.48 +2026-04-05 02:24:00,2026-04-05 11:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,107.44 +2026-04-15 13:58:00,2026-04-18 05:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,106.98 +2026-04-01 11:05:22,2026-04-01 10:00:00,NFL,Miami Dolphins,Philadelphia Eagles,-2.4,0.0,0.541,BetMGM,POINTS_SPREAD,0.6,1,110.03 +2026-03-31 12:10:00,2026-04-03 11:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,167.74 +2026-03-07 09:17:00,2026-03-07 21:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,1,109.2 +2026-02-26 13:53:00,2026-02-27 03:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,0,125.39 +2026-03-14 05:52:00,2026-03-15 07:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,116.74 +2026-04-05 15:27:15,2026-04-05 14:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,5.0,0.0,0.857,BetMGM,POINTS_SPREAD,0.1,1,100.0 +2026-04-05 10:23:00,2026-04-08 09:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,104.26 +2026-03-13 05:12:00,2026-03-16 03:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,15.2,0,118.64 +2026-03-20 07:18:00,2026-03-20 21:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.5,1,121.01 +2026-03-11 16:23:00,2026-03-13 21:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.1,0,100.0 +2026-04-11 20:54:34,2026-04-11 20:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,51.3,0.681,BetMGM,POINTS_TOTAL,55.0,1,120.75 +2026-03-17 10:50:57,2026-03-17 11:00:00,NHL,Florida Panthers,New York Rangers,-3.1,0.0,0.372,BetMGM,POINTS_SPREAD,1.8,1,107.22 +2026-03-07 16:48:00,2026-03-08 22:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,230.2,1,100.0 +2026-03-19 08:21:00,2026-03-21 04:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,0,100.0 +2026-04-11 13:07:00,2026-04-12 09:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,7.9,1,104.81 +2026-02-27 00:19:00,2026-02-28 02:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.9,0,113.02 +2026-03-08 10:45:00,2026-03-10 11:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,108.84 +2026-03-31 02:11:00,2026-03-31 00:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.9,BetMGM,MONEYLINE,0.0,NA,121.03 +2026-02-25 23:00:00,2026-02-26 19:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-11 07:38:00,2026-03-13 18:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,1,121.4 +2026-03-09 00:41:43,2026-03-09 00:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.854,BetMGM,MONEYLINE,0.0,NA,111.47 +2026-02-21 21:25:00,2026-02-24 16:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,49.1,0,117.72 +2026-03-09 01:10:00,2026-03-09 05:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,40.6,1,125.66 +2026-03-05 10:09:00,2026-03-06 04:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,20.8,0,100.0 +2026-03-14 08:25:44,2026-03-14 08:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.893,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-09 15:31:00,2026-04-12 07:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,33.2,1,101.48 +2026-04-15 21:48:00,2026-04-16 17:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.7,1,100.0 +2026-03-18 03:29:00,2026-03-18 18:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,0,100.0 +2026-03-27 01:32:50,2026-03-27 02:00:00,NBA,Golden State Warriors,Milwaukee Bucks,-3.2,0.0,0.288,BetMGM,POINTS_SPREAD,2.1,0,100.0 +2026-03-06 13:58:00,2026-03-07 21:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.0,1,100.22 +2026-03-10 18:20:42,2026-03-10 18:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,209.6,0.715,BetMGM,POINTS_TOTAL,211.7,1,110.0 +2026-04-03 07:00:00,2026-04-05 06:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,109.95 +2026-04-12 21:55:00,2026-04-15 10:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,13.6,0,100.0 +2026-04-08 20:07:00,2026-04-09 00:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,121.89 +2026-04-07 01:27:00,2026-04-07 06:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,103.57 +2026-04-10 00:32:25,2026-04-10 00:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,60.3,0.769,BetMGM,POINTS_TOTAL,62.0,1,103.71 +2026-03-25 05:32:00,2026-03-25 07:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-24 17:16:00,2026-02-25 09:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,100.48 +2026-04-11 07:00:00,2026-04-14 07:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,120.46 +2026-02-27 20:01:00,2026-03-02 00:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,16.0,0,106.54 +2026-03-16 09:28:00,2026-03-17 17:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,103.39 +2026-02-21 08:30:00,2026-02-22 23:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,1,120.17 +2026-04-03 08:06:06,2026-04-03 07:00:00,NBA,Miami Heat,Boston Celtics,0.0,248.9,0.395,Fanduel,POINTS_TOTAL,245.7,0,109.98 +2026-02-27 11:40:00,2026-02-28 13:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,0,112.63 +2026-02-23 08:59:54,2026-02-23 07:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.755,BetMGM,MONEYLINE,0.0,NA,134.35 +2026-04-02 09:37:00,2026-04-04 14:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,162.9 +2026-03-13 16:00:00,2026-03-15 12:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,242.4,0,105.18 +2026-04-10 05:24:00,2026-04-10 06:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,131.85 +2026-02-20 15:08:00,2026-02-20 22:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,0,116.73 +2026-04-07 23:09:06,2026-04-07 22:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.645,BetMGM,MONEYLINE,0.0,NA,119.87 +2026-03-09 18:17:09,2026-03-09 17:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.712,BetMGM,MONEYLINE,0.0,NA,108.71 +2026-04-08 08:48:00,2026-04-08 10:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,33.1,1,109.49 +2026-03-15 03:24:00,2026-03-15 11:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,228.1,0,100.0 +2026-02-24 15:49:00,2026-02-27 13:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,231.9,0,100.0 +2026-04-02 17:09:00,2026-04-02 19:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,0,113.86 +2026-03-03 07:52:00,2026-03-06 01:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,223.4,1,105.98 +2026-04-09 20:49:00,2026-04-12 04:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,48.5,1,100.0 +2026-02-22 02:51:00,2026-02-23 04:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,221.4,0,100.0 +2026-03-29 16:27:26,2026-03-29 18:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.208,Fanduel,MONEYLINE,0.0,NA,104.53 +2026-02-25 20:04:00,2026-02-27 01:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.2,1,104.87 +2026-02-20 11:30:00,2026-02-21 02:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.0,1,100.0 +2026-04-04 15:59:01,2026-04-04 14:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,57.2,0.939,BetMGM,POINTS_TOTAL,57.1,1,114.7 +2026-03-26 05:34:55,2026-03-26 06:00:00,NBA,Miami Heat,Dallas Mavericks,-1.1,0.0,0.044,Fanduel,POINTS_SPREAD,1.4,0,106.33 +2026-02-27 18:31:00,2026-02-27 22:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,229.8,0,108.32 +2026-03-31 03:23:00,2026-03-31 15:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,175.24 +2026-03-31 02:53:00,2026-03-31 07:00:00,NBA,Dallas Mavericks,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.0,1,100.0 +2026-03-11 20:12:00,2026-03-11 21:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,178.49 +2026-03-29 21:54:00,2026-03-30 19:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,0,102.75 +2026-04-05 23:47:00,2026-04-06 23:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,122.89 +2026-03-04 15:27:00,2026-03-04 17:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,114.03 +2026-03-16 15:59:00,2026-03-19 13:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,130.62 +2026-03-18 05:18:48,2026-03-18 04:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.81,Fanduel,MONEYLINE,0.0,NA,143.59 +2026-03-28 19:25:00,2026-03-29 07:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,0,100.0 +2026-04-15 04:20:14,2026-04-15 04:00:00,NBA,Golden State Warriors,Phoenix Suns,-1.6,0.0,0.668,BetMGM,POINTS_SPREAD,1.3,0,100.0 +2026-03-03 12:49:00,2026-03-03 15:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,226.8,1,100.0 +2026-03-31 04:09:57,2026-03-31 02:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,22.4,0.922,BetMGM,POINTS_TOTAL,16.5,1,100.0 +2026-04-13 08:14:00,2026-04-14 07:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,0,107.26 +2026-04-03 08:13:00,2026-04-03 12:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,133.22 +2026-04-07 02:16:00,2026-04-10 02:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,34.8,1,109.74 +2026-04-13 20:44:00,2026-04-13 23:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,43.8,1,115.86 +2026-03-25 13:17:00,2026-03-26 09:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,133.52 +2026-03-06 12:48:00,2026-03-06 21:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,1,108.38 +2026-03-11 19:00:00,2026-03-13 11:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,0,115.31 +2026-04-21 04:52:57,2026-04-21 05:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,-2.5,0.0,0.322,BetMGM,POINTS_SPREAD,1.4,1,120.09 +2026-03-28 23:39:00,2026-03-29 18:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,57.6,1,110.39 +2026-04-09 06:30:00,2026-04-11 13:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,112.38 +2026-03-27 10:07:00,2026-03-27 17:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,108.73 +2026-02-18 17:48:00,2026-02-21 00:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,212.3,1,100.0 +2026-03-04 00:19:00,2026-03-04 01:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-23 10:03:00,2026-02-25 15:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,112.9 +2026-02-28 14:48:00,2026-03-01 17:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,48.4,0,119.02 +2026-04-03 15:36:00,2026-04-04 22:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,29.8,0,117.71 +2026-02-18 05:54:00,2026-02-20 16:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,16.9,1,100.0 +2026-02-22 02:51:32,2026-02-22 03:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.103,Fanduel,MONEYLINE,0.0,NA,129.97 +2026-03-12 09:08:39,2026-03-12 09:00:00,NFL,Buffalo Bills,Baltimore Ravens,2.9,0.0,0.537,Fanduel,POINTS_SPREAD,1.8,1,105.13 +2026-03-14 18:48:00,2026-03-16 03:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,210.1,0,111.85 +2026-04-18 00:26:00,2026-04-19 13:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,246.7,1,101.15 +2026-04-13 03:18:00,2026-04-14 12:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,0,115.1 +2026-03-16 13:00:00,2026-03-18 08:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,241.8,0,118.16 +2026-04-08 23:14:00,2026-04-11 13:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,104.8 +2026-03-04 17:22:54,2026-03-04 16:00:00,NBA,Denver Nuggets,Boston Celtics,0.2,0.0,0.855,Fanduel,POINTS_SPREAD,1.5,0,116.78 +2026-04-14 06:15:00,2026-04-17 04:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,232.1,1,120.47 +2026-02-27 01:32:00,2026-03-01 19:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,0,137.57 +2026-02-19 19:07:00,2026-02-21 02:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,0,100.52 +2026-04-03 15:18:00,2026-04-05 00:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.9,1,114.33 +2026-03-10 05:44:25,2026-03-10 05:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,224.9,0.519,BetMGM,POINTS_TOTAL,231.8,0,100.0 +2026-03-18 00:02:00,2026-03-20 09:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,126.38 +2026-02-21 23:50:36,2026-02-22 00:00:00,NBA,Los Angeles Lakers,Boston Celtics,-2.2,0.0,0.37,Fanduel,POINTS_SPREAD,0.7,1,132.26 +2026-02-26 19:14:00,2026-03-01 14:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,233.2,0,125.52 +2026-04-11 16:18:00,2026-04-12 22:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,1,100.85 +2026-02-19 15:39:00,2026-02-22 05:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,42.8,1,110.63 +2026-04-19 01:15:36,2026-04-19 02:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.37,BetMGM,MONEYLINE,0.0,NA,142.44 +2026-04-20 11:57:44,2026-04-20 12:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,226.0,0.493,BetMGM,POINTS_TOTAL,227.9,0,100.0 +2026-02-22 05:42:00,2026-02-24 00:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.84 +2026-04-17 17:19:00,2026-04-20 13:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,102.4 +2026-04-10 10:24:09,2026-04-10 10:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.862,BetMGM,MONEYLINE,0.0,NA,132.16 +2026-03-27 02:30:00,2026-03-28 04:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,216.4,0,109.78 +2026-02-24 12:19:24,2026-02-24 13:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,214.7,0.33,BetMGM,POINTS_TOTAL,212.1,0,126.91 +2026-02-28 16:25:00,2026-03-02 09:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,161.84 +2026-04-15 10:50:49,2026-04-15 10:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.549,Fanduel,MONEYLINE,0.0,NA,145.0 +2026-03-16 11:34:00,2026-03-18 19:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,1,147.15 +2026-04-16 23:03:00,2026-04-18 05:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,112.13 +2026-02-20 23:49:00,2026-02-21 09:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,21.6,0,111.57 +2026-02-17 23:48:00,2026-02-20 14:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,1,110.7 +2026-04-16 05:59:36,2026-04-16 07:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,36.5,0.27,BetMGM,POINTS_TOTAL,42.3,1,128.37 +2026-03-05 17:13:22,2026-03-05 15:00:00,NFL,Buffalo Bills,Dallas Cowboys,-0.6,0.0,0.891,Fanduel,POINTS_SPREAD,1.0,0,121.21 +2026-02-25 20:20:00,2026-02-27 12:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,210.1,0,128.8 +2026-04-15 18:48:00,2026-04-17 01:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.2,1,100.0 +2026-02-26 10:39:00,2026-02-26 17:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,136.67 +2026-03-03 21:39:49,2026-03-03 22:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,25.3,0.499,Fanduel,POINTS_TOTAL,26.8,0,102.97 +2026-04-12 12:59:00,2026-04-14 10:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,157.5 +2026-03-02 13:58:09,2026-03-02 15:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.062,BetMGM,MONEYLINE,0.0,NA,176.33 +2026-04-15 15:59:00,2026-04-16 11:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,137.28 +2026-03-10 09:30:00,2026-03-13 00:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,100.0 +2026-02-23 12:25:44,2026-02-23 14:00:00,NHL,New York Rangers,Edmonton Oilers,-1.7,0.0,0.193,Fanduel,POINTS_SPREAD,0.9,0,131.06 +2026-03-29 10:45:22,2026-03-29 11:00:00,NHL,Carolina Hurricanes,Florida Panthers,2.3,0.0,0.391,BetMGM,POINTS_SPREAD,2.1,1,131.32 +2026-03-18 12:16:22,2026-03-18 11:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.891,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-24 01:15:09,2026-02-24 00:00:00,NFL,Philadelphia Eagles,Buffalo Bills,-1.2,0.0,0.712,BetMGM,POINTS_SPREAD,1.0,1,109.41 +2026-03-18 12:36:52,2026-03-18 12:00:00,NHL,Vegas Golden Knights,Boston Bruins,-2.5,0.0,0.616,Fanduel,POINTS_SPREAD,1.6,0,100.0 +2026-03-20 20:22:16,2026-03-20 21:00:00,NFL,Buffalo Bills,Philadelphia Eagles,2.5,0.0,0.046,BetMGM,POINTS_SPREAD,5.9,1,134.05 +2026-04-02 04:26:24,2026-04-02 05:00:00,NBA,Boston Celtics,Milwaukee Bucks,-4.6,0.0,0.58,BetMGM,POINTS_SPREAD,0.4,1,117.51 +2026-03-21 18:24:10,2026-03-21 18:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,54.5,0.601,Fanduel,POINTS_TOTAL,55.2,1,100.95 +2026-04-09 11:16:00,2026-04-12 09:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,152.31 +2026-03-29 01:26:00,2026-03-30 15:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,191.42 +2026-04-04 17:38:48,2026-04-04 17:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,14.0,0.51,BetMGM,POINTS_TOTAL,17.6,0,100.0 +2026-03-29 23:35:00,2026-03-31 22:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,156.63 +2026-04-17 06:44:00,2026-04-17 16:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-26 04:22:00,2026-03-29 01:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-18 23:19:00,2026-03-21 13:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,52.4,0,114.81 +2026-03-19 21:40:00,2026-03-20 21:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,17.8,1,119.05 +2026-04-20 17:39:03,2026-04-20 16:00:00,NBA,Golden State Warriors,Boston Celtics,-1.5,0.0,0.617,Fanduel,POINTS_SPREAD,4.6,0,126.56 +2026-02-20 18:51:00,2026-02-22 03:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,217.1,0,136.14 +2026-04-15 06:45:00,2026-04-15 20:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,153.5 +2026-04-13 17:19:00,2026-04-16 04:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,153.7 +2026-04-08 19:24:00,2026-04-09 09:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,128.96 +2026-04-16 21:37:04,2026-04-16 23:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.106,Fanduel,MONEYLINE,0.0,NA,111.24 +2026-03-21 13:24:40,2026-03-21 15:00:00,NBA,Boston Celtics,Milwaukee Bucks,-8.2,0.0,0.176,Fanduel,POINTS_SPREAD,3.1,1,160.51 +2026-03-02 08:52:10,2026-03-02 09:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.101,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-03 20:32:00,2026-03-04 07:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,5.9,1,133.19 +2026-04-01 03:41:00,2026-04-01 09:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,51.5,0,109.13 +2026-04-20 17:06:38,2026-04-20 16:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.798,BetMGM,MONEYLINE,0.0,NA,142.29 +2026-03-28 06:35:00,2026-03-28 14:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.4,0,112.71 +2026-03-06 21:59:00,2026-03-09 10:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,219.7,0,107.77 +2026-03-12 14:02:38,2026-03-12 12:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,53.2,0.748,BetMGM,POINTS_TOTAL,55.8,1,112.95 +2026-03-08 02:18:00,2026-03-10 04:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,122.14 +2026-03-12 21:49:00,2026-03-14 05:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,0,106.42 +2026-02-24 14:42:00,2026-02-25 10:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-07 12:02:58,2026-04-07 12:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,56.6,0.611,Fanduel,POINTS_TOTAL,60.3,1,131.19 +2026-04-19 01:15:00,2026-04-19 20:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.1,0,100.0 +2026-03-07 17:31:33,2026-03-07 17:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,244.4,0.842,Fanduel,POINTS_TOTAL,241.2,0,111.4 +2026-04-18 05:19:27,2026-04-18 05:00:00,NHL,New York Rangers,Vegas Golden Knights,5.2,0.0,0.147,BetMGM,POINTS_SPREAD,0.8,1,100.0 +2026-04-18 12:35:00,2026-04-19 09:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,10.2,0,100.0 +2026-03-30 09:13:00,2026-04-01 05:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-18 17:20:00,2026-03-19 12:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,112.52 +2026-03-26 10:05:00,2026-03-29 10:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,231.5,1,112.0 +2026-04-16 19:14:24,2026-04-16 19:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,3.3,0.0,0.33,BetMGM,POINTS_SPREAD,3.3,0,100.13 +2026-02-26 14:59:10,2026-02-26 15:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.451,BetMGM,MONEYLINE,0.0,NA,172.94 +2026-03-16 01:17:44,2026-03-16 01:00:00,NHL,New York Rangers,Carolina Hurricanes,-2.1,0.0,0.643,BetMGM,POINTS_SPREAD,3.3,0,132.04 +2026-04-12 04:24:00,2026-04-14 23:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,0,100.0 +2026-03-12 19:21:00,2026-03-15 16:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,222.4,1,105.95 +2026-04-18 10:00:00,2026-04-20 17:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,108.49 +2026-04-09 22:30:00,2026-04-10 07:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,10.6,1,129.79 +2026-04-18 01:11:38,2026-04-18 03:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.148,Fanduel,MONEYLINE,0.0,NA,109.08 +2026-03-03 19:00:00,2026-03-06 16:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,130.05 +2026-04-19 14:24:00,2026-04-20 16:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,48.3,1,115.31 +2026-03-05 14:33:40,2026-03-05 14:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,218.6,0.876,Fanduel,POINTS_TOTAL,218.2,1,100.0 +2026-02-22 16:22:00,2026-02-24 22:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,0,118.01 +2026-03-12 22:21:00,2026-03-13 23:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,0,126.23 +2026-03-08 00:20:00,2026-03-09 01:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,139.99 +2026-03-03 00:42:00,2026-03-04 12:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.3,0,121.18 +2026-03-09 16:04:00,2026-03-10 18:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,0,101.37 +2026-03-09 09:33:13,2026-03-09 09:00:00,NBA,Boston Celtics,Phoenix Suns,-2.2,0.0,0.429,BetMGM,POINTS_SPREAD,1.5,0,100.0 +2026-04-19 04:23:00,2026-04-21 10:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,0,100.0 +2026-03-20 09:50:00,2026-03-22 20:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.4,0,100.0 +2026-03-23 10:47:00,2026-03-25 22:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,42.4,0,124.78 +2026-03-13 10:32:00,2026-03-13 13:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,109.55 +2026-03-04 06:02:00,2026-03-06 11:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,0,107.09 +2026-03-03 15:59:56,2026-03-03 16:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.083,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-24 01:23:00,2026-02-24 19:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-02 02:32:38,2026-04-02 03:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.398,Fanduel,MONEYLINE,0.0,NA,103.7 +2026-03-23 04:19:00,2026-03-23 21:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,140.21 +2026-03-26 17:15:09,2026-03-26 19:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,236.9,0.112,Fanduel,POINTS_TOTAL,235.4,1,136.91 +2026-02-22 23:09:00,2026-02-25 16:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,13.0,0,100.0 +2026-03-27 20:50:56,2026-03-27 19:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,6.1,0.0,0.733,BetMGM,POINTS_SPREAD,0.9,0,141.8 +2026-02-28 03:07:45,2026-02-28 02:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,48.2,0.432,Fanduel,POINTS_TOTAL,47.5,1,122.23 +2026-03-15 16:07:36,2026-03-15 17:00:00,NHL,Toronto Maple Leafs,New York Rangers,-1.6,0.0,0.47,BetMGM,POINTS_SPREAD,1.3,1,112.82 +2026-03-06 21:55:14,2026-03-07 00:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,8.1,0.068,Fanduel,POINTS_TOTAL,11.3,1,125.93 +2026-04-15 21:14:00,2026-04-17 09:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,108.49 +2026-02-24 23:00:34,2026-02-25 00:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,3.5,0.131,BetMGM,POINTS_TOTAL,9.4,1,129.36 +2026-03-09 11:51:00,2026-03-09 13:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,111.02 +2026-03-11 19:03:00,2026-03-13 03:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,42.9,0,126.5 +2026-03-15 15:52:00,2026-03-17 01:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.7,1,137.23 +2026-04-18 10:24:00,2026-04-20 22:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,107.76 +2026-04-09 01:51:00,2026-04-11 03:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,11.7,0,100.0 +2026-04-04 11:49:00,2026-04-07 02:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,107.02 +2026-02-21 19:20:00,2026-02-21 23:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,162.99 +2026-02-20 17:17:00,2026-02-20 18:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,226.1,0.05,Fanduel,POINTS_TOTAL,227.1,1,118.81 +2026-03-10 18:59:26,2026-03-10 18:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.608,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-06 18:47:37,2026-03-06 17:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,10.6,0.609,Fanduel,POINTS_TOTAL,9.1,1,122.95 +2026-03-21 12:36:00,2026-03-23 21:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,138.21 +2026-03-17 23:45:26,2026-03-18 00:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,6.0,0.258,BetMGM,POINTS_TOTAL,8.3,0,102.23 +2026-04-15 23:40:00,2026-04-16 00:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.55,BetMGM,MONEYLINE,0.0,NA,136.06 +2026-02-28 12:44:00,2026-03-03 01:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,149.89 +2026-02-27 16:43:00,2026-02-28 11:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,1,111.15 +2026-02-20 10:11:00,2026-02-23 10:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,0,109.2 +2026-02-19 00:46:00,2026-02-20 15:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,70.6,1,127.09 +2026-04-11 13:54:00,2026-04-13 12:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,114.72 +2026-03-26 14:56:28,2026-03-26 15:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,47.6,0.286,BetMGM,POINTS_TOTAL,49.5,1,100.0 +2026-04-02 14:51:00,2026-04-04 21:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.7,0,100.0 +2026-03-04 23:07:44,2026-03-04 22:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,-4.0,0.0,0.543,Fanduel,POINTS_SPREAD,0.0,1,132.55 +2026-03-18 10:48:00,2026-03-21 00:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,187.25 +2026-03-10 02:01:00,2026-03-10 06:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-12 22:31:48,2026-03-12 23:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.16,BetMGM,MONEYLINE,0.0,NA,103.95 +2026-04-16 01:56:00,2026-04-17 00:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,1,100.0 +2026-04-09 16:16:00,2026-04-09 23:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,47.3,1,100.97 +2026-03-07 16:48:00,2026-03-10 10:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,241.7,0,102.1 +2026-04-17 18:19:00,2026-04-18 17:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,0,111.55 +2026-04-10 08:12:21,2026-04-10 10:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.052,BetMGM,MONEYLINE,0.0,NA,134.4 +2026-04-16 08:05:00,2026-04-18 17:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.7,1,119.49 +2026-03-24 06:09:50,2026-03-24 08:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,224.2,0.138,BetMGM,POINTS_TOTAL,221.5,1,100.58 +2026-04-12 23:13:00,2026-04-13 14:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,1,123.42 +2026-03-13 21:46:13,2026-03-13 19:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.929,Fanduel,MONEYLINE,0.0,NA,132.98 +2026-02-20 11:23:00,2026-02-22 05:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,236.0,0,122.0 +2026-03-01 01:08:00,2026-03-01 12:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,13.6,0,101.38 +2026-03-24 00:47:00,2026-03-25 08:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,128.05 +2026-03-07 23:13:56,2026-03-07 21:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,230.0,0.933,Fanduel,POINTS_TOTAL,226.2,1,113.46 +2026-03-12 22:40:00,2026-03-14 12:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.0,0,110.66 +2026-03-19 02:10:54,2026-03-19 03:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,40.1,0.455,Fanduel,POINTS_TOTAL,39.4,1,112.61 +2026-02-21 10:39:00,2026-02-23 04:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.1,1,101.24 +2026-03-12 14:35:00,2026-03-13 13:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.9,1,129.2 +2026-03-13 00:13:00,2026-03-15 04:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,226.7,1,131.42 +2026-04-18 06:08:34,2026-04-18 08:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.131,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-16 02:21:00,2026-04-16 14:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,128.17 +2026-03-31 04:58:00,2026-04-02 06:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.0,0,100.0 +2026-04-13 08:45:30,2026-04-13 09:00:00,NFL,Kansas City Chiefs,Buffalo Bills,6.3,0.0,0.225,Fanduel,POINTS_SPREAD,0.9,0,142.59 +2026-03-05 06:38:00,2026-03-07 15:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,1,111.19 +2026-04-03 05:37:00,2026-04-03 21:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,114.21 +2026-03-07 06:33:58,2026-03-07 07:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.9,0.0,0.561,Fanduel,POINTS_SPREAD,0.9,1,100.0 +2026-02-28 01:10:00,2026-03-01 09:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,146.91 +2026-03-04 05:11:00,2026-03-07 01:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-20 10:14:00,2026-03-22 04:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,0,113.9 +2026-03-30 16:24:00,2026-03-31 01:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,8.3,1,102.38 +2026-03-20 08:11:36,2026-03-20 06:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,234.2,0.87,Fanduel,POINTS_TOTAL,235.8,1,132.7 +2026-03-15 00:02:00,2026-03-17 11:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,13.9,1,116.53 +2026-03-01 15:59:28,2026-03-01 15:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,234.3,0.586,Fanduel,POINTS_TOTAL,237.1,1,115.39 +2026-04-17 05:45:51,2026-04-17 06:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.227,BetMGM,MONEYLINE,0.0,NA,121.7 +2026-03-31 00:20:00,2026-03-31 16:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-07 09:21:00,2026-03-07 22:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,9.7,1,103.28 +2026-02-19 12:50:00,2026-02-21 13:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.1,0,133.49 +2026-04-18 22:46:00,2026-04-21 05:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,1,129.21 +2026-03-25 08:52:28,2026-03-25 09:00:00,NFL,San Francisco 49ers,Dallas Cowboys,1.5,0.0,0.036,Fanduel,POINTS_SPREAD,3.5,1,100.0 +2026-04-16 00:55:02,2026-04-16 02:00:00,NBA,Golden State Warriors,Boston Celtics,-3.1,0.0,0.228,Fanduel,POINTS_SPREAD,0.9,0,101.34 +2026-04-17 17:56:00,2026-04-19 14:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,144.34 +2026-03-01 09:55:00,2026-03-02 20:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,1,129.44 +2026-03-09 12:31:00,2026-03-10 08:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,1,100.0 +2026-04-14 17:13:00,2026-04-14 23:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-22 08:01:48,2026-03-22 06:00:00,NFL,Dallas Cowboys,Philadelphia Eagles,0.0,49.4,0.86,Fanduel,POINTS_TOTAL,46.3,0,124.79 +2026-03-18 19:57:52,2026-03-18 19:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,7.1,0.666,BetMGM,POINTS_TOTAL,3.5,0,105.74 +2026-03-11 20:24:00,2026-03-14 13:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-10 07:07:00,2026-03-11 01:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,125.39 +2026-03-06 19:32:28,2026-03-06 19:00:00,NHL,Florida Panthers,Edmonton Oilers,-1.3,0.0,0.386,BetMGM,POINTS_SPREAD,0.6,0,118.78 +2026-03-09 05:01:00,2026-03-11 06:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,4.4,1,110.6 +2026-03-26 03:35:00,2026-03-27 15:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.87 +2026-03-27 06:54:00,2026-03-27 23:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.9,0,101.44 +2026-02-24 08:13:00,2026-02-25 02:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,112.57 +2026-03-13 23:53:00,2026-03-16 06:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,9.1,1,137.69 +2026-04-11 20:27:00,2026-04-13 04:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.8,1,100.0 +2026-03-11 02:23:00,2026-03-13 14:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.8,1,118.98 +2026-04-16 07:40:00,2026-04-18 02:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,50.0,0,120.7 +2026-03-22 17:44:00,2026-03-23 20:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,108.99 +2026-04-20 03:08:00,2026-04-20 10:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,104.79 +2026-02-24 03:04:00,2026-02-26 07:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,190.69 +2026-04-08 10:33:12,2026-04-08 10:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,50.8,0.39,BetMGM,POINTS_TOTAL,55.9,1,135.85 +2026-03-07 22:47:00,2026-03-08 03:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,0,104.88 +2026-03-10 17:38:00,2026-03-10 23:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,1,125.58 +2026-02-25 06:35:00,2026-02-27 09:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,1,100.0 +2026-03-12 18:01:00,2026-03-15 02:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,214.2,0,115.84 +2026-03-10 08:15:00,2026-03-11 20:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,0,118.34 +2026-04-05 21:46:43,2026-04-05 21:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.704,Fanduel,MONEYLINE,0.0,NA,120.21 +2026-03-23 03:23:00,2026-03-25 00:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,133.9 +2026-04-17 10:42:00,2026-04-19 21:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,0,104.94 +2026-04-17 16:39:00,2026-04-18 08:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.1,0,100.0 +2026-02-22 13:45:00,2026-02-24 00:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,112.81 +2026-02-25 16:25:00,2026-02-26 21:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,4.5,0,123.08 +2026-02-22 11:28:32,2026-02-22 11:00:00,NFL,Miami Dolphins,Detroit Lions,0.5,0.0,0.753,BetMGM,POINTS_SPREAD,2.7,1,118.23 +2026-04-15 22:47:00,2026-04-18 19:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,6.7,1,151.61 +2026-04-04 03:59:00,2026-04-04 09:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-15 21:53:00,2026-04-18 19:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,0,100.0 +2026-02-24 22:47:00,2026-02-26 04:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,246.0,1,105.15 +2026-04-02 13:45:00,2026-04-03 00:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.9,0,103.0 +2026-03-23 18:52:00,2026-03-25 22:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,5.1,1,100.0 +2026-04-16 10:14:00,2026-04-18 02:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,102.85 +2026-03-21 04:15:00,2026-03-22 19:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-19 02:25:00,2026-02-20 18:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,1,115.97 +2026-03-29 20:14:00,2026-03-30 23:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,103.55 +2026-02-19 16:44:00,2026-02-21 16:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.1,1,125.26 +2026-04-19 20:36:36,2026-04-19 19:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,229.5,0.57,Fanduel,POINTS_TOTAL,225.7,1,100.0 +2026-03-10 03:25:10,2026-03-10 05:00:00,NBA,Boston Celtics,Phoenix Suns,1.9,0.0,0.201,BetMGM,POINTS_SPREAD,2.7,0,100.0 +2026-03-15 13:01:00,2026-03-16 13:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,111.93 +2026-04-10 01:17:38,2026-04-10 00:00:00,NFL,Buffalo Bills,Dallas Cowboys,2.4,0.0,0.848,BetMGM,POINTS_SPREAD,1.0,1,108.01 +2026-03-14 14:17:00,2026-03-17 11:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,108.82 +2026-03-11 20:01:08,2026-03-11 21:00:00,NFL,Buffalo Bills,Philadelphia Eagles,-4.8,0.0,0.223,BetMGM,POINTS_SPREAD,1.2,1,139.55 +2026-02-26 23:35:00,2026-02-27 20:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,150.57 +2026-03-25 21:53:00,2026-03-27 08:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,43.5,1,100.0 +2026-02-28 05:05:00,2026-03-02 01:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.3,1,118.7 +2026-03-26 13:34:00,2026-03-27 09:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,6.1,1,100.0 +2026-02-20 23:35:00,2026-02-21 18:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,1,106.19 +2026-03-27 21:33:00,2026-03-27 22:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.3,1,100.0 +2026-02-22 02:47:43,2026-02-22 02:00:00,NHL,Carolina Hurricanes,Florida Panthers,-1.2,0.0,0.404,BetMGM,POINTS_SPREAD,3.1,1,105.27 +2026-02-25 05:58:00,2026-02-26 01:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,149.41 +2026-04-16 14:39:25,2026-04-16 12:00:00,NHL,Florida Panthers,Toronto Maple Leafs,-0.1,0.0,0.919,BetMGM,POINTS_SPREAD,0.1,0,106.26 +2026-03-24 04:33:00,2026-03-25 08:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-18 20:02:09,2026-04-18 20:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.062,Fanduel,MONEYLINE,0.0,NA,162.88 +2026-02-28 10:15:00,2026-02-28 11:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.5,0,113.66 +2026-04-11 05:29:00,2026-04-13 19:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,133.53 +2026-03-12 04:50:09,2026-03-12 04:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,21.0,0.462,Fanduel,POINTS_TOTAL,15.4,1,100.0 +2026-04-12 16:51:00,2026-04-14 07:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,0,135.39 +2026-03-07 07:20:00,2026-03-09 14:00:00,NFL,San Francisco 49ers,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,145.63 +2026-03-19 08:36:00,2026-03-22 06:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.9,0,107.47 +2026-02-28 13:28:00,2026-03-01 17:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,135.97 +2026-03-28 06:03:00,2026-03-28 20:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-20 10:18:00,2026-02-21 06:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,149.59 +2026-03-20 21:32:58,2026-03-20 20:00:00,NHL,Carolina Hurricanes,Boston Bruins,-4.4,0.0,0.561,Fanduel,POINTS_SPREAD,2.1,1,130.37 +2026-04-11 19:57:30,2026-04-11 19:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.375,BetMGM,MONEYLINE,0.0,NA,106.36 +2026-04-03 07:13:24,2026-04-03 07:00:00,NBA,Golden State Warriors,Denver Nuggets,-1.2,0.0,0.43,BetMGM,POINTS_SPREAD,2.2,0,143.14 +2026-02-21 11:42:00,2026-02-22 13:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-16 03:00:25,2026-03-16 03:00:00,NBA,Miami Heat,Boston Celtics,0.0,231.2,0.519,Fanduel,POINTS_TOTAL,233.1,0,100.0 +2026-04-11 08:33:00,2026-04-11 22:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,1,100.0 +2026-04-13 15:20:48,2026-04-13 17:00:00,NHL,Florida Panthers,New York Rangers,0.0,3.5,0.16,BetMGM,POINTS_TOTAL,3.5,1,109.33 +2026-03-20 21:31:00,2026-03-21 19:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-20 00:40:00,2026-03-22 16:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,51.4,0,100.0 +2026-03-10 13:22:00,2026-03-12 14:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,1,114.62 +2026-03-20 17:27:00,2026-03-22 05:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-14 11:47:00,2026-04-15 16:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.9,0,100.0 +2026-04-18 04:37:00,2026-04-20 21:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,16.3,1,104.71 +2026-04-07 15:22:20,2026-04-07 15:00:00,NFL,Detroit Lions,Philadelphia Eagles,-2.6,0.0,0.463,BetMGM,POINTS_SPREAD,0.6,0,100.0 +2026-02-26 19:24:00,2026-02-28 20:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.33 +2026-04-06 06:08:40,2026-04-06 07:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.076,Fanduel,MONEYLINE,0.0,NA,129.13 +2026-03-07 17:58:00,2026-03-07 19:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,232.0,0,120.71 +2026-04-16 14:23:00,2026-04-18 12:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,0,100.0 +2026-02-21 08:40:00,2026-02-21 21:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,40.3,1,110.63 +2026-03-15 00:23:00,2026-03-17 16:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,1,100.0 +2026-03-05 21:46:00,2026-03-08 05:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,1,119.31 +2026-03-25 17:02:00,2026-03-28 09:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,35.1,0,121.25 +2026-03-03 13:15:01,2026-03-03 13:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,52.9,0.839,BetMGM,POINTS_TOTAL,57.6,0,103.35 +2026-03-31 23:34:00,2026-04-03 09:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,134.13 +2026-03-25 05:00:30,2026-03-25 03:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.925,Fanduel,MONEYLINE,0.0,NA,136.84 +2026-04-07 06:41:00,2026-04-08 10:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.2,1,100.0 +2026-03-08 15:20:00,2026-03-08 16:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,36.2,0.35,Fanduel,POINTS_TOTAL,33.9,1,119.68 +2026-03-16 20:00:00,2026-03-17 19:00:00,NFL,Philadelphia Eagles,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,57.3,0,101.26 +2026-03-01 11:36:00,2026-03-02 02:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,1,120.15 +2026-03-29 18:34:08,2026-03-29 20:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,28.8,0.173,BetMGM,POINTS_TOTAL,25.5,0,105.15 +2026-04-07 18:42:07,2026-04-07 18:00:00,NFL,Buffalo Bills,Detroit Lions,7.1,0.0,0.834,BetMGM,POINTS_SPREAD,1.2,1,100.0 +2026-02-21 04:38:00,2026-02-23 02:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,4.9,1,107.03 +2026-04-16 01:24:45,2026-04-16 02:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.282,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-13 02:03:00,2026-04-15 11:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.3,1,132.8 +2026-03-06 06:50:00,2026-03-06 17:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,230.1,1,111.78 +2026-03-11 16:38:00,2026-03-13 03:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,118.47 +2026-03-04 08:12:38,2026-03-04 10:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.098,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-20 07:47:00,2026-02-23 03:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.0,1,100.0 +2026-03-13 15:10:00,2026-03-14 20:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,135.79 +2026-02-28 11:27:00,2026-03-02 13:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,237.2,0,100.0 +2026-04-17 04:15:00,2026-04-19 05:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,215.7,0,121.64 +2026-04-19 00:22:04,2026-04-19 00:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,4.1,0.256,BetMGM,POINTS_TOTAL,3.5,0,120.76 +2026-03-08 02:39:00,2026-03-09 20:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,1,120.26 +2026-02-24 15:57:14,2026-02-24 15:00:00,NBA,Dallas Mavericks,Boston Celtics,-1.0,0.0,0.468,Fanduel,POINTS_SPREAD,3.2,0,127.54 +2026-02-26 14:20:00,2026-02-27 03:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,0,100.0 +2026-03-27 12:54:01,2026-03-27 12:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.389,Fanduel,MONEYLINE,0.0,NA,170.63 +2026-03-13 03:30:12,2026-03-13 03:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.7,0.0,0.79,Fanduel,POINTS_SPREAD,2.3,1,121.74 +2026-04-10 04:33:00,2026-04-11 03:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,20.3,0,119.83 +2026-04-04 04:32:00,2026-04-05 11:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.0,1,100.0 +2026-04-20 06:45:00,2026-04-21 09:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,5.0,0,100.0 +2026-03-21 08:03:00,2026-03-22 14:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,156.38 +2026-04-08 13:11:00,2026-04-11 05:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,135.14 +2026-03-13 10:34:00,2026-03-14 05:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,0,124.22 +2026-03-14 18:40:00,2026-03-17 11:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,1,100.0 +2026-02-19 04:45:00,2026-02-21 16:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,58.2,1,110.87 +2026-04-13 05:34:16,2026-04-13 04:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.746,BetMGM,MONEYLINE,0.0,NA,153.01 +2026-03-30 14:18:00,2026-03-31 10:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,0,135.87 +2026-03-02 19:55:00,2026-03-04 08:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,126.87 +2026-03-01 15:08:00,2026-03-04 03:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,0,103.41 +2026-02-23 12:10:00,2026-02-24 14:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,100.28 +2026-02-27 12:51:00,2026-02-27 20:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,139.78 +2026-04-10 02:56:34,2026-04-10 04:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.381,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-01 02:29:21,2026-04-01 03:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.402,Fanduel,MONEYLINE,0.0,NA,133.0 +2026-03-24 16:53:52,2026-03-24 18:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.266,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-31 06:06:00,2026-03-31 23:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,0,141.07 +2026-03-22 13:30:00,2026-03-23 22:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,0,117.18 +2026-03-18 21:15:00,2026-03-18 22:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,4.5,1,109.98 +2026-03-14 18:36:01,2026-03-14 19:00:00,NFL,Philadelphia Eagles,Detroit Lions,-0.8,0.0,0.339,BetMGM,POINTS_SPREAD,0.8,0,101.03 +2026-03-28 20:07:00,2026-03-30 18:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,31.1,1,112.88 +2026-03-11 13:53:09,2026-03-11 12:00:00,NBA,Milwaukee Bucks,Boston Celtics,-0.5,0.0,0.712,Fanduel,POINTS_SPREAD,0.0,1,108.11 +2026-03-12 19:39:00,2026-03-14 16:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,160.29 +2026-03-09 08:12:00,2026-03-10 21:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,0,100.0 +2026-02-22 09:25:00,2026-02-25 08:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,160.02 +2026-03-28 13:10:00,2026-03-29 15:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.5,0,100.0 +2026-04-15 05:37:00,2026-04-16 10:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,12.0,0,109.99 +2026-03-08 15:05:00,2026-03-09 22:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,16.3,1,100.0 +2026-02-25 15:17:15,2026-02-25 15:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.157,Fanduel,MONEYLINE,0.0,NA,130.71 +2026-04-16 10:18:00,2026-04-17 18:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.0,1,129.16 +2026-04-11 09:36:00,2026-04-13 07:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.2,1,166.53 +2026-04-20 05:18:21,2026-04-20 06:00:00,NFL,Miami Dolphins,San Francisco 49ers,-5.9,0.0,0.402,Fanduel,POINTS_SPREAD,3.8,1,119.46 +2026-04-12 02:56:00,2026-04-14 01:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,196.67 +2026-02-24 19:07:00,2026-02-26 10:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,14.9,0,100.0 +2026-03-11 21:42:00,2026-03-13 06:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.3,1,121.28 +2026-03-24 14:09:09,2026-03-24 12:00:00,NFL,San Francisco 49ers,Baltimore Ravens,-0.4,0.0,0.862,BetMGM,POINTS_SPREAD,0.6,1,112.5 +2026-03-16 14:52:00,2026-03-16 16:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,158.5 +2026-03-28 21:52:00,2026-03-29 20:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,13.3,1,100.0 +2026-03-11 14:19:00,2026-03-12 15:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,110.86 +2026-04-05 23:39:00,2026-04-06 10:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,186.8 +2026-04-11 13:37:00,2026-04-14 00:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,156.49 +2026-02-19 23:04:00,2026-02-21 04:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,11.8,0,100.72 +2026-03-09 07:35:33,2026-03-09 07:00:00,NBA,Boston Celtics,Phoenix Suns,-0.2,0.0,0.342,Fanduel,POINTS_SPREAD,4.0,0,100.0 +2026-04-05 15:59:00,2026-04-06 11:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,182.63 +2026-03-04 02:04:00,2026-03-05 11:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,242.2,1,133.53 +2026-03-01 04:17:31,2026-03-01 04:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.514,Fanduel,MONEYLINE,0.0,NA,105.98 +2026-03-26 02:15:00,2026-03-26 11:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,0,128.26 +2026-03-12 10:38:00,2026-03-12 20:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.4,1,100.0 +2026-03-13 17:36:00,2026-03-16 03:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,5.8,0,100.0 +2026-02-19 09:32:00,2026-02-20 22:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,49.1,1,100.0 +2026-03-10 17:13:00,2026-03-12 04:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.6,1,116.73 +2026-02-26 09:08:00,2026-03-01 05:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.8,0,101.28 +2026-03-16 16:06:00,2026-03-17 04:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,8.2,0,153.2 +2026-04-09 21:23:00,2026-04-11 12:00:00,NBA,Boston Celtics,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,1,100.0 +2026-03-27 14:03:00,2026-03-30 04:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,101.53 +2026-02-27 20:25:00,2026-03-01 19:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,219.6,0,100.0 +2026-03-06 07:15:00,2026-03-08 09:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-12 13:09:12,2026-04-12 13:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,228.5,0.64,Fanduel,POINTS_TOTAL,222.2,0,131.74 +2026-02-22 23:59:00,2026-02-23 08:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,224.8,1,100.0 +2026-02-25 19:48:00,2026-02-27 07:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,8.7,1,131.13 +2026-04-10 00:26:00,2026-04-11 02:00:00,NBA,Milwaukee Bucks,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,0,112.08 +2026-03-19 01:54:00,2026-03-21 18:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,0,112.67 +2026-03-21 01:46:00,2026-03-22 20:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,7.0,0,100.0 +2026-03-21 17:33:00,2026-03-23 20:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,178.22 +2026-03-15 11:15:42,2026-03-15 11:00:00,NBA,Golden State Warriors,Boston Celtics,-1.3,0.0,0.665,BetMGM,POINTS_SPREAD,3.2,1,100.0 +2026-03-27 01:08:00,2026-03-27 13:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.2,1,103.73 +2026-04-12 19:17:00,2026-04-12 23:00:00,NBA,Boston Celtics,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,5.0,1,112.11 +2026-04-12 15:08:14,2026-04-12 14:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,14.6,0.468,BetMGM,POINTS_TOTAL,17.0,1,100.0 +2026-03-04 05:30:00,2026-03-05 00:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,38.1,0,112.81 +2026-04-10 10:41:00,2026-04-11 22:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,228.8,0,112.88 +2026-02-19 16:35:00,2026-02-21 03:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,118.24 +2026-03-03 22:51:00,2026-03-04 18:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,0,101.77 +2026-04-19 16:14:28,2026-04-19 18:00:00,NBA,Boston Celtics,Milwaukee Bucks,2.7,0.0,0.136,Fanduel,POINTS_SPREAD,3.8,0,129.17 +2026-02-23 13:33:00,2026-02-26 06:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,0,125.56 +2026-03-23 10:09:00,2026-03-24 05:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,8.4,0,123.29 +2026-04-01 22:01:00,2026-04-04 09:00:00,NHL,Carolina Hurricanes,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,125.61 +2026-02-20 22:53:00,2026-02-21 09:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,6.0,0,100.0 +2026-02-22 21:49:00,2026-02-23 22:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,218.0,0,114.76 +2026-04-06 09:29:07,2026-04-06 10:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.134,BetMGM,MONEYLINE,0.0,NA,139.4 +2026-03-30 22:25:49,2026-03-31 00:00:00,NFL,San Francisco 49ers,Miami Dolphins,2.7,0.0,0.099,BetMGM,POINTS_SPREAD,2.9,0,107.41 +2026-03-15 03:47:00,2026-03-15 14:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,223.1,0,100.0 +2026-03-15 11:45:00,2026-03-16 23:00:00,NBA,Denver Nuggets,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,220.1,0,107.9 +2026-03-10 10:02:28,2026-03-10 10:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.586,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-07 23:37:00,2026-04-08 22:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,1,100.0 +2026-03-25 05:56:45,2026-03-25 06:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.6,0.0,0.432,Fanduel,POINTS_SPREAD,2.3,0,100.0 +2026-04-09 10:17:00,2026-04-09 16:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,11.1,1,130.14 +2026-04-04 14:56:00,2026-04-05 23:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,135.1 +2026-02-19 18:49:00,2026-02-22 12:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,230.9,0,103.82 +2026-02-21 02:23:00,2026-02-23 13:00:00,NHL,Colorado Avalanche,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,141.86 +2026-04-16 11:41:00,2026-04-17 05:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.9,0,100.0 +2026-03-16 11:13:00,2026-03-18 03:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,6.5,1,100.45 +2026-03-18 17:26:00,2026-03-21 14:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,8.4,0,104.0 +2026-04-06 21:57:00,2026-04-07 01:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,5.6,1,100.0 +2026-02-26 17:09:06,2026-02-26 17:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.395,Fanduel,MONEYLINE,0.0,NA,116.39 +2026-03-06 06:03:00,2026-03-08 21:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,34.8,1,100.0 +2026-03-23 06:08:44,2026-03-23 06:00:00,NFL,Baltimore Ravens,Buffalo Bills,1.7,0.0,0.193,Fanduel,POINTS_SPREAD,0.8,0,119.98 +2026-03-25 07:51:04,2026-03-25 08:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.2,0.0,0.656,BetMGM,POINTS_SPREAD,2.5,1,100.0 +2026-04-19 21:11:00,2026-04-20 00:00:00,NBA,Los Angeles Lakers,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.7,1,100.0 +2026-04-18 07:21:34,2026-04-18 08:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,10.4,0.531,Fanduel,POINTS_TOTAL,11.6,0,120.92 +2026-03-28 10:27:08,2026-03-28 08:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.873,BetMGM,MONEYLINE,0.0,NA,138.68 +2026-03-05 22:36:00,2026-03-07 08:00:00,NHL,Edmonton Oilers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,0,100.0 +2026-03-26 23:04:00,2026-03-29 22:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,19.9,0,100.86 +2026-04-05 09:16:00,2026-04-06 09:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,0,100.0 +2026-04-12 08:07:09,2026-04-12 06:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,22.5,0.712,BetMGM,POINTS_TOTAL,24.5,0,100.0 +2026-04-07 01:56:00,2026-04-08 09:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,119.44 +2026-03-21 19:08:33,2026-03-21 19:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,7.2,0.642,BetMGM,POINTS_TOTAL,3.5,0,123.71 +2026-03-27 04:18:00,2026-03-28 18:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,0,106.52 +2026-03-19 10:36:00,2026-03-21 00:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,0,118.2 +2026-03-10 06:06:21,2026-03-10 06:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.602,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-06 05:18:51,2026-03-06 07:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.127,Fanduel,MONEYLINE,0.0,NA,146.39 +2026-02-20 04:50:00,2026-02-22 11:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,0,104.05 +2026-03-21 14:39:00,2026-03-23 04:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,170.41 +2026-03-20 17:39:00,2026-03-23 08:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,8.6,1,107.33 +2026-02-24 04:13:00,2026-02-24 23:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,1,114.74 +2026-04-03 02:51:28,2026-04-03 04:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,3.5,0.336,BetMGM,POINTS_TOTAL,3.5,0,100.0 +2026-03-28 09:19:07,2026-03-28 11:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,219.5,0.084,BetMGM,POINTS_TOTAL,215.1,1,100.0 +2026-03-23 02:34:00,2026-03-24 04:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.8,0,137.93 +2026-03-19 16:47:00,2026-03-21 00:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,104.82 +2026-03-26 02:38:00,2026-03-26 23:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,230.4,1,106.71 +2026-03-26 19:28:00,2026-03-27 05:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,0,122.47 +2026-03-03 20:48:00,2026-03-04 09:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,237.6,0,107.65 +2026-04-01 08:54:00,2026-04-04 06:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.1,1,100.0 +2026-03-27 18:55:00,2026-03-30 08:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.1,1,100.0 +2026-03-12 22:11:00,2026-03-13 14:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,6.0,0,100.0 +2026-03-22 18:41:00,2026-03-24 04:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,226.4,0,121.23 +2026-04-15 13:38:57,2026-04-15 13:00:00,NFL,Detroit Lions,Dallas Cowboys,-0.1,0.0,0.572,Fanduel,POINTS_SPREAD,0.2,1,123.33 +2026-04-14 00:30:00,2026-04-14 22:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,14.8,0,100.0 +2026-03-20 05:34:00,2026-03-21 15:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,43.4,0,107.62 +2026-04-14 14:32:00,2026-04-16 15:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.2,1,104.28 +2026-03-18 23:08:00,2026-03-20 03:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,1,124.1 +2026-03-14 03:05:00,2026-03-15 11:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,135.1 +2026-03-14 00:32:00,2026-03-14 03:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,149.65 +2026-02-22 14:52:00,2026-02-24 05:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,132.48 +2026-02-21 19:31:00,2026-02-22 23:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-15 06:56:00,2026-04-16 01:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,0,133.99 +2026-03-23 17:11:00,2026-03-26 02:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.9,0,100.0 +2026-03-18 03:27:00,2026-03-19 23:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,216.8,0,100.0 +2026-03-10 18:25:00,2026-03-11 03:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,15.2,1,113.81 +2026-04-12 21:57:00,2026-04-14 11:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,106.34 +2026-03-23 07:49:16,2026-03-23 07:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.846,BetMGM,MONEYLINE,0.0,NA,129.41 +2026-03-29 05:38:54,2026-03-29 04:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.705,Fanduel,MONEYLINE,0.0,NA,139.01 +2026-03-19 18:14:00,2026-03-22 06:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,1,100.0 +2026-04-16 04:07:00,2026-04-16 23:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.0,1,102.51 +2026-03-11 23:50:00,2026-03-12 01:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,142.68 +2026-04-05 09:04:00,2026-04-08 09:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,1,117.09 +2026-03-30 05:11:00,2026-04-01 07:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.7,1,113.73 +2026-04-08 07:49:38,2026-04-08 10:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,4.2,0.0,0.048,BetMGM,POINTS_SPREAD,0.3,0,108.0 +2026-04-15 11:06:00,2026-04-17 12:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,123.79 +2026-02-22 09:42:08,2026-02-22 11:00:00,NHL,Florida Panthers,New York Rangers,-5.4,0.0,0.223,Fanduel,POINTS_SPREAD,1.0,0,100.0 +2026-02-27 13:33:15,2026-02-27 11:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,41.6,0.857,Fanduel,POINTS_TOTAL,37.5,0,130.54 +2026-02-28 09:44:42,2026-02-28 10:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,4.0,0.065,Fanduel,POINTS_TOTAL,3.5,0,110.82 +2026-03-01 07:26:00,2026-03-01 11:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,238.5,0,103.77 +2026-04-09 02:13:00,2026-04-09 16:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.6,1,119.16 +2026-03-14 11:20:28,2026-03-14 12:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,207.3,0.036,BetMGM,POINTS_TOTAL,207.6,0,126.0 +2026-04-07 16:12:00,2026-04-08 08:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,222.4,0,102.76 +2026-02-25 20:11:56,2026-02-25 20:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.283,Fanduel,MONEYLINE,0.0,NA,158.36 +2026-03-27 20:28:00,2026-03-28 03:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,113.43 +2026-03-11 06:33:00,2026-03-14 04:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,107.71 +2026-03-21 05:48:48,2026-03-21 05:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.66,Fanduel,MONEYLINE,0.0,NA,170.61 +2026-04-04 03:20:00,2026-04-06 15:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,117.94 +2026-03-14 14:22:51,2026-03-14 16:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,5.7,0.177,BetMGM,POINTS_TOTAL,3.5,1,122.04 +2026-02-28 13:48:16,2026-02-28 14:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,12.4,0.596,BetMGM,POINTS_TOTAL,11.2,0,118.38 +2026-03-26 15:40:00,2026-03-29 13:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,119.9 +2026-03-01 07:45:00,2026-03-01 11:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-27 12:58:13,2026-03-27 13:00:00,NFL,Baltimore Ravens,Buffalo Bills,-1.4,0.0,0.529,Fanduel,POINTS_SPREAD,1.8,0,108.43 +2026-04-17 05:41:00,2026-04-18 15:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,224.5,0,100.0 +2026-04-10 03:36:50,2026-04-10 05:00:00,NBA,Milwaukee Bucks,Miami Heat,-0.1,0.0,0.138,Fanduel,POINTS_SPREAD,4.6,1,107.05 +2026-04-08 16:54:00,2026-04-09 08:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,1,100.0 +2026-03-05 15:15:00,2026-03-06 12:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,8.7,1,101.12 +2026-03-15 01:22:00,2026-03-16 06:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,149.27 +2026-03-23 00:08:00,2026-03-25 02:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,1,121.21 +2026-04-05 04:33:00,2026-04-07 13:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,48.9,0,108.51 +2026-02-24 22:36:39,2026-02-24 21:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,235.3,0.787,BetMGM,POINTS_TOTAL,240.5,1,102.82 +2026-03-19 03:15:55,2026-03-19 04:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,64.1,0.344,BetMGM,POINTS_TOTAL,60.7,0,120.31 +2026-02-25 15:05:00,2026-02-26 16:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-13 13:21:08,2026-03-13 15:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.073,BetMGM,MONEYLINE,0.0,NA,106.21 +2026-04-07 14:01:00,2026-04-10 05:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,142.47 +2026-03-06 02:36:00,2026-03-07 06:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,26.1,0,100.0 +2026-03-23 20:59:00,2026-03-26 06:00:00,NBA,Milwaukee Bucks,Denver Nuggets,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,101.81 +2026-02-19 22:30:00,2026-02-22 00:00:00,NHL,Carolina Hurricanes,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,118.52 +2026-04-14 23:04:00,2026-04-17 18:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.4,0,100.0 +2026-04-07 03:49:00,2026-04-10 03:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,126.89 +2026-02-27 03:51:00,2026-03-01 13:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,9.0,0,110.17 +2026-03-12 12:31:34,2026-03-12 12:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,59.8,0.281,Fanduel,POINTS_TOTAL,57.1,0,134.71 +2026-02-22 05:42:00,2026-02-22 18:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,1,121.35 +2026-03-07 23:52:00,2026-03-10 06:00:00,NFL,Philadelphia Eagles,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,0,100.0 +2026-04-15 19:01:00,2026-04-17 12:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.9,0,109.17 +2026-04-04 13:35:00,2026-04-06 23:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-26 19:59:00,2026-03-28 03:00:00,NHL,New York Rangers,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,108.4 +2026-03-01 06:01:00,2026-03-03 02:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,148.19 +2026-04-04 21:41:00,2026-04-05 05:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,217.4,1,114.62 +2026-04-08 15:35:00,2026-04-08 22:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,1,100.0 +2026-04-16 07:21:00,2026-04-19 00:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-02 09:07:09,2026-03-02 07:00:00,NFL,Miami Dolphins,Baltimore Ravens,1.3,0.0,0.862,Fanduel,POINTS_SPREAD,4.8,1,100.0 +2026-03-11 18:09:00,2026-03-12 06:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,136.29 +2026-02-28 02:43:00,2026-03-03 00:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,53.1,1,100.0 +2026-04-19 19:58:00,2026-04-21 06:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,103.68 +2026-03-16 11:23:04,2026-03-16 12:00:00,NHL,Toronto Maple Leafs,Boston Bruins,-3.7,0.0,0.106,Fanduel,POINTS_SPREAD,0.6,0,100.0 +2026-04-13 10:51:00,2026-04-14 19:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,1,117.92 +2026-04-18 18:10:00,2026-04-20 02:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.7,0,100.0 +2026-04-16 23:35:00,2026-04-19 02:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,0,146.1 +2026-03-09 06:28:40,2026-03-09 07:00:00,NHL,Boston Bruins,Colorado Avalanche,-3.7,0.0,0.226,Fanduel,POINTS_SPREAD,2.0,0,100.0 +2026-03-29 16:58:14,2026-03-29 19:00:00,NBA,Denver Nuggets,Los Angeles Lakers,-0.4,0.0,0.068,BetMGM,POINTS_SPREAD,1.5,0,100.0 +2026-04-05 12:09:00,2026-04-06 20:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,132.77 +2026-03-24 21:21:00,2026-03-26 19:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,153.66 +2026-04-10 22:36:00,2026-04-10 23:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,115.44 +2026-03-22 19:10:00,2026-03-25 02:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-06 05:20:32,2026-04-06 06:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,0.0,0.503,BetMGM,MONEYLINE,0.0,NA,144.35 +2026-03-12 11:39:42,2026-03-12 10:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,-0.2,0.0,0.765,Fanduel,POINTS_SPREAD,2.2,1,109.72 +2026-04-09 22:39:00,2026-04-11 01:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,11.0,1,100.0 +2026-03-13 05:01:13,2026-03-13 05:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,3.5,0.379,BetMGM,POINTS_TOTAL,7.0,1,119.12 +2026-04-12 08:01:04,2026-04-12 10:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.056,Fanduel,MONEYLINE,0.0,NA,108.92 +2026-03-19 19:23:00,2026-03-20 20:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,104.9 +2026-02-25 13:51:00,2026-02-26 05:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,50.6,1,113.23 +2026-03-30 08:28:00,2026-04-02 06:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.8,0,100.0 +2026-04-07 20:47:37,2026-04-07 22:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,52.8,0.109,Fanduel,POINTS_TOTAL,59.0,0,104.16 +2026-03-08 18:58:00,2026-03-11 18:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,232.3,1,100.0 +2026-04-19 01:50:00,2026-04-21 12:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.9,1,100.0 +2026-03-06 23:22:14,2026-03-06 23:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,239.9,0.568,BetMGM,POINTS_TOTAL,242.7,1,117.36 +2026-02-26 13:07:00,2026-02-27 13:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,40.0,1,109.95 +2026-03-10 23:11:00,2026-03-12 05:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,0,113.98 +2026-03-22 18:04:00,2026-03-25 14:00:00,NHL,Carolina Hurricanes,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,103.46 +2026-04-12 05:55:00,2026-04-14 16:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,4.7,1,123.4 +2026-02-27 14:37:00,2026-03-02 14:00:00,NHL,Florida Panthers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,6.0,0,102.61 +2026-03-03 09:06:00,2026-03-03 13:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,45.2,1,105.23 +2026-03-23 16:30:00,2026-03-26 04:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-02 22:44:00,2026-03-03 00:00:00,NHL,New York Rangers,Boston Bruins,0.0,4.6,0.3,BetMGM,POINTS_TOTAL,5.7,1,111.78 +2026-04-11 02:15:00,2026-04-11 07:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,151.11 +2026-03-28 05:44:00,2026-03-28 11:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,187.11 +2026-03-06 03:48:00,2026-03-06 18:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-05 17:32:00,2026-04-05 23:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,50.5,0,100.0 +2026-04-01 01:33:13,2026-04-01 03:00:00,NBA,Golden State Warriors,Denver Nuggets,0.0,0.0,0.179,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-31 15:22:00,2026-03-31 18:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,212.5,0,100.0 +2026-02-22 09:54:00,2026-02-24 18:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.9,0,100.0 +2026-04-13 00:12:37,2026-04-13 01:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,41.7,0.309,BetMGM,POINTS_TOTAL,38.9,0,127.23 +2026-04-13 20:08:00,2026-04-15 21:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-25 11:38:00,2026-03-25 16:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,1,100.0 +2026-03-01 14:51:00,2026-03-01 16:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.7,0,112.14 +2026-03-12 04:23:00,2026-03-12 12:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,1,107.51 +2026-02-20 04:45:00,2026-02-20 17:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.6,0,100.0 +2026-03-08 02:31:00,2026-03-10 02:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,105.97 +2026-03-31 00:31:00,2026-04-02 07:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,133.18 +2026-03-04 20:26:00,2026-03-05 18:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,6.8,0,100.0 +2026-02-25 18:49:00,2026-02-25 19:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,146.69 +2026-04-11 12:53:12,2026-04-11 12:00:00,NBA,Denver Nuggets,Phoenix Suns,-0.2,0.0,0.54,Fanduel,POINTS_SPREAD,6.7,1,147.7 +2026-02-21 16:45:00,2026-02-22 15:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,102.07 +2026-04-15 19:15:36,2026-04-15 18:00:00,NFL,Miami Dolphins,Philadelphia Eagles,-5.3,0.0,0.52,BetMGM,POINTS_SPREAD,0.8,1,127.07 +2026-04-01 09:36:00,2026-04-02 09:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.6,0,125.95 +2026-03-18 00:54:00,2026-03-21 00:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,44.9,0,100.0 +2026-03-28 02:00:00,2026-03-30 22:00:00,NHL,Florida Panthers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,0,109.81 +2026-04-04 14:59:00,2026-04-05 01:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,122.74 +2026-03-01 10:28:24,2026-03-01 11:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,28.4,0.38,Fanduel,POINTS_TOTAL,27.2,0,113.41 +2026-02-24 07:49:00,2026-02-26 07:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,6.3,0,100.0 +2026-03-31 14:17:25,2026-03-31 12:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,47.2,0.769,BetMGM,POINTS_TOTAL,50.6,0,100.0 +2026-03-17 10:26:00,2026-03-19 06:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,228.9,0,106.34 +2026-04-15 21:25:00,2026-04-18 09:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,100.0 +2026-02-25 20:25:01,2026-02-25 19:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.689,Fanduel,MONEYLINE,0.0,NA,126.13 +2026-03-18 11:17:18,2026-03-18 12:00:00,NHL,Boston Bruins,New York Rangers,0.9,0.0,0.485,BetMGM,POINTS_SPREAD,2.8,1,126.74 +2026-04-13 06:32:00,2026-04-15 06:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,0,100.0 +2026-03-02 16:46:00,2026-03-02 23:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-22 15:49:00,2026-03-23 17:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,105.22 +2026-03-14 00:46:01,2026-03-14 00:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,231.4,0.339,Fanduel,POINTS_TOTAL,230.8,0,109.23 +2026-02-24 05:48:00,2026-02-25 15:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,122.99 +2026-03-18 17:36:07,2026-03-18 17:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.634,BetMGM,MONEYLINE,0.0,NA,143.64 +2026-04-08 18:37:32,2026-04-08 18:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,227.6,0.653,Fanduel,POINTS_TOTAL,225.0,1,100.0 +2026-03-11 09:20:00,2026-03-11 23:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,108.59 +2026-04-04 12:49:46,2026-04-04 12:00:00,NBA,Boston Celtics,Dallas Mavericks,5.9,0.0,0.321,Fanduel,POINTS_SPREAD,1.9,0,146.04 +2026-03-09 10:53:26,2026-03-09 10:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,11.0,0.658,Fanduel,POINTS_TOTAL,12.5,1,112.84 +2026-02-22 07:50:00,2026-02-24 16:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,127.41 +2026-03-29 02:42:16,2026-03-29 04:00:00,NBA,Golden State Warriors,Miami Heat,0.0,227.6,0.346,Fanduel,POINTS_TOTAL,224.5,1,102.68 +2026-04-05 22:25:00,2026-04-06 09:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,134.18 +2026-03-11 13:13:00,2026-03-14 00:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,242.6,0,129.01 +2026-03-05 16:21:00,2026-03-07 14:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,0,117.98 +2026-03-29 17:46:00,2026-03-30 15:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,1,132.5 +2026-02-22 12:55:00,2026-02-23 04:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,141.27 +2026-04-05 14:29:00,2026-04-06 01:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-20 22:09:45,2026-03-20 22:00:00,NHL,Toronto Maple Leafs,Carolina Hurricanes,0.0,0.0,0.682,BetMGM,MONEYLINE,0.0,NA,138.77 +2026-03-17 15:02:00,2026-03-17 22:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,102.68 +2026-04-12 08:37:00,2026-04-14 11:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,217.2,0,109.23 +2026-03-23 12:40:00,2026-03-26 11:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,110.93 +2026-03-19 22:21:00,2026-03-22 19:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.4,1,112.74 +2026-02-25 06:30:15,2026-02-25 06:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.357,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-16 12:42:57,2026-04-16 12:00:00,NFL,Buffalo Bills,Miami Dolphins,3.6,0.0,0.322,BetMGM,POINTS_SPREAD,4.5,1,100.0 +2026-04-04 21:01:00,2026-04-06 23:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,120.45 +2026-03-12 03:11:40,2026-03-12 04:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.376,BetMGM,MONEYLINE,0.0,NA,123.76 +2026-03-10 04:27:00,2026-03-13 03:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-16 21:45:00,2026-04-19 11:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,225.3,1,100.0 +2026-04-03 05:56:00,2026-04-05 03:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,232.6,0,116.15 +2026-02-21 23:40:00,2026-02-24 08:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-16 14:00:00,2026-03-17 09:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,40.7,0,111.41 +2026-04-12 03:02:00,2026-04-14 11:00:00,NBA,Denver Nuggets,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,164.79 +2026-04-01 05:19:25,2026-04-01 05:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,3.5,0.819,Fanduel,POINTS_TOTAL,6.0,0,105.82 +2026-04-18 21:02:00,2026-04-20 11:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-11 12:15:38,2026-04-11 12:00:00,NHL,Toronto Maple Leafs,New York Rangers,7.2,0.0,0.698,Fanduel,POINTS_SPREAD,0.2,1,100.0 +2026-02-24 23:30:00,2026-02-26 00:00:00,NFL,San Francisco 49ers,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,0,127.71 +2026-04-13 16:01:00,2026-04-15 18:00:00,NFL,Baltimore Ravens,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,42.5,1,107.75 +2026-03-06 11:58:00,2026-03-06 23:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,231.1,1,120.94 +2026-03-22 05:23:00,2026-03-24 06:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,1,106.35 +2026-03-22 23:27:00,2026-03-23 23:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.3,1,137.09 +2026-03-09 18:00:00,2026-03-11 05:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,0,118.11 +2026-03-16 13:09:00,2026-03-18 23:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-28 23:22:33,2026-03-28 23:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,2.4,0.0,0.342,Fanduel,POINTS_SPREAD,1.0,0,120.04 +2026-03-22 01:09:00,2026-03-22 17:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,118.29 +2026-04-07 00:15:00,2026-04-08 23:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.5,1,112.5 +2026-04-03 09:16:00,2026-04-05 19:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,54.2,0,123.45 +2026-03-24 13:56:00,2026-03-27 04:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.2,1,100.0 +2026-03-04 10:49:00,2026-03-05 15:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,18.7,1,129.09 +2026-03-12 12:10:51,2026-03-12 12:00:00,NHL,New York Rangers,Vegas Golden Knights,-0.4,0.0,0.227,Fanduel,POINTS_SPREAD,0.7,0,107.57 +2026-03-30 05:53:00,2026-03-30 20:00:00,NHL,Edmonton Oilers,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,136.05 +2026-03-14 19:36:00,2026-03-16 19:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,8.9,0,121.4 +2026-04-01 09:54:34,2026-04-01 09:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,38.7,0.531,BetMGM,POINTS_TOTAL,40.5,1,109.47 +2026-03-16 11:22:00,2026-03-18 16:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,206.9,0,100.1 +2026-04-03 08:43:20,2026-04-03 09:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,13.3,0.313,Fanduel,POINTS_TOTAL,14.5,0,124.61 +2026-04-06 13:38:00,2026-04-07 01:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-18 12:58:00,2026-04-19 01:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.6,1,100.0 +2026-03-05 22:09:00,2026-03-08 18:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,1,100.0 +2026-03-16 10:01:00,2026-03-17 05:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,6.5,1,122.73 +2026-04-04 11:33:00,2026-04-07 03:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,100.0 +2026-03-14 03:08:00,2026-03-16 01:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,105.98 +2026-03-25 02:12:00,2026-03-28 00:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.3,1,131.5 +2026-03-09 18:54:34,2026-03-09 20:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.281,Fanduel,MONEYLINE,0.0,NA,107.42 +2026-03-14 17:42:52,2026-03-14 16:00:00,NFL,Miami Dolphins,San Francisco 49ers,-5.7,0.0,0.816,Fanduel,POINTS_SPREAD,0.3,0,100.0 +2026-03-14 15:20:15,2026-03-14 15:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,217.6,0.357,BetMGM,POINTS_TOTAL,220.3,1,106.87 +2026-04-16 07:19:00,2026-04-19 05:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,111.34 +2026-03-01 19:00:14,2026-03-01 18:00:00,NFL,Dallas Cowboys,Detroit Lions,-1.6,0.0,0.668,BetMGM,POINTS_SPREAD,1.1,1,100.0 +2026-03-11 04:25:25,2026-03-11 04:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.3,0.0,0.319,Fanduel,POINTS_SPREAD,0.8,1,100.0 +2026-04-16 09:33:00,2026-04-17 00:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,39.5,1,118.46 +2026-03-19 00:04:36,2026-03-19 00:00:00,NBA,Miami Heat,Boston Celtics,-2.8,0.0,0.62,BetMGM,POINTS_SPREAD,0.5,1,113.88 +2026-03-26 06:57:08,2026-03-26 05:00:00,NHL,Florida Panthers,Boston Bruins,0.0,16.4,0.773,Fanduel,POINTS_TOTAL,18.3,0,108.31 +2026-03-19 15:27:00,2026-03-20 11:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,130.97 +2026-03-30 20:45:46,2026-03-30 20:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.571,Fanduel,MONEYLINE,0.0,NA,137.46 +2026-04-08 05:13:00,2026-04-09 04:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,211.6,1,125.2 +2026-03-07 07:37:00,2026-03-09 05:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,11.0,1,100.0 +2026-04-15 20:24:00,2026-04-16 21:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,1,100.0 +2026-04-06 00:27:00,2026-04-06 01:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,242.0,0,104.45 +2026-04-03 13:26:00,2026-04-04 04:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,52.7,1,115.99 +2026-03-14 09:33:00,2026-03-15 17:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,46.9,1,100.0 +2026-04-06 20:07:00,2026-04-08 19:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,102.53 +2026-03-25 22:09:56,2026-03-25 23:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,220.3,0.433,Fanduel,POINTS_TOTAL,223.9,1,118.6 +2026-03-25 00:07:00,2026-03-27 01:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,55.3,0,108.7 +2026-04-13 19:13:00,2026-04-15 08:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,135.27 +2026-02-24 14:09:25,2026-02-24 15:00:00,NBA,Los Angeles Lakers,Denver Nuggets,-2.7,0.0,0.269,Fanduel,POINTS_SPREAD,2.8,1,127.65 +2026-04-16 06:38:00,2026-04-18 22:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,125.29 +2026-02-26 21:27:27,2026-02-26 22:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.597,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-13 08:32:00,2026-04-13 09:00:00,NBA,Los Angeles Lakers,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,219.6,0,118.29 +2026-03-14 15:26:48,2026-03-14 16:00:00,NBA,Dallas Mavericks,Boston Celtics,2.6,0.0,0.06,Fanduel,POINTS_SPREAD,1.4,1,100.0 +2026-04-19 08:53:00,2026-04-20 01:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,103.53 +2026-03-01 22:13:24,2026-03-01 21:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.73,Fanduel,MONEYLINE,0.0,NA,132.15 +2026-04-18 18:14:00,2026-04-19 06:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,111.89 +2026-04-06 07:42:37,2026-04-06 05:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,57.2,0.909,Fanduel,POINTS_TOTAL,57.8,0,100.38 +2026-04-18 23:34:32,2026-04-18 23:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,236.9,0.253,Fanduel,POINTS_TOTAL,235.6,0,118.65 +2026-03-23 21:43:00,2026-03-25 14:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,112.51 +2026-04-19 13:36:00,2026-04-21 02:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,215.8,1,109.06 +2026-03-05 02:43:00,2026-03-07 09:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.8,1,100.0 +2026-04-07 21:01:00,2026-04-08 09:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.1,1,106.84 +2026-04-19 05:55:13,2026-04-19 06:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.729,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-02-20 12:38:00,2026-02-22 22:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,132.1 +2026-03-16 16:28:00,2026-03-17 21:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,1,100.0 +2026-04-12 03:44:00,2026-04-12 22:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-26 10:57:00,2026-02-27 02:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,120.55 +2026-03-12 03:50:00,2026-03-14 19:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,152.5 +2026-03-09 01:01:00,2026-03-11 04:00:00,NFL,Buffalo Bills,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,0,100.0 +2026-03-19 23:18:00,2026-03-20 09:00:00,NBA,Phoenix Suns,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,125.92 +2026-03-02 13:22:00,2026-03-03 10:00:00,NHL,Florida Panthers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,145.26 +2026-02-22 07:17:00,2026-02-24 02:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,0,100.0 +2026-04-15 08:01:00,2026-04-16 17:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,46.7,0,104.61 +2026-03-25 14:12:00,2026-03-25 23:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,13.4,1,100.0 +2026-04-14 16:26:00,2026-04-16 03:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,115.38 +2026-04-12 11:47:00,2026-04-14 09:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,165.08 +2026-02-27 17:41:48,2026-02-27 17:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.91,BetMGM,MONEYLINE,0.0,NA,119.9 +2026-03-09 07:12:00,2026-03-10 01:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,39.3,0,122.06 +2026-02-21 05:06:00,2026-02-22 05:00:00,NBA,Denver Nuggets,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,222.9,1,117.14 +2026-03-31 20:46:00,2026-03-31 21:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.35,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-16 06:19:00,2026-04-17 22:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,166.82 +2026-04-04 19:29:00,2026-04-04 21:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,8.0,0,151.07 +2026-03-10 20:20:00,2026-03-13 05:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,119.1 +2026-03-05 00:07:48,2026-03-05 00:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,51.2,0.06,Fanduel,POINTS_TOTAL,54.7,0,107.8 +2026-03-30 13:46:00,2026-03-31 12:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,29.9,0,104.9 +2026-03-23 13:41:38,2026-03-23 15:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.1,0.0,0.298,Fanduel,POINTS_SPREAD,0.9,0,135.04 +2026-03-18 23:56:21,2026-03-18 23:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.602,BetMGM,MONEYLINE,0.0,NA,132.7 +2026-03-18 08:49:37,2026-03-18 09:00:00,NBA,Golden State Warriors,Dallas Mavericks,2.0,0.0,0.059,BetMGM,POINTS_SPREAD,0.1,0,118.02 +2026-04-04 11:13:00,2026-04-07 05:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.4,0,130.31 +2026-02-24 02:20:49,2026-02-24 03:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.249,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-31 14:14:30,2026-03-31 13:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.575,BetMGM,MONEYLINE,0.0,NA,111.82 +2026-03-15 20:12:00,2026-03-16 17:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.2,1,133.65 +2026-04-18 21:18:00,2026-04-19 09:00:00,NFL,Kansas City Chiefs,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,36.2,0,119.51 +2026-03-24 19:04:00,2026-03-26 05:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,5.9,0,123.48 +2026-04-20 20:46:00,2026-04-21 11:00:00,NBA,Phoenix Suns,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,233.9,1,124.81 +2026-04-18 20:35:22,2026-04-18 21:00:00,NBA,Los Angeles Lakers,Miami Heat,0.0,0.0,0.641,Fanduel,MONEYLINE,0.0,NA,143.15 +2026-03-09 16:06:00,2026-03-09 17:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,40.2,0,104.34 +2026-03-18 09:41:00,2026-03-18 14:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,1,103.74 +2026-03-05 19:45:25,2026-03-05 19:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,35.4,0.669,Fanduel,POINTS_TOTAL,31.6,1,100.0 +2026-03-11 12:10:00,2026-03-12 21:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,153.81 +2026-03-31 12:01:00,2026-04-01 19:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.1,0,105.9 +2026-02-27 07:32:32,2026-02-27 06:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,3.5,0.803,Fanduel,POINTS_TOTAL,11.4,1,142.18 +2026-04-17 19:00:00,2026-04-19 05:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.8,0,114.35 +2026-03-31 04:53:43,2026-03-31 04:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,41.9,0.504,BetMGM,POINTS_TOTAL,40.0,1,109.73 +2026-04-13 00:04:00,2026-04-13 14:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-08 19:10:06,2026-04-08 19:00:00,NHL,Florida Panthers,New York Rangers,-0.4,0.0,0.295,Fanduel,POINTS_SPREAD,0.5,1,112.57 +2026-02-23 08:42:00,2026-02-24 07:00:00,NFL,Detroit Lions,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,32.4,1,105.79 +2026-03-21 02:46:00,2026-03-21 05:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,35.5,1,101.18 +2026-03-23 15:41:00,2026-03-25 10:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,158.49 +2026-03-09 04:16:00,2026-03-10 23:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,41.4,0,112.51 +2026-03-16 04:19:10,2026-03-16 04:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,17.5,0.601,BetMGM,POINTS_TOTAL,17.4,0,123.18 +2026-02-28 02:47:00,2026-02-28 16:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,233.3,1,107.57 +2026-03-26 06:56:00,2026-03-26 22:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,225.7,1,100.0 +2026-02-18 15:57:00,2026-02-21 11:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,1,100.0 +2026-03-16 01:55:32,2026-03-16 00:00:00,NHL,New York Rangers,Toronto Maple Leafs,0.0,0.0,0.653,Fanduel,MONEYLINE,0.0,NA,162.03 +2026-03-25 21:12:00,2026-03-27 14:00:00,NHL,Toronto Maple Leafs,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-08 04:43:06,2026-04-08 06:00:00,NFL,Buffalo Bills,Baltimore Ravens,3.3,0.0,0.245,Fanduel,POINTS_SPREAD,0.9,1,109.6 +2026-03-27 06:47:00,2026-03-29 23:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,117.02 +2026-02-22 22:23:00,2026-02-23 10:00:00,NBA,Phoenix Suns,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.9,1,100.45 +2026-04-13 21:49:00,2026-04-15 10:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,216.6,1,100.27 +2026-04-17 06:30:00,2026-04-18 12:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,141.75 +2026-04-01 12:31:00,2026-04-03 21:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,100.0 +2026-04-07 03:21:00,2026-04-09 17:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,122.69 +2026-02-24 16:18:19,2026-02-24 16:00:00,NBA,Los Angeles Lakers,Phoenix Suns,-0.3,0.0,0.724,Fanduel,POINTS_SPREAD,3.5,0,100.0 +2026-04-01 01:24:48,2026-04-01 00:00:00,NHL,Colorado Avalanche,Florida Panthers,-1.6,0.0,0.76,Fanduel,POINTS_SPREAD,2.7,0,108.0 +2026-03-04 08:13:19,2026-03-04 08:00:00,NHL,New York Rangers,Carolina Hurricanes,0.0,9.3,0.274,BetMGM,POINTS_TOTAL,5.9,0,117.85 +2026-04-02 17:08:00,2026-04-04 01:00:00,NFL,Kansas City Chiefs,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,49.2,0,100.0 +2026-03-27 06:44:40,2026-03-27 05:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,41.2,0.776,Fanduel,POINTS_TOTAL,41.3,0,101.71 +2026-03-17 04:20:42,2026-03-17 04:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,54.5,0.215,Fanduel,POINTS_TOTAL,62.3,0,100.0 +2026-03-29 07:24:00,2026-03-30 16:00:00,NFL,Detroit Lions,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.6,0,123.56 +2026-04-18 12:25:00,2026-04-19 11:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,1,107.39 +2026-03-16 06:08:00,2026-03-17 07:00:00,NFL,Detroit Lions,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,44.9,0,100.0 +2026-03-10 02:44:00,2026-03-10 17:00:00,NHL,Colorado Avalanche,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.9,1,100.8 +2026-02-20 02:04:00,2026-02-21 00:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,0,117.67 +2026-03-28 23:04:00,2026-03-30 21:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,1,100.0 +2026-03-30 03:44:34,2026-03-30 02:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.681,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-01 12:46:00,2026-04-01 22:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,41.9,1,111.02 +2026-03-10 01:46:00,2026-03-12 16:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.0,0,112.95 +2026-02-18 22:29:00,2026-02-20 12:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.4,0,108.2 +2026-02-23 10:13:25,2026-02-23 11:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,215.3,0.269,Fanduel,POINTS_TOTAL,208.0,0,128.13 +2026-04-06 23:39:00,2026-04-07 12:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,116.28 +2026-03-11 21:19:10,2026-03-11 23:00:00,NFL,Dallas Cowboys,Miami Dolphins,0.0,50.8,0.201,Fanduel,POINTS_TOTAL,47.0,0,130.85 +2026-03-10 06:13:22,2026-03-10 05:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,-0.3,0.0,0.441,Fanduel,POINTS_SPREAD,1.0,0,110.06 +2026-02-21 11:08:00,2026-02-24 10:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,1,125.17 +2026-03-28 14:58:13,2026-03-28 15:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,39.2,0.679,Fanduel,POINTS_TOTAL,39.5,0,115.22 +2026-04-04 03:06:00,2026-04-04 12:00:00,NHL,Colorado Avalanche,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.7,0,100.0 +2026-03-30 04:31:55,2026-03-30 05:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.4,0.0,0.544,Fanduel,POINTS_SPREAD,2.2,1,123.69 +2026-03-16 05:54:43,2026-03-16 06:00:00,NFL,San Francisco 49ers,Buffalo Bills,1.1,0.0,0.604,BetMGM,POINTS_SPREAD,1.6,1,113.32 +2026-03-02 22:35:00,2026-03-03 10:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,214.1,1,111.13 +2026-02-26 18:58:00,2026-02-27 21:00:00,NFL,Detroit Lions,Miami Dolphins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,125.16 +2026-04-04 05:47:00,2026-04-04 22:00:00,NBA,Milwaukee Bucks,Boston Celtics,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,138.89 +2026-03-02 21:42:00,2026-03-03 14:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,0,111.78 +2026-04-18 02:50:00,2026-04-19 09:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,40.8,1,117.28 +2026-03-12 21:05:00,2026-03-14 13:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,230.0,0,114.39 +2026-02-25 23:57:00,2026-02-26 14:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,1,102.99 +2026-03-07 08:45:00,2026-03-07 17:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,108.25 +2026-03-24 19:38:00,2026-03-25 13:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.2,0,109.11 +2026-04-18 23:18:00,2026-04-21 12:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,230.8,1,100.0 +2026-04-13 08:36:00,2026-04-14 09:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.2,0,127.7 +2026-04-03 16:11:00,2026-04-04 08:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,216.0,0,129.03 +2026-03-16 19:25:00,2026-03-17 23:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,39.6,0,100.0 +2026-04-05 12:50:33,2026-04-05 12:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.742,BetMGM,MONEYLINE,0.0,NA,125.44 +2026-04-17 09:08:00,2026-04-19 00:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,178.91 +2026-04-03 03:30:54,2026-04-03 04:00:00,NFL,Baltimore Ravens,Detroit Lions,-0.3,0.0,0.405,Fanduel,POINTS_SPREAD,3.2,1,132.48 +2026-02-22 05:23:00,2026-02-24 17:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,0,159.85 +2026-02-22 18:09:50,2026-02-22 18:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.188,Fanduel,MONEYLINE,0.0,NA,136.21 +2026-02-18 20:46:00,2026-02-21 10:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.9,1,118.13 +2026-03-28 02:03:21,2026-03-28 03:00:00,NHL,Toronto Maple Leafs,Colorado Avalanche,0.0,0.0,0.052,Fanduel,MONEYLINE,0.0,NA,134.38 +2026-04-04 06:41:18,2026-04-04 05:00:00,NBA,Phoenix Suns,Los Angeles Lakers,-6.5,0.0,0.885,BetMGM,POINTS_SPREAD,2.2,1,151.48 +2026-03-16 22:38:00,2026-03-16 23:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,4.0,0.0,0.6,BetMGM,POINTS_SPREAD,0.9,0,127.96 +2026-03-18 15:05:00,2026-03-20 09:00:00,NHL,Vegas Golden Knights,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,0,107.09 +2026-03-11 04:51:00,2026-03-12 04:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-22 17:55:00,2026-02-22 22:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.3,1,100.0 +2026-04-05 00:46:00,2026-04-07 09:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.1,1,100.0 +2026-03-17 20:29:00,2026-03-19 23:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,56.5,1,127.87 +2026-03-31 01:23:00,2026-04-02 07:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.0,0,100.0 +2026-02-21 00:04:50,2026-02-20 23:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,225.9,0.838,Fanduel,POINTS_TOTAL,222.0,1,100.0 +2026-02-20 16:17:00,2026-02-23 03:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.2,1,105.97 +2026-03-29 21:13:58,2026-03-29 20:00:00,NHL,Vegas Golden Knights,Florida Panthers,0.0,0.0,0.811,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-04-13 07:53:00,2026-04-15 00:00:00,NHL,Toronto Maple Leafs,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.25 +2026-04-06 11:57:00,2026-04-09 04:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,58.7,0,109.84 +2026-03-12 16:35:00,2026-03-13 15:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,13.9,0,107.39 +2026-03-13 05:56:00,2026-03-15 11:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.0,1,136.58 +2026-04-18 00:44:42,2026-04-18 01:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.165,BetMGM,MONEYLINE,0.0,NA,160.32 +2026-02-24 16:55:00,2026-02-26 20:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,41.0,0,127.12 +2026-04-05 23:56:00,2026-04-08 23:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,148.77 +2026-02-27 23:14:52,2026-02-27 22:00:00,NHL,Edmonton Oilers,New York Rangers,4.6,0.0,0.716,BetMGM,POINTS_SPREAD,3.6,1,100.0 +2026-03-03 14:57:00,2026-03-03 21:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,7.7,1,104.79 +2026-04-09 21:08:00,2026-04-11 07:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,125.49 +2026-03-13 20:47:49,2026-03-13 21:00:00,NBA,Boston Celtics,Denver Nuggets,3.4,0.0,0.499,BetMGM,POINTS_SPREAD,0.4,1,110.26 +2026-04-06 09:50:00,2026-04-07 02:00:00,NBA,Milwaukee Bucks,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,230.5,0,106.62 +2026-03-11 19:40:00,2026-03-13 02:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.3,1,100.0 +2026-03-21 23:04:00,2026-03-23 20:00:00,NFL,Dallas Cowboys,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,1,136.64 +2026-03-15 03:54:00,2026-03-17 04:00:00,NBA,Miami Heat,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,114.89 +2026-03-28 10:07:00,2026-03-30 21:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,145.63 +2026-03-17 16:04:56,2026-03-17 17:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,215.7,0.233,Fanduel,POINTS_TOTAL,217.0,1,116.68 +2026-04-13 20:28:00,2026-04-14 13:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.8,1,100.24 +2026-04-08 21:20:00,2026-04-11 11:00:00,NBA,Miami Heat,Denver Nuggets,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-01 00:12:00,2026-04-03 13:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,136.49 +2026-03-28 23:26:22,2026-03-28 22:00:00,NFL,Dallas Cowboys,Buffalo Bills,1.5,0.0,0.491,Fanduel,POINTS_SPREAD,0.8,0,113.89 +2026-03-18 15:12:00,2026-03-20 15:00:00,NFL,San Francisco 49ers,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.0,0,100.94 +2026-03-07 20:37:01,2026-03-07 20:00:00,NFL,Miami Dolphins,Buffalo Bills,-0.2,0.0,0.539,BetMGM,POINTS_SPREAD,1.9,1,100.0 +2026-04-17 12:04:36,2026-04-17 11:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,45.1,0.77,Fanduel,POINTS_TOTAL,38.3,0,121.31 +2026-02-20 20:13:00,2026-02-21 13:00:00,NBA,Golden State Warriors,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,101.61 +2026-03-02 21:12:00,2026-03-03 20:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,232.9,1,100.0 +2026-03-15 16:19:00,2026-03-15 20:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.8,0,113.95 +2026-03-23 18:45:24,2026-03-23 19:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.63,BetMGM,MONEYLINE,0.0,NA,148.28 +2026-03-26 11:32:00,2026-03-29 01:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.6,0,100.0 +2026-03-17 00:21:15,2026-03-17 00:00:00,NFL,Detroit Lions,Miami Dolphins,3.7,0.0,0.557,BetMGM,POINTS_SPREAD,1.6,1,100.0 +2026-04-05 06:34:00,2026-04-05 08:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.1,1,100.0 +2026-04-15 05:59:00,2026-04-16 01:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.7,1,100.0 +2026-03-05 23:51:00,2026-03-07 00:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,116.25 +2026-02-23 10:47:00,2026-02-24 17:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.6,0,100.38 +2026-03-06 22:21:00,2026-03-09 22:00:00,NHL,Boston Bruins,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.6,0,100.0 +2026-03-03 01:53:00,2026-03-03 09:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,118.49 +2026-04-17 07:21:00,2026-04-19 13:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,112.91 +2026-03-17 14:43:00,2026-03-20 00:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,226.2,1,103.85 +2026-03-22 05:39:19,2026-03-22 04:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.624,Fanduel,MONEYLINE,0.0,NA,127.46 +2026-04-19 13:55:39,2026-04-19 16:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.037,Fanduel,MONEYLINE,0.0,NA,111.75 +2026-03-15 14:00:00,2026-03-15 22:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,116.02 +2026-02-23 23:12:00,2026-02-25 03:00:00,NBA,Dallas Mavericks,Phoenix Suns,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.9,0,123.34 +2026-03-22 00:36:00,2026-03-23 07:00:00,NFL,San Francisco 49ers,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.0,1,132.18 +2026-04-08 08:12:00,2026-04-09 05:00:00,NFL,Kansas City Chiefs,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,46.9,0,100.0 +2026-03-15 08:19:00,2026-03-18 07:00:00,NBA,Denver Nuggets,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,102.05 +2026-03-10 11:31:00,2026-03-12 01:00:00,NHL,Carolina Hurricanes,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,1,118.95 +2026-03-16 17:45:00,2026-03-17 06:00:00,NHL,Boston Bruins,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,114.21 +2026-02-27 23:58:00,2026-03-01 21:00:00,NBA,Golden State Warriors,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,112.61 +2026-04-13 09:18:43,2026-04-13 11:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,228.4,0.054,Fanduel,POINTS_TOTAL,225.1,0,115.82 +2026-03-28 03:00:00,2026-03-28 05:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-02-21 11:08:00,2026-02-21 12:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.7,0,100.0 +2026-04-01 23:37:00,2026-04-03 03:00:00,NBA,Golden State Warriors,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-28 12:32:00,2026-03-28 14:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,101.35 +2026-04-16 17:58:00,2026-04-19 15:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,110.97 +2026-03-18 06:09:00,2026-03-21 03:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,41.5,1,102.94 +2026-03-10 01:19:58,2026-03-10 01:00:00,NBA,Golden State Warriors,Milwaukee Bucks,0.0,210.7,0.261,Fanduel,POINTS_TOTAL,210.6,1,119.35 +2026-03-24 08:41:00,2026-03-24 15:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,183.7 +2026-03-25 07:27:13,2026-03-25 08:00:00,NHL,Colorado Avalanche,Toronto Maple Leafs,0.0,3.5,0.579,BetMGM,POINTS_TOTAL,5.3,0,100.0 +2026-02-23 20:00:00,2026-02-25 19:00:00,NBA,Los Angeles Lakers,Dallas Mavericks,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,120.35 +2026-04-05 19:18:40,2026-04-05 19:00:00,NBA,Boston Celtics,Phoenix Suns,3.2,0.0,0.276,BetMGM,POINTS_SPREAD,5.3,0,100.0 +2026-04-11 09:43:00,2026-04-12 09:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,16.5,0,101.13 +2026-04-20 16:12:20,2026-04-20 14:00:00,NHL,Florida Panthers,Toronto Maple Leafs,0.0,0.0,0.913,Fanduel,MONEYLINE,0.0,NA,142.91 +2026-03-05 04:14:00,2026-03-07 09:00:00,NHL,Boston Bruins,Toronto Maple Leafs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,0,100.0 +2026-04-11 20:04:00,2026-04-12 01:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,4.0,0,100.0 +2026-03-01 11:48:00,2026-03-02 11:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,3.5,0,131.13 +2026-04-13 02:26:00,2026-04-14 19:00:00,NBA,Milwaukee Bucks,Phoenix Suns,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,135.12 +2026-03-31 00:50:00,2026-04-02 00:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,142.04 +2026-03-07 08:42:20,2026-03-07 09:00:00,NFL,Buffalo Bills,Kansas City Chiefs,-2.2,0.0,0.463,BetMGM,POINTS_SPREAD,3.4,0,130.17 +2026-03-17 14:17:00,2026-03-18 21:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,231.5,0,100.0 +2026-04-14 04:09:00,2026-04-15 12:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-02 04:49:00,2026-04-03 17:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,31.4,0,105.91 +2026-03-16 12:44:00,2026-03-17 13:00:00,NFL,Kansas City Chiefs,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,55.9,0,104.25 +2026-03-17 21:34:44,2026-03-17 23:00:00,NFL,Philadelphia Eagles,Baltimore Ravens,0.0,0.0,0.243,BetMGM,MONEYLINE,0.0,NA,145.17 +2026-03-29 22:21:00,2026-03-31 17:00:00,NFL,Miami Dolphins,Dallas Cowboys,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,39.2,1,100.0 +2026-03-31 18:15:00,2026-04-01 08:00:00,NBA,Milwaukee Bucks,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,133.29 +2026-03-14 12:01:00,2026-03-16 19:00:00,NHL,Boston Bruins,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.3,0,130.62 +2026-04-03 00:53:00,2026-04-04 12:00:00,NFL,Buffalo Bills,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,29.9,1,118.09 +2026-03-20 02:30:33,2026-03-20 03:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.292,Fanduel,MONEYLINE,0.0,NA,102.75 +2026-02-25 07:37:24,2026-02-25 09:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.18,BetMGM,MONEYLINE,0.0,NA,103.86 +2026-03-22 21:28:00,2026-03-24 08:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,134.33 +2026-04-18 06:58:00,2026-04-18 11:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.3,0,130.44 +2026-03-04 22:28:00,2026-03-06 15:00:00,NBA,Denver Nuggets,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.7,1,125.42 +2026-03-24 01:08:00,2026-03-26 17:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,8.4,1,126.5 +2026-04-09 11:34:00,2026-04-10 19:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.9,1,135.22 +2026-03-13 03:29:00,2026-03-14 20:00:00,NFL,Philadelphia Eagles,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,124.65 +2026-02-21 09:58:00,2026-02-21 18:00:00,NFL,Dallas Cowboys,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.3,0,100.0 +2026-04-05 11:43:00,2026-04-05 19:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.5,1,107.5 +2026-04-12 20:31:00,2026-04-15 04:00:00,NBA,Dallas Mavericks,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,238.9,1,115.26 +2026-02-25 10:49:00,2026-02-27 12:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,110.01 +2026-03-24 22:35:32,2026-03-24 22:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,8.6,0.903,Fanduel,POINTS_TOTAL,7.3,1,100.0 +2026-04-12 11:46:00,2026-04-14 20:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,44.6,0,100.0 +2026-03-18 05:58:00,2026-03-21 05:00:00,NHL,Florida Panthers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,1,117.38 +2026-03-04 01:21:00,2026-03-05 08:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.9,1,117.92 +2026-03-10 19:17:00,2026-03-13 00:00:00,NHL,New York Rangers,Boston Bruins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.1,0,106.67 +2026-03-07 22:54:00,2026-03-08 23:00:00,NBA,Denver Nuggets,Miami Heat,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,170.05 +2026-02-24 07:39:00,2026-02-26 18:00:00,NFL,Baltimore Ravens,San Francisco 49ers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.0,0,126.82 +2026-03-15 18:23:00,2026-03-18 05:00:00,NFL,Dallas Cowboys,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,113.25 +2026-02-19 18:04:00,2026-02-22 06:00:00,NHL,Edmonton Oilers,Boston Bruins,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,8.9,0,102.12 +2026-03-04 07:40:00,2026-03-06 03:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,177.11 +2026-04-19 00:15:34,2026-04-19 00:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,227.0,0.281,BetMGM,POINTS_TOTAL,229.4,0,102.6 +2026-03-10 07:42:13,2026-03-10 07:00:00,NFL,Dallas Cowboys,Buffalo Bills,0.0,46.0,0.429,BetMGM,POINTS_TOTAL,41.9,1,105.56 +2026-03-21 08:23:28,2026-03-21 08:00:00,NBA,Los Angeles Lakers,Boston Celtics,0.0,247.5,0.436,BetMGM,POINTS_TOTAL,244.5,0,114.48 +2026-04-10 18:18:00,2026-04-12 19:00:00,NHL,Edmonton Oilers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.8,0,121.51 +2026-04-17 01:35:00,2026-04-18 18:00:00,NHL,Edmonton Oilers,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,0,120.57 +2026-03-12 06:23:00,2026-03-12 14:00:00,NBA,Phoenix Suns,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.4,0,128.38 +2026-02-24 18:24:31,2026-02-24 19:00:00,NFL,Baltimore Ravens,Dallas Cowboys,0.0,37.1,0.514,Fanduel,POINTS_TOTAL,33.6,1,110.77 +2026-04-04 22:47:20,2026-04-04 21:00:00,NHL,Boston Bruins,Toronto Maple Leafs,1.2,0.0,0.863,Fanduel,POINTS_SPREAD,0.8,0,100.93 +2026-02-24 16:41:00,2026-02-27 15:00:00,NFL,San Francisco 49ers,Detroit Lions,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,141.82 +2026-04-10 13:14:00,2026-04-11 10:00:00,NFL,Kansas City Chiefs,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.5,0,130.78 +2026-04-19 07:37:54,2026-04-19 07:00:00,NBA,Phoenix Suns,Golden State Warriors,0.0,228.7,0.605,BetMGM,POINTS_TOTAL,227.8,0,116.35 +2026-02-27 13:47:00,2026-03-02 00:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,1,132.58 +2026-03-01 00:46:54,2026-02-28 23:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.805,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-01 02:28:00,2026-03-01 05:00:00,NBA,Dallas Mavericks,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,246.5,1,100.0 +2026-02-24 23:32:00,2026-02-25 21:00:00,NBA,Dallas Mavericks,Golden State Warriors,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,122.0 +2026-03-04 01:45:00,2026-03-04 13:00:00,NBA,Miami Heat,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,219.8,0,115.34 +2026-03-31 08:06:19,2026-03-31 08:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.124,Fanduel,MONEYLINE,0.0,NA,119.48 +2026-02-24 16:13:00,2026-02-27 07:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,40.6,0,121.13 +2026-04-04 09:39:00,2026-04-05 16:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.8,0,100.0 +2026-03-23 00:18:40,2026-03-23 00:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,51.1,0.126,Fanduel,POINTS_TOTAL,57.2,1,114.99 +2026-03-17 06:03:22,2026-03-17 08:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,225.2,0.091,Fanduel,POINTS_TOTAL,227.4,1,128.11 +2026-02-23 06:24:44,2026-02-23 06:00:00,NBA,Denver Nuggets,Miami Heat,0.0,221.3,0.293,Fanduel,POINTS_TOTAL,218.4,0,120.31 +2026-03-14 01:51:00,2026-03-14 15:00:00,NFL,Detroit Lions,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-21 00:51:00,2026-03-21 19:00:00,NBA,Milwaukee Bucks,Miami Heat,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,128.67 +2026-04-06 14:04:00,2026-04-07 07:00:00,NHL,Vegas Golden Knights,Carolina Hurricanes,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.6,0,118.13 +2026-04-15 06:22:00,2026-04-16 04:00:00,NHL,Carolina Hurricanes,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.8,0,100.0 +2026-02-23 03:24:00,2026-02-24 22:00:00,NHL,Carolina Hurricanes,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.4,0,100.0 +2026-04-16 16:33:31,2026-04-16 15:00:00,NFL,Miami Dolphins,Philadelphia Eagles,0.0,48.8,0.864,BetMGM,POINTS_TOTAL,55.0,0,100.0 +2026-03-09 04:23:43,2026-03-09 04:00:00,NBA,Golden State Warriors,Dallas Mavericks,0.0,226.3,0.254,Fanduel,POINTS_TOTAL,227.6,0,120.67 +2026-03-13 23:59:00,2026-03-16 10:00:00,NFL,Miami Dolphins,Kansas City Chiefs,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-17 02:21:00,2026-04-18 10:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,3.3,0,129.9 +2026-04-12 15:35:55,2026-04-12 16:00:00,NHL,Toronto Maple Leafs,Florida Panthers,0.0,0.0,0.094,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-15 14:20:52,2026-03-15 14:00:00,NHL,Florida Panthers,Colorado Avalanche,-4.0,0.0,0.316,BetMGM,POINTS_SPREAD,1.5,0,100.0 +2026-03-29 15:02:39,2026-03-29 15:00:00,NFL,Miami Dolphins,Detroit Lions,0.0,21.1,0.337,Fanduel,POINTS_TOTAL,17.0,0,114.68 +2026-04-05 05:58:32,2026-04-05 06:00:00,NHL,Colorado Avalanche,Boston Bruins,3.5,0.0,0.203,Fanduel,POINTS_SPREAD,0.8,0,110.1 +2026-03-01 15:42:31,2026-03-01 15:00:00,NBA,Denver Nuggets,Dallas Mavericks,2.4,0.0,0.564,Fanduel,POINTS_SPREAD,0.7,1,100.0 +2026-04-01 01:47:00,2026-04-02 06:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-24 10:05:00,2026-03-26 23:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-03-19 02:47:00,2026-03-20 13:00:00,NHL,Colorado Avalanche,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,116.89 +2026-04-01 18:50:26,2026-04-01 19:00:00,NFL,Buffalo Bills,Kansas City Chiefs,0.0,44.0,0.258,Fanduel,POINTS_TOTAL,46.4,1,121.69 +2026-02-21 22:44:00,2026-02-24 11:00:00,NBA,Dallas Mavericks,Miami Heat,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.5,0,100.0 +2026-03-01 22:00:00,2026-03-03 09:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,2.8,1,125.1 +2026-03-16 15:18:00,2026-03-17 13:00:00,NFL,Baltimore Ravens,Buffalo Bills,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,30.6,1,100.28 +2026-03-19 08:46:00,2026-03-19 15:00:00,NFL,Kansas City Chiefs,Detroit Lions,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.7,0,106.33 +2026-04-19 06:36:00,2026-04-19 18:00:00,NHL,New York Rangers,Vegas Golden Knights,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,159.44 +2026-04-20 05:23:00,2026-04-21 00:00:00,NBA,Miami Heat,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,4.5,1,112.23 +2026-03-08 00:26:00,2026-03-09 11:00:00,NBA,Phoenix Suns,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.6,1,116.27 +2026-03-02 18:19:00,2026-03-03 17:00:00,NFL,Buffalo Bills,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,148.96 +2026-03-21 14:17:00,2026-03-24 02:00:00,NHL,Boston Bruins,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.1,0,133.03 +2026-03-09 01:39:00,2026-03-09 17:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,231.5,0,110.88 +2026-02-28 09:38:26,2026-02-28 10:00:00,NFL,Buffalo Bills,Detroit Lions,0.0,0.0,0.458,Fanduel,MONEYLINE,0.0,NA,107.51 +2026-04-09 09:15:00,2026-04-11 14:00:00,NHL,Vegas Golden Knights,Edmonton Oilers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,13.1,1,122.16 +2026-03-31 10:37:27,2026-03-31 09:00:00,NBA,Boston Celtics,Denver Nuggets,0.0,0.0,0.747,Fanduel,MONEYLINE,0.0,NA,136.14 +2026-03-17 13:47:00,2026-03-18 11:00:00,NFL,Detroit Lions,San Francisco 49ers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-09 09:00:25,2026-03-09 07:00:00,NHL,Colorado Avalanche,Boston Bruins,7.2,0.0,0.869,BetMGM,POINTS_SPREAD,1.3,1,100.0 +2026-04-04 11:48:28,2026-04-04 12:00:00,NFL,Baltimore Ravens,Miami Dolphins,8.4,0.0,0.036,Fanduel,POINTS_SPREAD,0.0,0,131.74 +2026-02-27 05:17:00,2026-03-01 07:00:00,NBA,Boston Celtics,Golden State Warriors,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,5.7,1,114.98 +2026-03-01 05:35:48,2026-03-01 06:00:00,NFL,Baltimore Ravens,Miami Dolphins,0.0,43.0,0.06,Fanduel,POINTS_TOTAL,47.8,0,100.0 +2026-03-15 10:56:01,2026-03-15 10:00:00,NFL,Baltimore Ravens,Kansas City Chiefs,0.0,0.0,0.889,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-09 17:14:08,2026-04-09 19:00:00,NBA,Los Angeles Lakers,Milwaukee Bucks,-0.9,0.0,0.073,BetMGM,POINTS_SPREAD,1.0,0,100.0 +2026-04-16 01:14:00,2026-04-17 02:00:00,NFL,Philadelphia Eagles,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,48.1,0,100.0 +2026-04-07 08:03:00,2026-04-09 07:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,35.1,0,110.99 +2026-03-18 06:17:00,2026-03-18 19:00:00,NFL,Philadelphia Eagles,Buffalo Bills,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,48.0,1,111.94 +2026-04-07 20:50:00,2026-04-08 11:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.8,1,107.43 +2026-03-06 09:18:00,2026-03-09 06:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.6,0,103.97 +2026-03-28 13:31:00,2026-03-29 08:00:00,NBA,Boston Celtics,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,3.4,0,100.0 +2026-03-23 15:44:00,2026-03-24 05:00:00,NFL,San Francisco 49ers,Kansas City Chiefs,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,146.41 +2026-03-23 18:40:00,2026-03-26 00:00:00,NBA,Miami Heat,Los Angeles Lakers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,249.5,0,121.42 +2026-04-02 11:51:00,2026-04-03 14:00:00,NBA,Los Angeles Lakers,Phoenix Suns,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,0,118.39 +2026-03-11 19:12:00,2026-03-12 22:00:00,NHL,Florida Panthers,Edmonton Oilers,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,100.0 +2026-03-24 06:10:00,2026-03-25 15:00:00,NFL,Buffalo Bills,Philadelphia Eagles,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,102.29 +2026-04-12 12:11:00,2026-04-13 12:00:00,NFL,Philadelphia Eagles,Miami Dolphins,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,47.5,1,100.0 +2026-03-04 21:43:00,2026-03-07 21:00:00,NBA,Phoenix Suns,Dallas Mavericks,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,134.75 +2026-03-06 08:21:00,2026-03-09 04:00:00,NHL,Carolina Hurricanes,Vegas Golden Knights,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.3,1,117.42 +2026-03-16 15:13:00,2026-03-19 01:00:00,NHL,Boston Bruins,Florida Panthers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,128.25 +2026-02-25 17:10:00,2026-02-25 15:00:00,NBA,Miami Heat,Phoenix Suns,0.0,0.0,0.95,BetMGM,MONEYLINE,0.0,NA,113.61 +2026-03-11 04:41:19,2026-03-11 04:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.374,BetMGM,MONEYLINE,0.0,NA,100.0 +2026-04-16 20:51:00,2026-04-18 21:00:00,NFL,San Francisco 49ers,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,1.9,1,133.35 +2026-04-12 09:42:00,2026-04-14 11:00:00,NHL,New York Rangers,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,7.4,1,108.49 +2026-04-19 17:53:01,2026-04-19 19:00:00,NHL,Florida Panthers,Vegas Golden Knights,0.0,20.3,0.389,BetMGM,POINTS_TOTAL,24.8,1,107.25 +2026-03-18 23:39:32,2026-03-18 22:00:00,NHL,Edmonton Oilers,Florida Panthers,0.0,3.5,0.803,Fanduel,POINTS_TOTAL,4.4,0,108.71 +2026-03-11 06:04:00,2026-03-13 03:00:00,NHL,Colorado Avalanche,Edmonton Oilers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,8.9,0,114.75 +2026-03-24 00:11:00,2026-03-25 15:00:00,NFL,Baltimore Ravens,Philadelphia Eagles,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,0.6,1,119.88 +2026-03-01 01:04:00,2026-03-01 11:00:00,NBA,Dallas Mavericks,Los Angeles Lakers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,220.5,0,114.88 +2026-04-09 03:27:00,2026-04-11 00:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,2.2,0,108.75 +2026-02-18 06:29:00,2026-02-21 06:00:00,NBA,Miami Heat,Milwaukee Bucks,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,208.3,1,110.5 +2026-03-24 00:48:04,2026-03-24 00:00:00,NBA,Denver Nuggets,Golden State Warriors,2.3,0.0,0.906,Fanduel,POINTS_SPREAD,1.1,0,107.47 +2026-04-19 10:13:00,2026-04-21 06:00:00,NHL,Toronto Maple Leafs,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,5.1,1,100.0 +2026-04-05 23:33:00,2026-04-07 16:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,220.4,1,117.78 +2026-03-26 03:14:00,2026-03-26 15:00:00,NHL,Colorado Avalanche,New York Rangers,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,22.8,1,128.66 +2026-02-22 07:58:00,2026-02-23 18:00:00,NBA,Denver Nuggets,Dallas Mavericks,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.8,1,100.0 +2026-03-24 15:37:25,2026-03-24 15:00:00,NBA,Dallas Mavericks,Golden State Warriors,4.9,0.0,0.469,BetMGM,POINTS_SPREAD,1.3,0,124.29 +2026-04-14 11:15:00,2026-04-17 05:00:00,NHL,New York Rangers,Edmonton Oilers,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,105.24 +2026-03-21 12:41:00,2026-03-23 04:00:00,NHL,Vegas Golden Knights,Boston Bruins,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,113.49 +2026-03-02 04:42:00,2026-03-05 01:00:00,NFL,Buffalo Bills,Dallas Cowboys,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,177.94 +2026-04-16 06:11:00,2026-04-17 02:00:00,NBA,Boston Celtics,Milwaukee Bucks,0.0,0.0,0.0,Fanduel,POINTS_SPREAD,0.3,1,109.92 +2026-03-08 14:35:00,2026-03-10 06:00:00,NHL,Boston Bruins,New York Rangers,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,4.8,0,110.71 +2026-04-10 03:19:52,2026-04-10 05:00:00,NFL,Dallas Cowboys,Detroit Lions,0.0,0.0,0.166,Fanduel,MONEYLINE,0.0,NA,151.83 +2026-03-20 03:46:00,2026-03-20 09:00:00,NFL,Miami Dolphins,Baltimore Ravens,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,32.5,0,134.89 +2026-03-26 02:35:00,2026-03-28 01:00:00,NHL,Toronto Maple Leafs,Boston Bruins,0.0,0.0,0.0,Fanduel,MONEYLINE,0.0,NA,119.0 +2026-04-13 01:25:00,2026-04-13 12:00:00,NHL,Vegas Golden Knights,Colorado Avalanche,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,0,100.0 +2026-02-20 20:09:00,2026-02-20 23:00:00,NFL,Miami Dolphins,San Francisco 49ers,0.0,0.0,0.0,BetMGM,POINTS_SPREAD,1.0,0,100.0 +2026-03-23 09:08:00,2026-03-24 19:00:00,NHL,Vegas Golden Knights,Toronto Maple Leafs,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,3.5,0,116.64 +2026-04-02 06:44:00,2026-04-02 16:00:00,NFL,Detroit Lions,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,167.74 +2026-04-06 03:19:13,2026-04-06 01:00:00,NFL,Miami Dolphins,Philadelphia Eagles,1.5,0.0,0.829,BetMGM,POINTS_SPREAD,3.4,0,106.08 +2026-02-23 07:06:00,2026-02-24 12:00:00,NFL,Miami Dolphins,Buffalo Bills,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,101.77 +2026-02-25 08:21:00,2026-02-26 05:00:00,NBA,Boston Celtics,Dallas Mavericks,0.0,0.0,0.0,Fanduel,POINTS_TOTAL,224.7,0,102.37 +2026-03-29 22:20:00,2026-03-29 23:00:00,NHL,Edmonton Oilers,Carolina Hurricanes,0.0,0.0,0.0,BetMGM,POINTS_TOTAL,10.8,1,108.95 +2026-03-12 18:07:57,2026-03-12 19:00:00,NBA,Golden State Warriors,Boston Celtics,1.1,0.0,0.072,Fanduel,POINTS_SPREAD,1.9,1,116.73 +2026-04-05 18:41:30,2026-04-05 17:00:00,NBA,Golden State Warriors,Boston Celtics,0.0,226.6,0.875,BetMGM,POINTS_TOTAL,226.9,0,125.06 +2026-03-15 05:13:00,2026-03-17 23:00:00,NFL,Kansas City Chiefs,Dallas Cowboys,0.0,0.0,0.0,BetMGM,MONEYLINE,0.0,NA,142.95 diff --git a/scrapers/betmgm/__init__.py b/scrapers/betmgm/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/scrapers/betmgm/__pycache__/__init__.cpython-313.pyc b/scrapers/betmgm/__pycache__/__init__.cpython-313.pyc new file mode 100644 index 0000000..efe8742 Binary files /dev/null and b/scrapers/betmgm/__pycache__/__init__.cpython-313.pyc differ diff --git a/scrapers/betmgm/__pycache__/handler.cpython-313.pyc b/scrapers/betmgm/__pycache__/handler.cpython-313.pyc new file mode 100644 index 0000000..c05e3d2 Binary files /dev/null and b/scrapers/betmgm/__pycache__/handler.cpython-313.pyc differ diff --git a/scrapers/betmgm/handler.py b/scrapers/betmgm/handler.py new file mode 100644 index 0000000..ade70e3 --- /dev/null +++ b/scrapers/betmgm/handler.py @@ -0,0 +1,304 @@ +""" +Lambda handler — scrapes BetMGM NBA odds via Playwright. + +Navigates the BetMGM AZ sports betting page, extracts all available NBA games +and their odds across moneyline, spread, and totals markets. + +BetMGM uses state-specific subdomains (az.betmgm.com) and an Angular SPA. +Game events are found via links matching /en/sports/events/{away}-at-{home}-{id}. +Odds are in sibling divs of the link, with text nodes in order: + Spread: line_a, price_a, line_b, price_b + Total: raw_total, "O total", price_over, "U total", price_under + Money: price_home, price_away +""" + +from __future__ import annotations + +import pdb +import logging +import re +from datetime import datetime, timezone + +from playwright.sync_api import sync_playwright, Page, TimeoutError as PwTimeout + +from shared.schema import OddsRow, american_to_stake, validate_row, rows_to_csv +from shared.s3_upload import upload_csv + +logger = logging.getLogger(__name__) +logging.basicConfig(level=logging.INFO) + +# AZ state-specific subdomain — sports.betmgm.com redirects to a state picker +BETMGM_NBA_URL = "https://www.az.betmgm.com/en/sports/basketball-7/betting/usa-9/nba-6004" +BOOKMAKER = "betmgm" +LEAGUE = "NBA" + + +def _parse_american_odds(text: str) -> int | None: + """Parse American odds string like '+150', '-110', '260' to int.""" + text = text.strip().replace("\u2212", "-") + m = re.match(r"^([+-]?\d+)$", text) + if m: + return int(m.group(1)) + return None + + +def _teams_from_href(href: str) -> tuple[str, str] | None: + """Extract (away_team, home_team) full names from event href. + + Example: /en/sports/events/milwaukee-bucks-at-chicago-bulls-19025815 + Returns: ("Milwaukee Bucks", "Chicago Bulls") + """ + m = re.search(r"/events/(.+)-at-(.+)-\d+$", href) + if not m: + return None + away = m.group(1).replace("-", " ").title() + home = m.group(2).replace("-", " ").title() + return away, home + + +def _scrape_nba_odds(page: Page) -> list[OddsRow]: + """Extract odds from BetMGM NBA page.""" + rows: list[OddsRow] = [] + now = datetime.now(timezone.utc).isoformat() + + page.goto(BETMGM_NBA_URL, wait_until="domcontentloaded", timeout=60_000) + page.wait_for_timeout(20000) + + # BetMGM wraps each game in a div.grid-event-wrapper containing: + # - link (team names, scores) + # - sibling divs with odds cells + event_links = page.query_selector_all("a[href*='/en/sports/events/']") + logger.info("Found %d event links on BetMGM", len(event_links)) + + for link in event_links: + try: + href = link.get_attribute("href") or "" + teams = _teams_from_href(href) + if not teams: + continue + team_a, team_b = teams # away, home + + # Get the parent .grid-event-wrapper + parent = link.evaluate_handle("el => el.parentElement") + if not parent: + continue + + # Extract all text nodes from non-link children (the odds grid) + all_texts = parent.evaluate("""el => { + const texts = []; + const walk = (node) => { + if (node.nodeType === 3) { + const t = node.textContent.trim(); + if (t) texts.push(t); + } + for (const child of node.childNodes) walk(child); + }; + for (const child of el.children) { + if (child.tagName !== 'A') walk(child); + } + return texts; + }""") + + if not all_texts: + continue + + # Parse the ordered text nodes into markets. + # Observed patterns: + # + # Full (spread + total + ML), 11 values: + # ['-5.5', '-125', '+5.5', '-102', '231.5', 'O 231.5', '-115', 'U 231.5', '-115', '-350', '+260'] + # spr_ln spr_p spr_ln spr_p (raw) tot_ln tot_p tot_ln tot_p ml_p ml_p + # + # Partial (spread + ML, no total), 6 values: + # ['-7.5', '-125', '+7.5', '-105', '-300', '+225'] + # + # Strategy: parse in 3 phases. Spread lines come first (small + # numbers paired with a price). Then totals (O/U prefixed). + # Everything numeric remaining after those two phases is ML. + + spread_entries = [] # (line_value, american_price) + total_entries = [] # ("over"/"under", total_line, american_price) + consumed = set() # indices already consumed + + # Phase 1: Find spread pairs — first consecutive (line, price) pairs + # where the line is a small number (|val| < 50) + i = 0 + while i < len(all_texts) and len(spread_entries) < 2: + t = all_texts[i].replace('"', '').strip() + m_line = re.match(r"^([+-]?[\d.]+)$", t) + if m_line: + val = float(m_line.group(1)) + if abs(val) < 50 and i + 1 < len(all_texts): + price = _parse_american_odds(all_texts[i + 1]) + if price is not None: + spread_entries.append((val, price)) + consumed.add(i) + consumed.add(i + 1) + i += 2 + continue + i += 1 + + # Phase 2: Find total pairs — "O xxx" / "U xxx" followed by price + for i in range(len(all_texts)): + if i in consumed: + continue + t = all_texts[i].replace('"', '').strip() + m_total = re.match(r"^([OU])\s*([\d.]+)$", t) + if m_total and len(total_entries) < 2: + side = "over" if m_total.group(1) == "O" else "under" + line = float(m_total.group(2)) + if i + 1 < len(all_texts) and (i + 1) not in consumed: + price = _parse_american_odds(all_texts[i + 1]) + if price is not None: + total_entries.append((side, line, price)) + consumed.add(i) + consumed.add(i + 1) + + # Also consume any raw total value that appears before O/U lines + # (e.g., "231.5" standalone) + for i in range(len(all_texts)): + if i in consumed: + continue + t = all_texts[i].replace('"', '').strip() + m = re.match(r"^[\d.]+$", t) + if m and float(t) > 100: + consumed.add(i) + + # Phase 3: Remaining numeric values are moneyline odds + ml_entries = [] + for i in range(len(all_texts)): + if i in consumed: + continue + t = all_texts[i].replace('"', '').strip() + odds = _parse_american_odds(t) + if odds is not None: + ml_entries.append(odds) + + # Build OddsRow entries + spread_val = abs(spread_entries[0][0]) if spread_entries else 0.0 + total_val = total_entries[0][1] if total_entries else 0.0 + + # Spread + if len(spread_entries) >= 2: + for idx, (line, price) in enumerate(spread_entries[:2]): + side = "away" if idx == 0 else "home" + row = OddsRow( + datetime=now, + game_start=now, + league=LEAGUE, + team_a=team_a, + team_b=team_b, + current_points_spread=spread_val, + current_points_total=total_val, + game_duration=0.0, + bookmaker=BOOKMAKER, + market_type="POINTS_SPREAD", + thresh=spread_val, + side=side, + price_current=american_to_stake(price), + ) + errors = validate_row(row) + if not errors: + rows.append(row) + + # Total + if len(total_entries) >= 2: + for side, line, price in total_entries[:2]: + row = OddsRow( + datetime=now, + game_start=now, + league=LEAGUE, + team_a=team_a, + team_b=team_b, + current_points_spread=spread_val, + current_points_total=total_val, + game_duration=0.0, + bookmaker=BOOKMAKER, + market_type="POINTS_TOTAL", + thresh=total_val, + side=side, + price_current=american_to_stake(price), + ) + errors = validate_row(row) + if not errors: + rows.append(row) + + # Moneyline + if len(ml_entries) >= 2: + for idx, price in enumerate(ml_entries[:2]): + side = "away" if idx == 0 else "home" + row = OddsRow( + datetime=now, + game_start=now, + league=LEAGUE, + team_a=team_a, + team_b=team_b, + current_points_spread=spread_val, + current_points_total=total_val, + game_duration=0.0, + bookmaker=BOOKMAKER, + market_type="MONEYLINE", + thresh=0.0, + side=side, + price_current=american_to_stake(price), + ) + errors = validate_row(row) + if not errors: + rows.append(row) + + n_markets = (min(len(spread_entries), 2) + min(len(total_entries), 2) + + min(len(ml_entries), 2)) + logger.info( + "Parsed %s @ %s: %d spread, %d total, %d ML", + team_a, team_b, + min(len(spread_entries), 2), + min(len(total_entries), 2), + min(len(ml_entries), 2), + ) + + except Exception as e: + logger.warning("Failed to parse event: %s", e) + continue + + return rows + + +def handler(event=None, context=None): + """Lambda entry point.""" + logger.info("Starting BetMGM NBA scraper") + + with sync_playwright() as pw: + browser = pw.chromium.launch(headless=False) + context = browser.new_context( + user_agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36", + geolocation={"latitude": 33.4484, "longitude": -112.0740}, + permissions=["geolocation"], + locale="en-US", + timezone_id="America/Phoenix", + ) + page = context.new_page() + + try: + rows = _scrape_nba_odds(page) + except PwTimeout: + logger.error("Timed out loading BetMGM") + rows = [] + finally: + browser.close() + + if not rows: + logger.warning("No odds scraped from BetMGM") + return {"statusCode": 200, "body": "No odds found"} + + csv_content = rows_to_csv(rows) + key = upload_csv(csv_content, BOOKMAKER, LEAGUE) + + return { + "statusCode": 200, + "body": f"Uploaded {len(rows)} rows to {key}", + } + + +if __name__ == '__main__': + + handler() diff --git a/scrapers/fanduel/__init__.py b/scrapers/fanduel/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/scrapers/fanduel/handler.py b/scrapers/fanduel/handler.py new file mode 100644 index 0000000..0ea78cf --- /dev/null +++ b/scrapers/fanduel/handler.py @@ -0,0 +1,265 @@ +""" +Lambda handler — scrapes FanDuel NBA odds via Playwright. + +Navigates the FanDuel sportsbook navigation page, extracts all available NBA +games and their odds across moneyline, spread, and totals markets. + +FanDuel's /navigation/nba page bypasses geo-verification (unlike /basketball/nba). +Game events are found via links matching /basketball/nba/{away}-@-{home}-{id}. +Each game row has 6 odds buttons in order: + away_spread, away_ml, over_total, home_spread, home_ml, under_total + +Spread buttons contain: "line\nprice" (e.g. "+2.5\n-102") +ML buttons contain: "price" (e.g. "+162") +Total buttons contain: "O/U line\nprice" (e.g. "O 230.5\n-125") +""" + +from __future__ import annotations + +import logging +import re +from datetime import datetime, timezone + +from playwright.sync_api import sync_playwright, Page, TimeoutError as PwTimeout + +from shared.schema import OddsRow, american_to_stake, validate_row, rows_to_csv +from shared.s3_upload import upload_csv + +logger = logging.getLogger(__name__) +logging.basicConfig(level=logging.INFO) + +# /navigation/nba works without IP-based geo-verification +FANDUEL_NBA_URL = "https://sportsbook.fanduel.com/navigation/nba" +BOOKMAKER = "fanduel" +LEAGUE = "NBA" + + +def _parse_american_odds(text: str) -> int | None: + """Parse American odds string like '+150' or '-110' to int.""" + text = text.strip().replace("\u2212", "-") + match = re.match(r"^([+-]?\d+)$", text) + if match: + return int(match.group(1)) + return None + + +def _teams_from_href(href: str) -> tuple[str, str] | None: + """Extract (away_team, home_team) from FanDuel event href. + + Example: /basketball/nba/milwaukee-bucks-@-chicago-bulls-35314293 + Returns: ("Milwaukee Bucks", "Chicago Bulls") + """ + m = re.search(r"/basketball/nba/(.+)-@-(.+)-\d+$", href) + if not m: + return None + away = m.group(1).replace("-", " ").title() + home = m.group(2).replace("-", " ").title() + return away, home + + +def _parse_spread_button(text: str) -> tuple[float, int] | None: + """Parse spread button text like '+2.5\\n-102' into (line, price).""" + lines = text.strip().split("\n") + if len(lines) < 2: + return None + line_match = re.match(r"^([+-]?[\d.]+)$", lines[0].strip().replace("\u2212", "-")) + price = _parse_american_odds(lines[1]) + if line_match and price is not None: + return float(line_match.group(1)), price + return None + + +def _parse_total_button(text: str) -> tuple[str, float, int] | None: + """Parse total button text like 'O 230.5\\n-125' into (side, line, price).""" + lines = text.strip().split("\n") + if len(lines) < 2: + return None + m = re.match(r"^([OU])\s*([\d.]+)$", lines[0].strip()) + price = _parse_american_odds(lines[1]) + if m and price is not None: + side = "over" if m.group(1) == "O" else "under" + return side, float(m.group(2)), price + return None + + +def _scrape_nba_odds(page: Page) -> list[OddsRow]: + """Extract odds from FanDuel NBA page.""" + rows: list[OddsRow] = [] + now = datetime.now(timezone.utc).isoformat() + + page.goto(FANDUEL_NBA_URL, wait_until="domcontentloaded", timeout=60_000) + page.wait_for_timeout(10000) + + # Find unique game event links + event_links = page.query_selector_all("a[href*='/basketball/nba/']") + seen_hrefs: set[str] = set() + unique_links = [] + for link in event_links: + href = link.get_attribute("href") or "" + if href not in seen_hrefs and "-@-" in href: + seen_hrefs.add(href) + unique_links.append(link) + + logger.info("Found %d unique game links on FanDuel", len(unique_links)) + + for link in unique_links: + try: + href = link.get_attribute("href") or "" + teams = _teams_from_href(href) + if not teams: + continue + team_a, team_b = teams # away, home + + # Walk up to the game row container that has odds buttons + row_el = link.evaluate_handle("""el => { + let node = el.parentElement; + while (node && !node.querySelector('[role="button"], button')) { + node = node.parentElement; + } + return node; + }""") + if not row_el: + continue + + # Get all button texts from the row + button_texts = row_el.evaluate("""el => { + const buttons = el.querySelectorAll('[role="button"], button'); + return Array.from(buttons).map(b => b.innerText.trim()); + }""") + + if not button_texts or len(button_texts) < 6: + logger.warning("Expected 6 buttons for %s @ %s, got %d", + team_a, team_b, len(button_texts) if button_texts else 0) + continue + + # Button order: away_spread, away_ml, over_total, + # home_spread, home_ml, under_total + away_spread = _parse_spread_button(button_texts[0]) + away_ml = _parse_american_odds(button_texts[1]) + over_total = _parse_total_button(button_texts[2]) + home_spread = _parse_spread_button(button_texts[3]) + home_ml = _parse_american_odds(button_texts[4]) + under_total = _parse_total_button(button_texts[5]) + + spread_val = abs(away_spread[0]) if away_spread else 0.0 + total_val = over_total[1] if over_total else 0.0 + + # Build spread rows + if away_spread and home_spread: + for side, (line, price) in [("away", away_spread), ("home", home_spread)]: + row = OddsRow( + datetime=now, + game_start=now, + league=LEAGUE, + team_a=team_a, + team_b=team_b, + current_points_spread=spread_val, + current_points_total=total_val, + game_duration=0.0, + bookmaker=BOOKMAKER, + market_type="POINTS_SPREAD", + thresh=spread_val, + side=side, + price_current=american_to_stake(price), + ) + errors = validate_row(row) + if not errors: + rows.append(row) + + # Build total rows + if over_total and under_total: + for t_side, t_line, t_price in [over_total, under_total]: + row = OddsRow( + datetime=now, + game_start=now, + league=LEAGUE, + team_a=team_a, + team_b=team_b, + current_points_spread=spread_val, + current_points_total=total_val, + game_duration=0.0, + bookmaker=BOOKMAKER, + market_type="POINTS_TOTAL", + thresh=total_val, + side=t_side, + price_current=american_to_stake(t_price), + ) + errors = validate_row(row) + if not errors: + rows.append(row) + + # Build moneyline rows + if away_ml is not None and home_ml is not None: + for side, price in [("away", away_ml), ("home", home_ml)]: + row = OddsRow( + datetime=now, + game_start=now, + league=LEAGUE, + team_a=team_a, + team_b=team_b, + current_points_spread=spread_val, + current_points_total=total_val, + game_duration=0.0, + bookmaker=BOOKMAKER, + market_type="MONEYLINE", + thresh=0.0, + side=side, + price_current=american_to_stake(price), + ) + errors = validate_row(row) + if not errors: + rows.append(row) + + logger.info( + "Parsed %s @ %s: spread=%s, total=%s, ML=%s", + team_a, team_b, + "yes" if away_spread and home_spread else "no", + "yes" if over_total and under_total else "no", + "yes" if away_ml is not None and home_ml is not None else "no", + ) + + except Exception as e: + logger.warning("Failed to parse event: %s", e) + continue + + return rows + + +def handler(event=None, context=None): + """Lambda entry point.""" + logger.info("Starting FanDuel NBA scraper") + + with sync_playwright() as pw: + browser = pw.chromium.launch(headless=False) + context = browser.new_context( + user_agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36", + geolocation={"latitude": 33.4484, "longitude": -112.0740}, + permissions=["geolocation"], + locale="en-US", + timezone_id="America/Phoenix", + ) + page = context.new_page() + + try: + rows = _scrape_nba_odds(page) + except PwTimeout: + logger.error("Timed out loading FanDuel") + rows = [] + finally: + browser.close() + + if not rows: + logger.warning("No odds scraped from FanDuel") + return {"statusCode": 200, "body": "No odds found"} + + csv_content = rows_to_csv(rows) + key = upload_csv(csv_content, BOOKMAKER, LEAGUE) + + return { + "statusCode": 200, + "body": f"Uploaded {len(rows)} rows to {key}", + } + + +if __name__ == '__main__': + handler()