From c9406410ae7eb8721fb824c174dbd122408e1247 Mon Sep 17 00:00:00 2001 From: newkle3r Date: Fri, 15 May 2026 15:06:30 +0200 Subject: [PATCH] Initial commit: Arbitrage --- .env.example | 7 + .gitignore | 50 + .vscode/settings.json | 14 + README.md | 62 + docs/ARCHITECTURE.md | 53 + docs/DATA_SCHEMA.md | 102 + odds/README.md | 49 + odds/api-pull/Odds/boxing_odds.json | 25461 ++++++++++++++++++++++++++ odds/api-pull/README.md | 9 + odds/data/samples/boxing_odds.json | 25461 ++++++++++++++++++++++++++ odds/scripts/fetch_odds.py | 103 + requirements.txt | 1 + 12 files changed, 51372 insertions(+) create mode 100644 .env.example create mode 100644 .gitignore create mode 100644 .vscode/settings.json create mode 100644 README.md create mode 100644 docs/ARCHITECTURE.md create mode 100644 docs/DATA_SCHEMA.md create mode 100644 odds/README.md create mode 100644 odds/api-pull/Odds/boxing_odds.json create mode 100644 odds/api-pull/README.md create mode 100644 odds/data/samples/boxing_odds.json create mode 100644 odds/scripts/fetch_odds.py create mode 100644 requirements.txt diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..d83d959 --- /dev/null +++ b/.env.example @@ -0,0 +1,7 @@ +# The Odds API — https://the-odds-api.com/ +# Copy to .env and set your key before running odds fetch scripts. +ODDS_API_KEY=your_api_key_here + +# Default region and market format (optional) +ODDS_REGIONS=uk,eu +ODDS_MARKETS=h2h diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ade5692 --- /dev/null +++ b/.gitignore @@ -0,0 +1,50 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg + +# Virtual environments +.venv/ +venv/ +arb-venv/ +env/ +ENV/ + +# Secrets and local config +.env +.env.* +!.env.example + +# IDE +.idea/ +*.swp +*.swo + +# OS +.DS_Store +Thumbs.db + +# Jupyter +.ipynb_checkpoints/ + +# pytest / coverage +.pytest_cache/ +.coverage +htmlcov/ diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..4e5c5cf --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,14 @@ +{ + "files.exclude": { + "**/.git": true, + "**/.svn": true, + "**/.hg": true, + "**/.DS_Store": true, + "**/Thumbs.db": true, + "**/CVS": true, + "**/.retool_types/**": true, + "**/*tsconfig.json": true, + ".cache": true, + "retool.config.json": true + } +} \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..24dfd6b --- /dev/null +++ b/README.md @@ -0,0 +1,62 @@ +# Arbitrage + +Tools and data for exploring **sports betting odds** and (eventually) **arbitrage opportunities** across bookmakers. + +## Project status + +| Area | Status | +|------|--------| +| Odds API sample data (boxing) | Included under `odds/data/samples/` | +| Odds fetch script | `odds/scripts/fetch_odds.py` | +| Arbitrage detection engine | Not implemented yet | + +## Repository layout + +``` +arbitrage/ +├── docs/ # Architecture and data schema +├── odds/ +│ ├── data/samples/ # Cached API responses (JSON) +│ └── scripts/ # fetch_odds.py +├── requirements.txt +└── .env.example # ODDS_API_KEY template +``` + +## Quick start + +### 1. Clone and create a virtual environment + +```bash +python -m venv .venv +# Windows +.venv\Scripts\activate +# macOS / Linux +source .venv/bin/activate + +pip install -r requirements.txt +``` + +### 2. Configure The Odds API (for live pulls) + +1. Sign up at [The Odds API](https://the-odds-api.com/). +2. Copy `.env.example` to `.env` and set `ODDS_API_KEY`. +3. Fetch fresh odds: + +```bash +python odds/scripts/fetch_odds.py --sport boxing_boxing --out odds/data/samples/boxing_odds.json +``` + +## Documentation + +- [Architecture](docs/ARCHITECTURE.md) — how modules fit together +- [Odds data schema](docs/DATA_SCHEMA.md) — JSON structure from The Odds API +- [Odds module](odds/README.md) — fetching and sample data + +## What is not in this repo + +- Virtual environments (`arb-venv/`, `.venv/`) — create locally; see `.gitignore` +- API keys — use `.env` (never commit) + +## License + +Add a license file before publishing if you intend open-source distribution. diff --git a/docs/ARCHITECTURE.md b/docs/ARCHITECTURE.md new file mode 100644 index 0000000..5a515b7 --- /dev/null +++ b/docs/ARCHITECTURE.md @@ -0,0 +1,53 @@ +# Architecture + +## Overview + +```mermaid +flowchart LR + subgraph external [External] + API[The Odds API] + end + + subgraph repo [Repository] + Fetch[odds/scripts/fetch_odds.py] + Samples[(odds/data/samples/*.json)] + Arb[Arbitrage engine - planned] + end + + API --> Fetch --> Samples + Samples --> Arb +``` + +## Odds pipeline (current and planned) + +### Current + +1. Operator sets `ODDS_API_KEY` in `.env` +2. `fetch_odds.py` calls `GET /v4/sports/{sport_key}/odds` +3. Response JSON is stored under `odds/data/samples/` + +### Planned + +| Stage | Responsibility | +|-------|----------------| +| Loader | Read JSON snapshots or live API | +| Normalizer | One row per (event, bookmaker, market, outcome) | +| Arb scanner | Compare implied probabilities across books | +| Reporter | CLI or export of opportunities above margin threshold | + +## Configuration + +| Variable | Used by | Description | +|----------|---------|-------------| +| `ODDS_API_KEY` | `fetch_odds.py` | The Odds API authentication | +| `ODDS_REGIONS` | (optional future) | Default regions for fetch | +| `ODDS_MARKETS` | (optional future) | Default markets for fetch | + +## Dependencies + +See root `requirements.txt`. Odds fetch uses `requests`. + +## Out of scope for git + +- `arb-venv/`, `.venv/` — local virtualenvs +- `.env` — secrets diff --git a/docs/DATA_SCHEMA.md b/docs/DATA_SCHEMA.md new file mode 100644 index 0000000..e917fbc --- /dev/null +++ b/docs/DATA_SCHEMA.md @@ -0,0 +1,102 @@ +# Odds data schema + +Sample file: `odds/data/samples/boxing_odds.json` + +Source: [The Odds API](https://the-odds-api.com/) v4 — `GET /sports/{sport}/odds` + +## Top level + +The response is a **JSON array** of event objects. + +```json +[ + { + "id": "7605c958b8ffbe29c0dcb81e4d2c8a10", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-10T16:00:00Z", + "home_team": "Charlie Senior", + "away_team": "Cesar Ignacio Paredes", + "bookmakers": [ ... ] + } +] +``` + +## Event fields + +| Field | Type | Description | +|-------|------|-------------| +| `id` | string | Unique event id | +| `sport_key` | string | API sport identifier | +| `sport_title` | string | Human-readable sport name | +| `commence_time` | ISO 8601 UTC | Scheduled start | +| `home_team` | string | Home / first fighter name | +| `away_team` | string | Away / second fighter name | +| `bookmakers` | array | List of books offering lines on this event | + +## Bookmaker object + +| Field | Type | Description | +|-------|------|-------------| +| `key` | string | Bookmaker slug (e.g. `unibet_uk`) | +| `title` | string | Display name | +| `last_update` | ISO 8601 | When this book’s lines were updated | +| `link` | string \| null | Deep link to event on book site | +| `sid` | string \| null | Book-specific event id | +| `markets` | array | Markets offered for this event | + +## Market object + +| Field | Type | Description | +|-------|------|-------------| +| `key` | string | Market type: `h2h` (moneyline), `h2h_lay` (exchange lay), etc. | +| `last_update` | ISO 8601 | Market update time | +| `outcomes` | array | Selections and prices | + +## Outcome object + +| Field | Type | Description | +|-------|------|-------------| +| `name` | string | Fighter name or `Draw` | +| `price` | number | **Decimal** odds (European format) | +| `link` | string \| null | Selection deep link | +| `sid` | string \| null | Selection id at book | +| `bet_limit` | number \| null | Max stake if provided | + +## Implied probability (for arbitrage) + +For decimal odds `d`: + +``` +implied_probability = 1 / d +``` + +For a **single** book’s full market (all mutually exclusive outcomes), sum of implied probabilities > 1 indicates book margin (overround). + +**Cross-book arbitrage** (simplified): for each outcome, take the **best** (highest) decimal odds across books, then: + +``` +arb_sum = sum(1 / best_odds_i for each outcome i) +``` + +If `arb_sum < 1`, a risk-free profit is theoretically possible before fees and limits. + +## Normalized row (recommended for future code) + +| Column | Example | +|--------|---------| +| `event_id` | `7605c958...` | +| `commence_time` | `2025-05-10T16:00:00Z` | +| `home_team` | `Charlie Senior` | +| `away_team` | `Cesar Ignacio Paredes` | +| `bookmaker_key` | `unibet_uk` | +| `market_key` | `h2h` | +| `outcome_name` | `Charlie Senior` | +| `price` | `1.03` | +| `implied_prob` | `0.9709` | + +## API usage notes + +- Responses count against your API quota; check response headers `x-requests-remaining`. +- Region and market query params filter payload size; sample uses `uk,eu` and `h2h`. +- Prices are decimal in this project (`oddsFormat=decimal` in fetch script). diff --git a/odds/README.md b/odds/README.md new file mode 100644 index 0000000..990a790 --- /dev/null +++ b/odds/README.md @@ -0,0 +1,49 @@ +# Odds module + +Handles **ingestion and storage** of sports odds from [The Odds API](https://the-odds-api.com/). Arbitrage logic will consume normalized odds from this layer once implemented. + +## Contents + +| Path | Description | +|------|-------------| +| `data/samples/boxing_odds.json` | Snapshot of boxing `h2h` odds (~1 MB) | +| `scripts/fetch_odds.py` | CLI to pull live odds and save JSON | + +Legacy path `api-pull/Odds/boxing_odds.json` may still exist locally; prefer `data/samples/` for new work. + +## Fetching odds + +```bash +# From repository root, with ODDS_API_KEY set +python odds/scripts/fetch_odds.py \ + --sport boxing_boxing \ + --regions uk,eu \ + --markets h2h \ + --out odds/data/samples/boxing_odds.json +``` + +### Script functions + +| Function | Purpose | +|----------|---------| +| `get_api_key()` | Reads `ODDS_API_KEY` from the environment | +| `fetch_odds(sport, regions, markets, api_key)` | HTTP GET to `/v4/sports/{sport}/odds` | +| `save_odds(data, output_path)` | Writes pretty-printed JSON | +| `main()` | Parses CLI args and runs fetch + save | + +## Sample data + +`boxing_odds.json` is an array of **events**. Each event has `home_team`, `away_team`, `commence_time`, and a `bookmakers` list. Each bookmaker exposes `markets` (e.g. `h2h` head-to-head) with `outcomes` and decimal `price` values. + +See [docs/DATA_SCHEMA.md](../docs/DATA_SCHEMA.md) for the full field reference. + +## Next steps (arbitrage) + +Planned pipeline: + +1. **Normalize** — flatten bookmaker/outcome rows per event +2. **Implied probability** — `1 / decimal_odds` per outcome +3. **Cross-book compare** — find outcomes where sum of best inverse odds < 1 (arb margin) +4. **Stake split** — optional Kelly / equal-profit calculators + +None of steps 2–4 exist in code yet; this folder is ingestion-only today. diff --git a/odds/api-pull/Odds/boxing_odds.json b/odds/api-pull/Odds/boxing_odds.json new file mode 100644 index 0000000..54dd152 --- /dev/null +++ b/odds/api-pull/Odds/boxing_odds.json @@ -0,0 +1,25461 @@ +[ + { + "id": "7605c958b8ffbe29c0dcb81e4d2c8a10", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-10T16:00:00Z", + "home_team": "Charlie Senior", + "away_team": "Cesar Ignacio Paredes", + "bookmakers": [ + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023593088", + "sid": "1023593088", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Cesar Ignacio Paredes", + "price": 17.0, + "link": null, + "sid": "3728693018", + "bet_limit": null + }, + { + "name": "Charlie Senior", + "price": 1.03, + "link": null, + "sid": "3728693014", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "3728693016", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/senior%2C-charlie-paredes%2C-cesar-ignacio/SBTE_2_1023593088", + "sid": "SBTE_2_1023593088", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Cesar Ignacio Paredes", + "price": 17.0, + "link": null, + "sid": "SBTS_2_3728693018", + "bet_limit": null + }, + { + "name": "Charlie Senior", + "price": 1.03, + "link": null, + "sid": "SBTS_2_3728693014", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "SBTS_2_3728693016", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023593088", + "sid": "1023593088", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Cesar Ignacio Paredes", + "price": 17.0, + "link": null, + "sid": "3728693018", + "bet_limit": null + }, + { + "name": "Charlie Senior", + "price": 1.03, + "link": null, + "sid": "3728693014", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "3728693016", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023593088", + "sid": "1023593088", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Cesar Ignacio Paredes", + "price": 14.0, + "link": null, + "sid": "3728693018", + "bet_limit": null + }, + { + "name": "Charlie Senior", + "price": 1.01, + "link": null, + "sid": "3728693014", + "bet_limit": null + }, + { + "name": "Draw", + "price": 18.0, + "link": null, + "sid": "3728693016", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/senior%2C-charlie-paredes%2C-cesar-ignacio/SBTE_2_1023593088", + "sid": "SBTE_2_1023593088", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Cesar Ignacio Paredes", + "price": 17.0, + "link": null, + "sid": "SBTS_2_3728693018", + "bet_limit": null + }, + { + "name": "Charlie Senior", + "price": 1.03, + "link": null, + "sid": "SBTS_2_3728693014", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "SBTS_2_3728693016", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/260627681-charlie-senior-cesar-ignacio-paredes", + "sid": "260627681", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Cesar Ignacio Paredes", + "price": 12.8, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Charlie Senior", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 48.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Cesar Ignacio Paredes", + "price": 21.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Charlie Senior", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490694733", + "sid": "490694733", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Cesar Ignacio Paredes", + "price": 21.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Charlie Senior", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490694733", + "sid": "490694733", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Cesar Ignacio Paredes", + "price": 21.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Charlie Senior", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "paddypower", + "title": "Paddy Power", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.paddypower.com/boxing/boxing-matches/charlie-senior-v-cesar-ignacio-paredes-34297020", + "sid": "34297020", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Cesar Ignacio Paredes", + "price": 34.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Charlie Senior", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 61.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44423823/sport/boxing/international-matchups/2025/05/10/15-00/charlie-senior-vs-cesar-ignacio-paredes", + "sid": "44423823", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Cesar Ignacio Paredes", + "price": 9.6, + "link": null, + "sid": "282634490", + "bet_limit": 20 + }, + { + "name": "Charlie Senior", + "price": 1.0, + "link": null, + "sid": "282634489", + "bet_limit": 214726 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Cesar Ignacio Paredes", + "price": 250.0, + "link": null, + "sid": "282634490", + "bet_limit": 180 + }, + { + "name": "Charlie Senior", + "price": 1.12, + "link": null, + "sid": "282634489", + "bet_limit": 179 + } + ] + } + ] + }, + { + "key": "nordicbet", + "title": "Nordic Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.nordicbet.com/en/sportsbook/boxing/international/upcoming-fights/charlie-senior-cesar-ignacio-paredes", + "sid": "f-qq35toEntEOi32DufRVn4w", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Cesar Ignacio Paredes", + "price": 18.0, + "link": null, + "sid": "s-m-f-qq35toEntEOi32DufRVn4w-MW3W-away", + "bet_limit": null + }, + { + "name": "Charlie Senior", + "price": 1.01, + "link": null, + "sid": "s-m-f-qq35toEntEOi32DufRVn4w-MW3W-home", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "s-m-f-qq35toEntEOi32DufRVn4w-MW3W-draw", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betsson", + "title": "Betsson", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betsson.com/en/sportsbook/boxing/international/upcoming-fights?tab=liveAndUpcoming&eventId=f-qq35toEntEOi32DufRVn4w&eti=0&fs=true", + "sid": "f-qq35toEntEOi32DufRVn4w", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Cesar Ignacio Paredes", + "price": 18.0, + "link": null, + "sid": "s-m-f-qq35toEntEOi32DufRVn4w-MW3W-away", + "bet_limit": null + }, + { + "name": "Charlie Senior", + "price": 1.01, + "link": null, + "sid": "s-m-f-qq35toEntEOi32DufRVn4w-MW3W-home", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "s-m-f-qq35toEntEOi32DufRVn4w-MW3W-draw", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15360736", + "sid": "15360736", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Cesar Ignacio Paredes", + "price": 17.0, + "link": null, + "sid": "1760348571", + "bet_limit": null + }, + { + "name": "Charlie Senior", + "price": 1.01, + "link": null, + "sid": "1760348569", + "bet_limit": null + }, + { + "name": "Draw", + "price": 21.0, + "link": null, + "sid": "1760348570", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/charlie-senior-cesar-ignacio-paredes-202505101100", + "sid": "15262444", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Cesar Ignacio Paredes", + "price": 21.0, + "link": null, + "sid": "1926137105", + "bet_limit": null + }, + { + "name": "Charlie Senior", + "price": 1.0, + "link": null, + "sid": "1926137104", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "e98304b622e34ae26868566ff5324180", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-10T16:00:00Z", + "home_team": "Owen Cooper", + "away_team": "Chris Kongo", + "bookmakers": [ + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023593085", + "sid": "1023593085", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.54, + "link": null, + "sid": "3728737072", + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.55, + "link": null, + "sid": "3728737070", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "3728737071", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/cooper%2C-owen-kongo%2C-chris/SBTE_2_1023593085", + "sid": "SBTE_2_1023593085", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.54, + "link": null, + "sid": "SBTS_2_3728737072", + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.55, + "link": null, + "sid": "SBTS_2_3728737070", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "SBTS_2_3728737071", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/cooper%2C-owen-kongo%2C-chris/SBTE_2_1023593085", + "sid": "SBTE_2_1023593085", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.54, + "link": null, + "sid": "SBTS_2_3728737072", + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.55, + "link": null, + "sid": "SBTS_2_3728737070", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "SBTS_2_3728737071", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023593085", + "sid": "1023593085", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.54, + "link": null, + "sid": "3728737072", + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.55, + "link": null, + "sid": "3728737070", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "3728737071", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023593085", + "sid": "1023593085", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.5, + "link": null, + "sid": "3728737072", + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.43, + "link": null, + "sid": "3728737070", + "bet_limit": null + }, + { + "name": "Draw", + "price": 13.0, + "link": null, + "sid": "3728737071", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/260461924-owen-cooper-chris-kongo", + "sid": "260461924", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.58, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.52, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.5, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "nordicbet", + "title": "Nordic Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.nordicbet.com/en/sportsbook/boxing/international/upcoming-fights/owen-cooper-chris-kongo", + "sid": "f-BKZbdtSdmECSOTftjEa-hA", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.49, + "link": null, + "sid": "s-m-f-BKZbdtSdmECSOTftjEa-hA-MW2W-away", + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.42, + "link": null, + "sid": "s-m-f-BKZbdtSdmECSOTftjEa-hA-MW2W-home", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betsson", + "title": "Betsson", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betsson.com/en/sportsbook/boxing/international/upcoming-fights?tab=liveAndUpcoming&eventId=f-BKZbdtSdmECSOTftjEa-hA&eti=0&fs=true", + "sid": "f-BKZbdtSdmECSOTftjEa-hA", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.49, + "link": null, + "sid": "s-m-f-BKZbdtSdmECSOTftjEa-hA-MW2W-away", + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.42, + "link": null, + "sid": "s-m-f-BKZbdtSdmECSOTftjEa-hA-MW2W-home", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.53, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.59, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263122", + "sid": "32263122", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.57, + "link": "https://sportsbook.draftkings.com/event/32263122?outcomes=0ML79848664_3", + "sid": "0ML79848664_3", + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.35, + "link": "https://sportsbook.draftkings.com/event/32263122?outcomes=0ML79848664_1", + "sid": "0ML79848664_1", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/owen-cooper-chris-kongo-202505101400", + "sid": "15256440", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.54, + "link": null, + "sid": "1924979508", + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.4, + "link": null, + "sid": "1924979507", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490694533", + "sid": "490694533", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.59, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.4, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490694533", + "sid": "490694533", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.59, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.4, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "sport888", + "title": "888sport", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.888sport.com/boxing/boxing/boxing-bouts/owen-cooper-v-chris-kongo-e-5761937/", + "sid": "5761937", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.53, + "link": null, + "sid": "16385846895", + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.5, + "link": null, + "sid": "16385846896", + "bet_limit": null + }, + { + "name": "Draw", + "price": 13.0, + "link": null, + "sid": "16385846894", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "paddypower", + "title": "Paddy Power", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.paddypower.com/boxing/boxing-matches/owen-cooper-v-chris-kongo-34296853", + "sid": "34296853", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.57, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.4, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44423272/sport/boxing/international-matchups/2025/05/10/19-30/owen-cooper-vs-chris-kongo", + "sid": "44423272", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.5, + "link": null, + "sid": "282604622", + "bet_limit": 360 + }, + { + "name": "Owen Cooper", + "price": 2.3, + "link": null, + "sid": "282604621", + "bet_limit": 138 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.77, + "link": null, + "sid": "282604622", + "bet_limit": 179 + }, + { + "name": "Owen Cooper", + "price": 3.0, + "link": null, + "sid": "282604621", + "bet_limit": 179 + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/owen-cooper-v-chris-kongo-34296853", + "sid": "34296853", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.56, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.503105493&selectionId=17829265", + "sid": "17829265", + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.32, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.503105493&selectionId=44195435", + "sid": "44195435", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15360744", + "sid": "15360744", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.57, + "link": null, + "sid": "1760349099", + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.5, + "link": null, + "sid": "1760349097", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "1760349098", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betmgm", + "title": "BetMGM", + "last_update": "2025-05-09T12:30:50Z", + "link": "https://sports.{state}.betmgm.com/en/sports/events/owen-cooper-eng---chris-kongo-eng-17501056", + "sid": "17501056", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:50Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.57, + "link": "https://sports.{state}.betmgm.com/en/sports?options=17501056-1295695019--616942328&type=Single", + "sid": "-616942328", + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.6, + "link": "https://sports.{state}.betmgm.com/en/sports?options=17501056-1295695019--616942330&type=Single", + "sid": "-616942330", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": "https://sports.{state}.betmgm.com/en/sports?options=17501056-1295695019--616942329&type=Single", + "sid": "-616942329", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "coral", + "title": "Coral", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.coral.co.uk/event/boxing/boxing/upcoming-fights/chris-kongo-v-owen-cooper/37367111/main-markets", + "sid": "37367111", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.57, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.62, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "21ddbb71d11fd63c3f319c45372b4ba1", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-10T16:00:00Z", + "home_team": "Nico Leivars", + "away_team": "Darwin Martinez", + "bookmakers": [ + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/leivars%2C-nico-martinez%2C-darwin/SBTE_2_1023593092", + "sid": "SBTE_2_1023593092", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 18.0, + "link": null, + "sid": "SBTS_2_3728736727", + "bet_limit": null + }, + { + "name": "Nico Leivars", + "price": 1.03, + "link": null, + "sid": "SBTS_2_3728736723", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "SBTS_2_3728736725", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023593092", + "sid": "1023593092", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 14.0, + "link": null, + "sid": "3728736727", + "bet_limit": null + }, + { + "name": "Nico Leivars", + "price": 1.01, + "link": null, + "sid": "3728736723", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "3728736725", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023593092", + "sid": "1023593092", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 18.0, + "link": null, + "sid": "3728736727", + "bet_limit": null + }, + { + "name": "Nico Leivars", + "price": 1.03, + "link": null, + "sid": "3728736723", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "3728736725", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/leivars%2C-nico-martinez%2C-darwin/SBTE_2_1023593092", + "sid": "SBTE_2_1023593092", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 18.0, + "link": null, + "sid": "SBTS_2_3728736727", + "bet_limit": null + }, + { + "name": "Nico Leivars", + "price": 1.03, + "link": null, + "sid": "SBTS_2_3728736723", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "SBTS_2_3728736725", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023593092", + "sid": "1023593092", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 18.0, + "link": null, + "sid": "3728736727", + "bet_limit": null + }, + { + "name": "Nico Leivars", + "price": 1.03, + "link": null, + "sid": "3728736723", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "3728736725", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/260627684-nico-leivars-darwin-martinez", + "sid": "260627684", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 13.9, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Nico Leivars", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 33.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 13.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Nico Leivars", + "price": 1.02, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263125", + "sid": "32263125", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 17.0, + "link": "https://sportsbook.draftkings.com/event/32263125?outcomes=0ML79848667_3", + "sid": "0ML79848667_3", + "bet_limit": null + }, + { + "name": "Nico Leivars", + "price": 1.02, + "link": "https://sportsbook.draftkings.com/event/32263125?outcomes=0ML79848667_1", + "sid": "0ML79848667_1", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/nico-leivars-darwin-martinez-202505101100", + "sid": "15262447", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 16.0, + "link": null, + "sid": "1926137356", + "bet_limit": null + }, + { + "name": "Nico Leivars", + "price": 1.02, + "link": null, + "sid": "1926137355", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490694740", + "sid": "490694740", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 17.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Nico Leivars", + "price": 1.02, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490694740", + "sid": "490694740", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 17.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Nico Leivars", + "price": 1.02, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "paddypower", + "title": "Paddy Power", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.paddypower.com/boxing/boxing-matches/nico-leivars-v-darwing-martinez-34296892", + "sid": "34296892", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 21.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Nico Leivars", + "price": 1.02, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 41.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44423918/sport/boxing/international-matchups/2025/05/10/15-00/nico-leivars-vs-darwing-martinez", + "sid": "44423918", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 9.2, + "link": null, + "sid": "282644211", + "bet_limit": 21 + }, + { + "name": "Nico Leivars", + "price": 1.0, + "link": null, + "sid": "282644210", + "bet_limit": 214726 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 129.87, + "link": null, + "sid": "282644211", + "bet_limit": 179 + }, + { + "name": "Nico Leivars", + "price": 1.13, + "link": null, + "sid": "282644210", + "bet_limit": 179 + } + ] + } + ] + }, + { + "key": "betsson", + "title": "Betsson", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betsson.com/en/sportsbook/boxing/international/upcoming-fights?tab=liveAndUpcoming&eventId=f-oSvFunQ_vUuS5T4nNnImIg&eti=0&fs=true", + "sid": "f-oSvFunQ_vUuS5T4nNnImIg", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 12.0, + "link": null, + "sid": "s-m-f-oSvFunQ_vUuS5T4nNnImIg-MW2W-away", + "bet_limit": null + }, + { + "name": "Nico Leivars", + "price": 1.01, + "link": null, + "sid": "s-m-f-oSvFunQ_vUuS5T4nNnImIg-MW2W-home", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "nordicbet", + "title": "Nordic Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.nordicbet.com/en/sportsbook/boxing/international/upcoming-fights/nico-leivars-darwin-martinez", + "sid": "f-oSvFunQ_vUuS5T4nNnImIg", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 12.0, + "link": null, + "sid": "s-m-f-oSvFunQ_vUuS5T4nNnImIg-MW2W-away", + "bet_limit": null + }, + { + "name": "Nico Leivars", + "price": 1.01, + "link": null, + "sid": "s-m-f-oSvFunQ_vUuS5T4nNnImIg-MW2W-home", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15360741", + "sid": "15360741", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 15.0, + "link": null, + "sid": "1760348898", + "bet_limit": null + }, + { + "name": "Nico Leivars", + "price": 1.02, + "link": null, + "sid": "1760348896", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "1760348897", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "sport888", + "title": "888sport", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.888sport.com/boxing/boxing/boxing-bouts/nico-leivars-v-darwin-martinez-e-5768885/", + "sid": "5768885", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 12.0, + "link": null, + "sid": "16387174971", + "bet_limit": null + }, + { + "name": "Nico Leivars", + "price": 1.02, + "link": null, + "sid": "16387174969", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "16387174970", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "2fa09ab7cf846f93253683dc4493a8ef", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-10T16:00:00Z", + "home_team": "Joe Cooper", + "away_team": "Dmitri Protkunas", + "bookmakers": [ + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023593090", + "sid": "1023593090", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dmitri Protkunas", + "price": 17.0, + "link": null, + "sid": "3728737129", + "bet_limit": null + }, + { + "name": "Joe Cooper", + "price": 1.03, + "link": null, + "sid": "3728737127", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "3728737128", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023593090", + "sid": "1023593090", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dmitri Protkunas", + "price": 17.0, + "link": null, + "sid": "3728737129", + "bet_limit": null + }, + { + "name": "Joe Cooper", + "price": 1.03, + "link": null, + "sid": "3728737127", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "3728737128", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023593090", + "sid": "1023593090", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dmitri Protkunas", + "price": 14.0, + "link": null, + "sid": "3728737129", + "bet_limit": null + }, + { + "name": "Joe Cooper", + "price": 1.01, + "link": null, + "sid": "3728737127", + "bet_limit": null + }, + { + "name": "Draw", + "price": 18.0, + "link": null, + "sid": "3728737128", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/cooper%2C-joe-protkunas%2C-dmitri/SBTE_2_1023593090", + "sid": "SBTE_2_1023593090", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dmitri Protkunas", + "price": 17.0, + "link": null, + "sid": "SBTS_2_3728737129", + "bet_limit": null + }, + { + "name": "Joe Cooper", + "price": 1.03, + "link": null, + "sid": "SBTS_2_3728737127", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "SBTS_2_3728737128", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/cooper%2C-joe-protkunas%2C-dmitri/SBTE_2_1023593090", + "sid": "SBTE_2_1023593090", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dmitri Protkunas", + "price": 17.0, + "link": null, + "sid": "SBTS_2_3728737129", + "bet_limit": null + }, + { + "name": "Joe Cooper", + "price": 1.03, + "link": null, + "sid": "SBTS_2_3728737127", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "SBTS_2_3728737128", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/260627683-joe-cooper-dmitri-protkunas", + "sid": "260627683", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dmitri Protkunas", + "price": 12.4, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Joe Cooper", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 55.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dmitri Protkunas", + "price": 21.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Joe Cooper", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263126", + "sid": "32263126", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dmitri Protkunas", + "price": 19.0, + "link": "https://sportsbook.draftkings.com/event/32263126?outcomes=0ML79848668_3", + "sid": "0ML79848668_3", + "bet_limit": null + }, + { + "name": "Joe Cooper", + "price": 1.01, + "link": "https://sportsbook.draftkings.com/event/32263126?outcomes=0ML79848668_1", + "sid": "0ML79848668_1", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/joe-cooper-dmitri-protkunas-202505101100", + "sid": "15262443", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dmitri Protkunas", + "price": 22.0, + "link": null, + "sid": "1926137099", + "bet_limit": null + }, + { + "name": "Joe Cooper", + "price": 1.0, + "link": null, + "sid": "1926137098", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490694798", + "sid": "490694798", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dmitri Protkunas", + "price": 21.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Joe Cooper", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490694798", + "sid": "490694798", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dmitri Protkunas", + "price": 21.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Joe Cooper", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "paddypower", + "title": "Paddy Power", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.paddypower.com/boxing/boxing-matches/joe-cooper-v-dmitri-protkunas-34296895", + "sid": "34296895", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dmitri Protkunas", + "price": 34.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Joe Cooper", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 61.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44423917/sport/boxing/international-matchups/2025/05/10/15-00/joe-cooper-vs-dmitri-protkunas", + "sid": "44423917", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dmitri Protkunas", + "price": 9.2, + "link": null, + "sid": "282644207", + "bet_limit": 21 + }, + { + "name": "Joe Cooper", + "price": 1.0, + "link": null, + "sid": "282644206", + "bet_limit": 214726 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dmitri Protkunas", + "price": 129.87, + "link": null, + "sid": "282644207", + "bet_limit": 179 + }, + { + "name": "Joe Cooper", + "price": 1.13, + "link": null, + "sid": "282644206", + "bet_limit": 179 + } + ] + } + ] + }, + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15360738", + "sid": "15360738", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dmitri Protkunas", + "price": 17.0, + "link": null, + "sid": "1760348701", + "bet_limit": null + }, + { + "name": "Joe Cooper", + "price": 1.01, + "link": null, + "sid": "1760348699", + "bet_limit": null + }, + { + "name": "Draw", + "price": 21.0, + "link": null, + "sid": "1760348700", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "6355142788d67d1b3b6fe15f56879b08", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-10T16:00:00Z", + "home_team": "Troy Jones", + "away_team": "Ezra Taylor", + "bookmakers": [ + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/jones%2C-troy-taylor%2C-ezra/SBTE_2_1023593084", + "sid": "SBTE_2_1023593084", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.3, + "link": null, + "sid": "SBTS_2_3728715538", + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 3.75, + "link": null, + "sid": "SBTS_2_3728715535", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "SBTS_2_3728715536", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023593084", + "sid": "1023593084", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.28, + "link": null, + "sid": "3728715538", + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 3.45, + "link": null, + "sid": "3728715535", + "bet_limit": null + }, + { + "name": "Draw", + "price": 12.5, + "link": null, + "sid": "3728715536", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023593084", + "sid": "1023593084", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.3, + "link": null, + "sid": "3728715538", + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 3.75, + "link": null, + "sid": "3728715535", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "3728715536", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/jones%2C-troy-taylor%2C-ezra/SBTE_2_1023593084", + "sid": "SBTE_2_1023593084", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.3, + "link": null, + "sid": "SBTS_2_3728715538", + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 3.75, + "link": null, + "sid": "SBTS_2_3728715535", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "SBTS_2_3728715536", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023593084", + "sid": "1023593084", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.3, + "link": null, + "sid": "3728715538", + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 3.75, + "link": null, + "sid": "3728715535", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "3728715536", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/260461926-ezra-taylor-troy-jones", + "sid": "260461926", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.24, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 4.14, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 28.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "nordicbet", + "title": "Nordic Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.nordicbet.com/en/sportsbook/boxing/international/upcoming-fights/ezra-taylor-troy-jones", + "sid": "f-4ASjsMOmY02vcahuK6vXAw", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.21, + "link": null, + "sid": "s-m-f-4ASjsMOmY02vcahuK6vXAw-MW2W-home", + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 3.95, + "link": null, + "sid": "s-m-f-4ASjsMOmY02vcahuK6vXAw-MW2W-away", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betsson", + "title": "Betsson", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betsson.com/en/sportsbook/boxing/international/upcoming-fights?tab=liveAndUpcoming&eventId=f-4ASjsMOmY02vcahuK6vXAw&eti=0&fs=true", + "sid": "f-4ASjsMOmY02vcahuK6vXAw", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.21, + "link": null, + "sid": "s-m-f-4ASjsMOmY02vcahuK6vXAw-MW2W-home", + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 3.95, + "link": null, + "sid": "s-m-f-4ASjsMOmY02vcahuK6vXAw-MW2W-away", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.27, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 3.7, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "pinnacle", + "title": "Pinnacle", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.pinnacle.com/en/boxing/boxing-matches/ezra-taylor-vs-troy-jones/1609294531/", + "sid": "1609294531", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.21, + "link": null, + "sid": null, + "bet_limit": 500 + }, + { + "name": "Troy Jones", + "price": 4.78, + "link": null, + "sid": null, + "bet_limit": 500 + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/ezra-taylor-troy-jones-202505101500", + "sid": "15256442", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.17, + "link": null, + "sid": "1924979636", + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 4.75, + "link": null, + "sid": "1924979637", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490694536", + "sid": "490694536", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.18, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 4.66, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490694536", + "sid": "490694536", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.18, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 4.66, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44423273/sport/boxing/international-matchups/2025/05/10/20-00/ezra-taylor-vs-troy-jones", + "sid": "44423273", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.18, + "link": null, + "sid": "282604841", + "bet_limit": 1000 + }, + { + "name": "Troy Jones", + "price": 4.0, + "link": null, + "sid": "282604842", + "bet_limit": 60 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.34, + "link": null, + "sid": "282604841", + "bet_limit": 179 + }, + { + "name": "Troy Jones", + "price": 6.6, + "link": null, + "sid": "282604842", + "bet_limit": 179 + } + ] + } + ] + }, + { + "key": "sport888", + "title": "888sport", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.888sport.com/boxing/boxing/boxing-bouts/ezra-taylor-v-troy-jones-e-5761938/", + "sid": "5761938", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.25, + "link": null, + "sid": "16385846899", + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 3.9, + "link": null, + "sid": "16385846900", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "16385846901", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "paddypower", + "title": "Paddy Power", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.paddypower.com/boxing/boxing-matches/ezra-taylor-v-troy-jones-34296854", + "sid": "34296854", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.29, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 3.75, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/ezra-taylor-v-troy-jones-34296854", + "sid": "34296854", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.26, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.503105481&selectionId=40690662", + "sid": "40690662", + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 3.6, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.503105481&selectionId=77047789", + "sid": "77047789", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32267613", + "sid": "32267613", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.19, + "link": "https://sportsbook.draftkings.com/event/32267613?outcomes=0ML79860868_1", + "sid": "0ML79860868_1", + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 4.6, + "link": "https://sportsbook.draftkings.com/event/32267613?outcomes=0ML79860868_3", + "sid": "0ML79860868_3", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15360745", + "sid": "15360745", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.3, + "link": null, + "sid": "1760349162", + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 3.75, + "link": null, + "sid": "1760349164", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "1760349163", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betmgm", + "title": "BetMGM", + "last_update": "2025-05-09T12:30:50Z", + "link": "https://sports.{state}.betmgm.com/en/sports/events/ezra-taylor-eng---troy-jones-eng-17501047", + "sid": "17501047", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:50Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.29, + "link": "https://sports.{state}.betmgm.com/en/sports?options=17501047-1295694010--616945354&type=Single", + "sid": "-616945354", + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 4.0, + "link": "https://sports.{state}.betmgm.com/en/sports?options=17501047-1295694010--616945352&type=Single", + "sid": "-616945352", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": "https://sports.{state}.betmgm.com/en/sports?options=17501047-1295694010--616945353&type=Single", + "sid": "-616945353", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "coral", + "title": "Coral", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.coral.co.uk/event/boxing/boxing/upcoming-fights/ezra-taylor-v-troy-jones/37366988/main-markets", + "sid": "37366988", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.28, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 4.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "bf3d66609cf6059116a9a6410dd1fa2f", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-10T16:00:00Z", + "home_team": "Harris Akbar", + "away_team": "Remi Scholer", + "bookmakers": [ + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023593086", + "sid": "1023593086", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Harris Akbar", + "price": 1.08, + "link": null, + "sid": "3728693021", + "bet_limit": null + }, + { + "name": "Remi Scholer", + "price": 10.5, + "link": null, + "sid": "3728693024", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3728693022", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023593086", + "sid": "1023593086", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Harris Akbar", + "price": 1.08, + "link": null, + "sid": "3728693021", + "bet_limit": null + }, + { + "name": "Remi Scholer", + "price": 10.5, + "link": null, + "sid": "3728693024", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3728693022", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023593086", + "sid": "1023593086", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Harris Akbar", + "price": 1.06, + "link": null, + "sid": "3728693021", + "bet_limit": null + }, + { + "name": "Remi Scholer", + "price": 9.0, + "link": null, + "sid": "3728693024", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "3728693022", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/akbar%2C-harris-scholer%2C-remi/SBTE_2_1023593086", + "sid": "SBTE_2_1023593086", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Harris Akbar", + "price": 1.08, + "link": null, + "sid": "SBTS_2_3728693021", + "bet_limit": null + }, + { + "name": "Remi Scholer", + "price": 10.5, + "link": null, + "sid": "SBTS_2_3728693024", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3728693022", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/akbar%2C-harris-scholer%2C-remi/SBTE_2_1023593086", + "sid": "SBTE_2_1023593086", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Harris Akbar", + "price": 1.08, + "link": null, + "sid": "SBTS_2_3728693021", + "bet_limit": null + }, + { + "name": "Remi Scholer", + "price": 10.5, + "link": null, + "sid": "SBTS_2_3728693024", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3728693022", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "26bc0ce09f45fa18004fb80315e54601", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-10T16:00:00Z", + "home_team": "Huey Malone", + "away_team": "Jakub Laskowski", + "bookmakers": [ + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023593087", + "sid": "1023593087", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Huey Malone", + "price": 1.03, + "link": null, + "sid": "3728737374", + "bet_limit": null + }, + { + "name": "Jakub Laskowski", + "price": 19.0, + "link": null, + "sid": "3728737377", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "3728737376", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/malone%2C-huey-laskowski%2C-jakub/SBTE_2_1023593087", + "sid": "SBTE_2_1023593087", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Huey Malone", + "price": 1.03, + "link": null, + "sid": "SBTS_2_3728737374", + "bet_limit": null + }, + { + "name": "Jakub Laskowski", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3728737377", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "SBTS_2_3728737376", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023593087", + "sid": "1023593087", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Huey Malone", + "price": 1.03, + "link": null, + "sid": "3728737374", + "bet_limit": null + }, + { + "name": "Jakub Laskowski", + "price": 19.0, + "link": null, + "sid": "3728737377", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "3728737376", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023593087", + "sid": "1023593087", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Huey Malone", + "price": 1.01, + "link": null, + "sid": "3728737374", + "bet_limit": null + }, + { + "name": "Jakub Laskowski", + "price": 15.0, + "link": null, + "sid": "3728737377", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3728737376", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/malone%2C-huey-laskowski%2C-jakub/SBTE_2_1023593087", + "sid": "SBTE_2_1023593087", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Huey Malone", + "price": 1.03, + "link": null, + "sid": "SBTS_2_3728737374", + "bet_limit": null + }, + { + "name": "Jakub Laskowski", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3728737377", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "SBTS_2_3728737376", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Huey Malone", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Jakub Laskowski", + "price": 21.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/260633864-huey-malone-jakub-laskowski", + "sid": "260633864", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Huey Malone", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Jakub Laskowski", + "price": 11.8, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 65.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490694734", + "sid": "490694734", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Huey Malone", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Jakub Laskowski", + "price": 21.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490694734", + "sid": "490694734", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Huey Malone", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Jakub Laskowski", + "price": 21.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "paddypower", + "title": "Paddy Power", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.paddypower.com/boxing/boxing-matches/huey-malone-v-jakub-laskowski-34297018", + "sid": "34297018", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Huey Malone", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Jakub Laskowski", + "price": 34.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 61.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44423822/sport/boxing/international-matchups/2025/05/10/15-00/huey-malone-vs-jakub-laskowski", + "sid": "44423822", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Huey Malone", + "price": 1.0, + "link": null, + "sid": "282634435", + "bet_limit": 214726 + }, + { + "name": "Jakub Laskowski", + "price": 9.6, + "link": null, + "sid": "282634436", + "bet_limit": 20 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Huey Malone", + "price": 1.12, + "link": null, + "sid": "282634435", + "bet_limit": 179 + }, + { + "name": "Jakub Laskowski", + "price": 250.0, + "link": null, + "sid": "282634436", + "bet_limit": 180 + } + ] + } + ] + }, + { + "key": "betfair_sb_uk", + "title": "Betfair Sportsbook", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betfair.com/betting/boxing/boxing-matches/huey-malone-v-jakub-laskowski/e-34297018", + "sid": "34297018", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Huey Malone", + "price": 1.01, + "link": null, + "sid": "83393293", + "bet_limit": null + }, + { + "name": "Jakub Laskowski", + "price": 34.0, + "link": null, + "sid": "40371503", + "bet_limit": null + }, + { + "name": "Draw", + "price": 61.0, + "link": null, + "sid": "31162", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15360737", + "sid": "15360737", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Huey Malone", + "price": 1.01, + "link": null, + "sid": "1760348634", + "bet_limit": null + }, + { + "name": "Jakub Laskowski", + "price": 17.0, + "link": null, + "sid": "1760348636", + "bet_limit": null + }, + { + "name": "Draw", + "price": 21.0, + "link": null, + "sid": "1760348635", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betsson", + "title": "Betsson", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betsson.com/en/sportsbook/boxing/international/upcoming-fights?tab=liveAndUpcoming&eventId=f-AJFxwB2tI0yvlORzXoQASQ&eti=0&fs=true", + "sid": "f-AJFxwB2tI0yvlORzXoQASQ", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Huey Malone", + "price": 1.01, + "link": null, + "sid": "s-m-f-AJFxwB2tI0yvlORzXoQASQ-MW3W-home", + "bet_limit": null + }, + { + "name": "Jakub Laskowski", + "price": 17.5, + "link": null, + "sid": "s-m-f-AJFxwB2tI0yvlORzXoQASQ-MW3W-away", + "bet_limit": null + }, + { + "name": "Draw", + "price": 27.0, + "link": null, + "sid": "s-m-f-AJFxwB2tI0yvlORzXoQASQ-MW3W-draw", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "nordicbet", + "title": "Nordic Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.nordicbet.com/en/sportsbook/boxing/international/upcoming-fights/huey-malone-jakub-laskowski", + "sid": "f-AJFxwB2tI0yvlORzXoQASQ", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Huey Malone", + "price": 1.01, + "link": null, + "sid": "s-m-f-AJFxwB2tI0yvlORzXoQASQ-MW3W-home", + "bet_limit": null + }, + { + "name": "Jakub Laskowski", + "price": 17.5, + "link": null, + "sid": "s-m-f-AJFxwB2tI0yvlORzXoQASQ-MW3W-away", + "bet_limit": null + }, + { + "name": "Draw", + "price": 27.0, + "link": null, + "sid": "s-m-f-AJFxwB2tI0yvlORzXoQASQ-MW3W-draw", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/huey-malone-jakub-laskowski-202505101100", + "sid": "15263312", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Huey Malone", + "price": 1.0, + "link": null, + "sid": "1926186168", + "bet_limit": null + }, + { + "name": "Jakub Laskowski", + "price": 21.0, + "link": null, + "sid": "1926186169", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "a7d1355cb96f03073237303ff8208e3c", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-10T16:00:00Z", + "home_team": "Joe Tyers", + "away_team": "Mario Valenzuela", + "bookmakers": [ + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023593089", + "sid": "1023593089", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Joe Tyers", + "price": 1.06, + "link": null, + "sid": "3728737365", + "bet_limit": null + }, + { + "name": "Mario Valenzuela", + "price": 11.0, + "link": null, + "sid": "3728737368", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "3728737367", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023593089", + "sid": "1023593089", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Joe Tyers", + "price": 1.06, + "link": null, + "sid": "3728737365", + "bet_limit": null + }, + { + "name": "Mario Valenzuela", + "price": 11.0, + "link": null, + "sid": "3728737368", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "3728737367", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023593089", + "sid": "1023593089", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Joe Tyers", + "price": 1.04, + "link": null, + "sid": "3728737365", + "bet_limit": null + }, + { + "name": "Mario Valenzuela", + "price": 9.0, + "link": null, + "sid": "3728737368", + "bet_limit": null + }, + { + "name": "Draw", + "price": 18.0, + "link": null, + "sid": "3728737367", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/tyers%2C-joe-valenzuela%2C-mario/SBTE_2_1023593089", + "sid": "SBTE_2_1023593089", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Joe Tyers", + "price": 1.06, + "link": null, + "sid": "SBTS_2_3728737365", + "bet_limit": null + }, + { + "name": "Mario Valenzuela", + "price": 11.0, + "link": null, + "sid": "SBTS_2_3728737368", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "SBTS_2_3728737367", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/tyers%2C-joe-valenzuela%2C-mario/SBTE_2_1023593089", + "sid": "SBTE_2_1023593089", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Joe Tyers", + "price": 1.06, + "link": null, + "sid": "SBTS_2_3728737365", + "bet_limit": null + }, + { + "name": "Mario Valenzuela", + "price": 11.0, + "link": null, + "sid": "SBTS_2_3728737368", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "SBTS_2_3728737367", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Joe Tyers", + "price": 1.05, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Mario Valenzuela", + "price": 9.5, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/260633863-joe-tyers-mario-ramon-valenzuela-portillo", + "sid": "260633863", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Joe Tyers", + "price": 1.03, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Mario Valenzuela", + "price": 11.9, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 28.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490694736", + "sid": "490694736", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Joe Tyers", + "price": 1.05, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Mario Valenzuela", + "price": 11.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490694736", + "sid": "490694736", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Joe Tyers", + "price": 1.05, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Mario Valenzuela", + "price": 11.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "paddypower", + "title": "Paddy Power", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.paddypower.com/boxing/boxing-matches/joe-tyers-v-mario-valenzuela-portillo-34296894", + "sid": "34296894", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Joe Tyers", + "price": 1.04, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Mario Valenzuela", + "price": 11.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 26.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44423920/sport/boxing/international-matchups/2025/05/10/15-00/joe-tyers-vs-mario-valenzuela-portillo", + "sid": "44423920", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Joe Tyers", + "price": 1.02, + "link": null, + "sid": "282644255", + "bet_limit": 9003 + }, + { + "name": "Mario Valenzuela", + "price": 8.0, + "link": null, + "sid": "282644256", + "bet_limit": 25 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Joe Tyers", + "price": 1.15, + "link": null, + "sid": "282644255", + "bet_limit": 179 + }, + { + "name": "Mario Valenzuela", + "price": 42.02, + "link": null, + "sid": "282644256", + "bet_limit": 179 + } + ] + } + ] + }, + { + "key": "betsson", + "title": "Betsson", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betsson.com/en/sportsbook/boxing/international/upcoming-fights?tab=liveAndUpcoming&eventId=f-aZ7oXbhq4kS4kAwCBEwfJQ&eti=0&fs=true", + "sid": "f-aZ7oXbhq4kS4kAwCBEwfJQ", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Joe Tyers", + "price": 1.03, + "link": null, + "sid": "s-m-f-aZ7oXbhq4kS4kAwCBEwfJQ-MW2W-home", + "bet_limit": null + }, + { + "name": "Mario Valenzuela", + "price": 8.9, + "link": null, + "sid": "s-m-f-aZ7oXbhq4kS4kAwCBEwfJQ-MW2W-away", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "nordicbet", + "title": "Nordic Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.nordicbet.com/en/sportsbook/boxing/international/upcoming-fights/joe-tyers-mario-valenzuela-portillo", + "sid": "f-aZ7oXbhq4kS4kAwCBEwfJQ", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Joe Tyers", + "price": 1.03, + "link": null, + "sid": "s-m-f-aZ7oXbhq4kS4kAwCBEwfJQ-MW2W-home", + "bet_limit": null + }, + { + "name": "Mario Valenzuela", + "price": 8.9, + "link": null, + "sid": "s-m-f-aZ7oXbhq4kS4kAwCBEwfJQ-MW2W-away", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15360739", + "sid": "15360739", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Joe Tyers", + "price": 1.05, + "link": null, + "sid": "1760348766", + "bet_limit": null + }, + { + "name": "Mario Valenzuela", + "price": 11.0, + "link": null, + "sid": "1760348768", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "1760348767", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/joe-tyers-mario-ramon-valenzuela-portillo-202505101100", + "sid": "15263311", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Joe Tyers", + "price": 1.05, + "link": null, + "sid": "1926186148", + "bet_limit": null + }, + { + "name": "Mario Valenzuela", + "price": 10.0, + "link": null, + "sid": "1926186149", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "sport888", + "title": "888sport", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.888sport.com/boxing/boxing/boxing-bouts/joe-tyers-v-mario-valenzuela-portillo-e-5768884/", + "sid": "5768884", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Joe Tyers", + "price": 1.05, + "link": null, + "sid": "16387174965", + "bet_limit": null + }, + { + "name": "Mario Valenzuela", + "price": 9.5, + "link": null, + "sid": "16387174966", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "16387174964", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "ac3d3795b52ee8b23dd58be5e89b1e41", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-10T16:00:00Z", + "home_team": "Liam Davies", + "away_team": "Kurt Walker", + "bookmakers": [ + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15328480", + "sid": "15328480", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.33, + "link": null, + "sid": "1750375822", + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.22, + "link": null, + "sid": "1750375820", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "1750375821", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "paddypower", + "title": "Paddy Power", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.paddypower.com/boxing/boxing-matches/liam-davies-v-kurt-walker-34139383", + "sid": "34139383", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.5, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.2, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/253768030-liam-davies-kurt-walker", + "sid": "253768030", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.39, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.23, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 26.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023593083", + "sid": "1023593083", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.1, + "link": null, + "sid": "3728680103", + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.2, + "link": null, + "sid": "3728680099", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3728680101", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023593083", + "sid": "1023593083", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.5, + "link": null, + "sid": "3728680103", + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.22, + "link": null, + "sid": "3728680099", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3728680101", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/davies%2C-liam-walker%2C-kurt/SBTE_2_1023593083", + "sid": "SBTE_2_1023593083", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.5, + "link": null, + "sid": "SBTS_2_3728680103", + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.22, + "link": null, + "sid": "SBTS_2_3728680099", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3728680101", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/davies%2C-liam-walker%2C-kurt/SBTE_2_1023593083", + "sid": "SBTE_2_1023593083", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.5, + "link": null, + "sid": "SBTS_2_3728680103", + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.22, + "link": null, + "sid": "SBTS_2_3728680099", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3728680101", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023593083", + "sid": "1023593083", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.5, + "link": null, + "sid": "3728680103", + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.22, + "link": null, + "sid": "3728680099", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3728680101", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/liam-davies-v-kurt-walker-34139383", + "sid": "34139383", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.5, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.489885904&selectionId=28206499", + "sid": "28206499", + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.18, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.489885904&selectionId=36835808", + "sid": "36835808", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.25, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betfair_ex_uk", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34139383", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.241130483", + "sid": "1.241130483", + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.5, + "link": null, + "sid": "28206499", + "bet_limit": 52 + }, + { + "name": "Liam Davies", + "price": 1.28, + "link": null, + "sid": "36835809", + "bet_limit": 59 + }, + { + "name": "Draw", + "price": 4.1, + "link": null, + "sid": "31162", + "bet_limit": 53 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 1000.0, + "link": null, + "sid": "28206499", + "bet_limit": 8 + }, + { + "name": "Liam Davies", + "price": 1.32, + "link": null, + "sid": "36835809", + "bet_limit": 160 + }, + { + "name": "Draw", + "price": 40.0, + "link": null, + "sid": "31162", + "bet_limit": 53 + } + ] + } + ] + }, + { + "key": "betfair_ex_eu", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34139383", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.241130483", + "sid": "1.241130483", + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.5, + "link": null, + "sid": "28206499", + "bet_limit": 61 + }, + { + "name": "Liam Davies", + "price": 1.28, + "link": null, + "sid": "36835809", + "bet_limit": 70 + }, + { + "name": "Draw", + "price": 4.1, + "link": null, + "sid": "31162", + "bet_limit": 63 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 1000.0, + "link": null, + "sid": "28206499", + "bet_limit": 10 + }, + { + "name": "Liam Davies", + "price": 1.32, + "link": null, + "sid": "36835809", + "bet_limit": 189 + }, + { + "name": "Draw", + "price": 40.0, + "link": null, + "sid": "31162", + "bet_limit": 62 + } + ] + } + ] + }, + { + "key": "coral", + "title": "Coral", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.coral.co.uk/event/boxing/boxing/upcoming-fights/liam-davies-v-kurt-walker/37319820/main-markets", + "sid": "37319820", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.33, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.25, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490693585", + "sid": "490693585", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 3.84, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.25, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490693585", + "sid": "490693585", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 3.84, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.25, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betsson", + "title": "Betsson", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betsson.com/en/sportsbook/boxing/international/upcoming-fights?tab=liveAndUpcoming&eventId=f-NunBI3j5AkG2IdeU0g9hKg&eti=0&fs=true", + "sid": "f-NunBI3j5AkG2IdeU0g9hKg", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.4, + "link": null, + "sid": "s-m-f-NunBI3j5AkG2IdeU0g9hKg-MW2W-away", + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.17, + "link": null, + "sid": "s-m-f-NunBI3j5AkG2IdeU0g9hKg-MW2W-home", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "nordicbet", + "title": "Nordic Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.nordicbet.com/en/sportsbook/boxing/international/upcoming-fights/l-davies-kurt-anthony-walker", + "sid": "f-NunBI3j5AkG2IdeU0g9hKg", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.4, + "link": null, + "sid": "s-m-f-NunBI3j5AkG2IdeU0g9hKg-MW2W-away", + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.17, + "link": null, + "sid": "s-m-f-NunBI3j5AkG2IdeU0g9hKg-MW2W-home", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/liam-davies-kurt-walker-202505101600", + "sid": "15029045", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 3.9, + "link": null, + "sid": "1905099798", + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.23, + "link": null, + "sid": "1905099797", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32259974", + "sid": "32259974", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.0, + "link": "https://sportsbook.draftkings.com/event/32259974?outcomes=0ML79839584_3", + "sid": "0ML79839584_3", + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.25, + "link": "https://sportsbook.draftkings.com/event/32259974?outcomes=0ML79839584_1", + "sid": "0ML79839584_1", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betmgm", + "title": "BetMGM", + "last_update": "2025-05-09T12:30:50Z", + "link": "https://sports.{state}.betmgm.com/en/sports/events/liam-davies-eng---kurt-walker-irl-17501045", + "sid": "17501045", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:50Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.33, + "link": "https://sports.{state}.betmgm.com/en/sports?options=17501045-1295692949--616948112&type=Single", + "sid": "-616948112", + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.25, + "link": "https://sports.{state}.betmgm.com/en/sports?options=17501045-1295692949--616948114&type=Single", + "sid": "-616948114", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": "https://sports.{state}.betmgm.com/en/sports?options=17501045-1295692949--616948113&type=Single", + "sid": "-616948113", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "sport888", + "title": "888sport", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.888sport.com/boxing/boxing/boxing-bouts/liam-davies-v-kurt-anthony-walker-e-5761939/", + "sid": "5761939", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.6, + "link": null, + "sid": "16385846904", + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.22, + "link": null, + "sid": "16385846906", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "16385846905", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "everygame", + "title": "Everygame", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://sports.everygame.eu/en/Bets/Boxing-UFC/Boxing/Kurt-Walker-v-Liam-Davies/2648799", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.45, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.22, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "f8df88ac720d06748fdc870ad470f332", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-10T16:00:00Z", + "home_team": "Lewis Williams", + "away_team": "Viktor Chvarkou", + "bookmakers": [ + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023593091", + "sid": "1023593091", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Lewis Williams", + "price": 1.03, + "link": null, + "sid": "3728705381", + "bet_limit": null + }, + { + "name": "Viktor Chvarkou", + "price": 19.0, + "link": null, + "sid": "3728705384", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "3728705383", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/williams%2C-lewis-chvarkou%2C-viktor/SBTE_2_1023593091", + "sid": "SBTE_2_1023593091", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Lewis Williams", + "price": 1.03, + "link": null, + "sid": "SBTS_2_3728705381", + "bet_limit": null + }, + { + "name": "Viktor Chvarkou", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3728705384", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "SBTS_2_3728705383", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023593091", + "sid": "1023593091", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Lewis Williams", + "price": 1.03, + "link": null, + "sid": "3728705381", + "bet_limit": null + }, + { + "name": "Viktor Chvarkou", + "price": 19.0, + "link": null, + "sid": "3728705384", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "3728705383", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023593091", + "sid": "1023593091", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Lewis Williams", + "price": 1.01, + "link": null, + "sid": "3728705381", + "bet_limit": null + }, + { + "name": "Viktor Chvarkou", + "price": 15.0, + "link": null, + "sid": "3728705384", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3728705383", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/williams%2C-lewis-chvarkou%2C-viktor/SBTE_2_1023593091", + "sid": "SBTE_2_1023593091", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Lewis Williams", + "price": 1.03, + "link": null, + "sid": "SBTS_2_3728705381", + "bet_limit": null + }, + { + "name": "Viktor Chvarkou", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3728705384", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "SBTS_2_3728705383", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "4b5862b283c9602153415f6059cf56ce", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-10T16:00:00Z", + "home_team": "Sam Noakes", + "away_team": "Patrik Bal\u00e1\u017e", + "bookmakers": [ + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023593093", + "sid": "1023593093", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Patrik Bal\u00e1\u017e", + "price": 18.0, + "link": null, + "sid": "3728736995", + "bet_limit": null + }, + { + "name": "Sam Noakes", + "price": 1.03, + "link": null, + "sid": "3728736991", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "3728736993", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/noakes%2C-sam-bal%C3%A1%C5%BE%2C-patrik/SBTE_2_1023593093", + "sid": "SBTE_2_1023593093", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Patrik Bal\u00e1\u017e", + "price": 18.0, + "link": null, + "sid": "SBTS_2_3728736995", + "bet_limit": null + }, + { + "name": "Sam Noakes", + "price": 1.03, + "link": null, + "sid": "SBTS_2_3728736991", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "SBTS_2_3728736993", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023593093", + "sid": "1023593093", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Patrik Bal\u00e1\u017e", + "price": 18.0, + "link": null, + "sid": "3728736995", + "bet_limit": null + }, + { + "name": "Sam Noakes", + "price": 1.03, + "link": null, + "sid": "3728736991", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "3728736993", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023593093", + "sid": "1023593093", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Patrik Bal\u00e1\u017e", + "price": 14.0, + "link": null, + "sid": "3728736995", + "bet_limit": null + }, + { + "name": "Sam Noakes", + "price": 1.01, + "link": null, + "sid": "3728736991", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "3728736993", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/noakes%2C-sam-bal%C3%A1%C5%BE%2C-patrik/SBTE_2_1023593093", + "sid": "SBTE_2_1023593093", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Patrik Bal\u00e1\u017e", + "price": 18.0, + "link": null, + "sid": "SBTS_2_3728736995", + "bet_limit": null + }, + { + "name": "Sam Noakes", + "price": 1.03, + "link": null, + "sid": "SBTS_2_3728736991", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "SBTS_2_3728736993", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "6f9847ba240abc26c2a4cd8e141d3bd3", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-10T19:34:00Z", + "home_team": "Anthony Cacace", + "away_team": "Leigh Wood", + "bookmakers": [ + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/cacace%2C-anthony-wood%2C-leigh/SBTE_2_1023572552", + "sid": "SBTE_2_1023572552", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.43, + "link": null, + "sid": "SBTS_2_3725444587", + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 2.95, + "link": null, + "sid": "SBTS_2_3725444590", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "SBTS_2_3725444589", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/cacace%2C-anthony-wood%2C-leigh/SBTE_2_1023572552", + "sid": "SBTE_2_1023572552", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.43, + "link": null, + "sid": "SBTS_2_3725444587", + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 2.95, + "link": null, + "sid": "SBTS_2_3725444590", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "SBTS_2_3725444589", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023572552", + "sid": "1023572552", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.41, + "link": null, + "sid": "3725444587", + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 2.8, + "link": null, + "sid": "3725444590", + "bet_limit": null + }, + { + "name": "Draw", + "price": 12.5, + "link": null, + "sid": "3725444589", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023572552", + "sid": "1023572552", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.43, + "link": null, + "sid": "3725444587", + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 2.95, + "link": null, + "sid": "3725444590", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "3725444589", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023572552", + "sid": "1023572552", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.43, + "link": null, + "sid": "3725444587", + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 2.95, + "link": null, + "sid": "3725444590", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "3725444589", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.38, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 3.1, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betrivers", + "title": "BetRivers", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023572552", + "sid": "1023572552", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.4, + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023572552?coupon={pickType}|3725444586|{wagerAmount}", + "sid": "3725444586", + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 2.85, + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023572552?coupon={pickType}|3725444588|{wagerAmount}", + "sid": "3725444588", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/248748493-anthony-cacace-leigh-wood", + "sid": "248748493", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.44, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 3.02, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.5, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betfair_ex_uk", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34007929", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.239492885", + "sid": "1.239492885", + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.52, + "link": null, + "sid": "13480221", + "bet_limit": 88 + }, + { + "name": "Leigh Wood", + "price": 2.82, + "link": null, + "sid": "10452858", + "bet_limit": 119 + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "31162", + "bet_limit": 20 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.69, + "link": null, + "sid": "13480221", + "bet_limit": 200 + }, + { + "name": "Leigh Wood", + "price": 3.6, + "link": null, + "sid": "10452858", + "bet_limit": 48 + }, + { + "name": "Draw", + "price": 18.0, + "link": null, + "sid": "31162", + "bet_limit": 12 + } + ] + } + ] + }, + { + "key": "betfair_ex_eu", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34007929", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.239492885", + "sid": "1.239492885", + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.52, + "link": null, + "sid": "13480221", + "bet_limit": 103 + }, + { + "name": "Leigh Wood", + "price": 2.82, + "link": null, + "sid": "10452858", + "bet_limit": 141 + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "31162", + "bet_limit": 23 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.69, + "link": null, + "sid": "13480221", + "bet_limit": 235 + }, + { + "name": "Leigh Wood", + "price": 3.6, + "link": null, + "sid": "10452858", + "bet_limit": 56 + }, + { + "name": "Draw", + "price": 18.0, + "link": null, + "sid": "31162", + "bet_limit": 14 + } + ] + } + ] + }, + { + "key": "paddypower", + "title": "Paddy Power", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.paddypower.com/boxing/boxing-matches/leigh-wood-v-anthony-cacace-34007929", + "sid": "34007929", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.53, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 2.5, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "coral", + "title": "Coral", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.coral.co.uk/event/boxing/boxing/upcoming-fights/anthony-cacace-v-leigh-wood/37004402/main-markets", + "sid": "37004402", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.5, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 2.75, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/anthony-cacace-leigh-wood-202505101700", + "sid": "14853035", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.4, + "link": null, + "sid": "1899997893", + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 2.85, + "link": null, + "sid": "1899997894", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15328456", + "sid": "15328456", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.44, + "link": null, + "sid": "1750372737", + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 2.75, + "link": null, + "sid": "1750372739", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "1750372738", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_eu", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": "1023572552", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.43, + "link": null, + "sid": "3725444587", + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 2.95, + "link": null, + "sid": "3725444590", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "3725444589", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490693586", + "sid": "490693586", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.38, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 2.95, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490693586", + "sid": "490693586", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.38, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 2.95, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betsson", + "title": "Betsson", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betsson.com/en/sportsbook/boxing/international/upcoming-fights?tab=liveAndUpcoming&eventId=f-n6uUnX3wg0qrmKD3ZXe7eg&eti=0&fs=true", + "sid": "f-n6uUnX3wg0qrmKD3ZXe7eg", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.41, + "link": null, + "sid": "s-m-f-n6uUnX3wg0qrmKD3ZXe7eg-MW2W-home", + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 2.68, + "link": null, + "sid": "s-m-f-n6uUnX3wg0qrmKD3ZXe7eg-MW2W-away", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "nordicbet", + "title": "Nordic Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.nordicbet.com/en/sportsbook/boxing/international/upcoming-fights/anthony-cacace-leigh-wood", + "sid": "f-n6uUnX3wg0qrmKD3ZXe7eg", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.41, + "link": null, + "sid": "s-m-f-n6uUnX3wg0qrmKD3ZXe7eg-MW2W-home", + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 2.68, + "link": null, + "sid": "s-m-f-n6uUnX3wg0qrmKD3ZXe7eg-MW2W-away", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32259973", + "sid": "32259973", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.45, + "link": "https://sportsbook.draftkings.com/event/32259973?outcomes=0ML79839583_1", + "sid": "0ML79839583_1", + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 2.75, + "link": "https://sportsbook.draftkings.com/event/32259973?outcomes=0ML79839583_3", + "sid": "0ML79839583_3", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "pinnacle", + "title": "Pinnacle", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.pinnacle.com/en/boxing/boxing-matches/leigh-wood-vs-anthony-cacace/1609294529/", + "sid": "1609294529", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.43, + "link": null, + "sid": null, + "bet_limit": 500 + }, + { + "name": "Leigh Wood", + "price": 3.01, + "link": null, + "sid": null, + "bet_limit": 500 + } + ] + } + ] + }, + { + "key": "sport888", + "title": "888sport", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.888sport.com/boxing/boxing/boxing-bouts/anthony-cacace-v-leigh-wood-e-5761940/", + "sid": "5761940", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.44, + "link": null, + "sid": "16385846955", + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 2.88, + "link": null, + "sid": "16385846954", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "16385846956", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "everygame", + "title": "Everygame", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://sports.everygame.eu/en/Bets/Boxing-UFC/Boxing/Leigh-Wood-v-Anthony-Cacace/2648795", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.4, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 3.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "ece51507812a70e7e958557111333cbf", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-10T22:00:00Z", + "home_team": "Albert Gonzalez", + "away_team": "Jose Ortiz", + "bookmakers": [ + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023593536", + "sid": "1023593536", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.01, + "link": null, + "sid": "3733960689", + "bet_limit": null + }, + { + "name": "Jose Ortiz", + "price": 14.0, + "link": null, + "sid": "3733960691", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "3733960690", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023593536", + "sid": "1023593536", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.03, + "link": null, + "sid": "3733960689", + "bet_limit": null + }, + { + "name": "Jose Ortiz", + "price": 18.0, + "link": null, + "sid": "3733960691", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "3733960690", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/gonzalez%2C-albert-ortiz%2C-jose/SBTE_2_1023593536", + "sid": "SBTE_2_1023593536", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.03, + "link": null, + "sid": "SBTS_2_3733960689", + "bet_limit": null + }, + { + "name": "Jose Ortiz", + "price": 18.0, + "link": null, + "sid": "SBTS_2_3733960691", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "SBTS_2_3733960690", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/gonzalez%2C-albert-ortiz%2C-jose/SBTE_2_1023593536", + "sid": "SBTE_2_1023593536", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.03, + "link": null, + "sid": "SBTS_2_3733960689", + "bet_limit": null + }, + { + "name": "Jose Ortiz", + "price": 18.0, + "link": null, + "sid": "SBTS_2_3733960691", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "SBTS_2_3733960690", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023593536", + "sid": "1023593536", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.03, + "link": null, + "sid": "3733960689", + "bet_limit": null + }, + { + "name": "Jose Ortiz", + "price": 18.0, + "link": null, + "sid": "3733960691", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "3733960690", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "0eced8921b605353f7d79d08d92decdf", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-10T23:00:00Z", + "home_team": "Albert Gonzalez", + "away_team": "Jose Ivan Guardado", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263141", + "sid": "32263141", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.02, + "link": "https://sportsbook.draftkings.com/event/32263141?outcomes=0ML79848703_1", + "sid": "0ML79848703_1", + "bet_limit": null + }, + { + "name": "Jose Ivan Guardado", + "price": 15.0, + "link": "https://sportsbook.draftkings.com/event/32263141?outcomes=0ML79848703_3", + "sid": "0ML79848703_3", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.02, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Jose Ivan Guardado", + "price": 13.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/albert-gonzalez-jose-ivan-guardado-ortiz-202505101700", + "sid": "15263404", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.02, + "link": null, + "sid": "1926192916", + "bet_limit": null + }, + { + "name": "Jose Ivan Guardado", + "price": 16.0, + "link": null, + "sid": "1926192917", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490694745", + "sid": "490694745", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.02, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Jose Ivan Guardado", + "price": 17.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490694745", + "sid": "490694745", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.02, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Jose Ivan Guardado", + "price": 17.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "paddypower", + "title": "Paddy Power", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.paddypower.com/boxing/boxing-matches/albert-gonzalez-v-jose-ivan-guardado-ortiz-34296501", + "sid": "34296501", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.02, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Jose Ivan Guardado", + "price": 17.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 41.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/260634715-albert-gonzalez-jose-ivan-guardado-ortiz", + "sid": "260634715", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Jose Ivan Guardado", + "price": 13.1, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 44.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44423968/sport/boxing/international-matchups/2025/05/10/21-30/albert-gonzalez-vs-jose-ivan-guardado-ortiz", + "sid": "44423968", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.01, + "link": null, + "sid": "282646262", + "bet_limit": 18001 + }, + { + "name": "Jose Ivan Guardado", + "price": 9.0, + "link": null, + "sid": "282646263", + "bet_limit": 22 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.13, + "link": null, + "sid": "282646262", + "bet_limit": 179 + }, + { + "name": "Jose Ivan Guardado", + "price": 109.89, + "link": null, + "sid": "282646263", + "bet_limit": 179 + } + ] + } + ] + }, + { + "key": "sport888", + "title": "888sport", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.888sport.com/boxing/boxing/boxing-bouts/albert-gonzalez-v-jose-ivan-guardado-ortiz-e-5763014/", + "sid": "5763014", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.02, + "link": null, + "sid": "16386037391", + "bet_limit": null + }, + { + "name": "Jose Ivan Guardado", + "price": 12.0, + "link": null, + "sid": "16386037392", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "16386037393", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betsson", + "title": "Betsson", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betsson.com/en/sportsbook/boxing/international/upcoming-fights?tab=liveAndUpcoming&eventId=f-vfDKCLNJ6EOqwcwJ1oqavQ&eti=0&fs=true", + "sid": "f-vfDKCLNJ6EOqwcwJ1oqavQ", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.01, + "link": null, + "sid": "s-m-f-vfDKCLNJ6EOqwcwJ1oqavQ-MW2W-home", + "bet_limit": null + }, + { + "name": "Jose Ivan Guardado", + "price": 10.5, + "link": null, + "sid": "s-m-f-vfDKCLNJ6EOqwcwJ1oqavQ-MW2W-away", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "nordicbet", + "title": "Nordic Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.nordicbet.com/en/sportsbook/boxing/international/upcoming-fights/albert-gonzalez-jose-ivan-guardado-ortiz", + "sid": "f-vfDKCLNJ6EOqwcwJ1oqavQ", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.01, + "link": null, + "sid": "s-m-f-vfDKCLNJ6EOqwcwJ1oqavQ-MW2W-home", + "bet_limit": null + }, + { + "name": "Jose Ivan Guardado", + "price": 10.5, + "link": null, + "sid": "s-m-f-vfDKCLNJ6EOqwcwJ1oqavQ-MW2W-away", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/albert-gonzalez-v-jose-ivan-guardado-ortiz-34296501", + "sid": "34296501", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.02, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.503081695&selectionId=72422653", + "sid": "72422653", + "bet_limit": null + }, + { + "name": "Jose Ivan Guardado", + "price": 11.8, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.503081695&selectionId=68135521", + "sid": "68135521", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15360746", + "sid": "15360746", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.02, + "link": null, + "sid": "1760349227", + "bet_limit": null + }, + { + "name": "Jose Ivan Guardado", + "price": 15.0, + "link": null, + "sid": "1760349229", + "bet_limit": null + }, + { + "name": "Draw", + "price": 21.0, + "link": null, + "sid": "1760349228", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "fb0520c12da65a7e2215b10853f25488", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-10T23:30:00Z", + "home_team": "Nicklaus Flaz", + "away_team": "Alan Sanchez", + "bookmakers": [ + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/260892183-nicklaus-flaz-alan-sanchez", + "sid": "260892183", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alan Sanchez", + "price": 8.35, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Nicklaus Flaz", + "price": 1.06, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 41.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/flaz%2C-nicklaus-sanchez%2C-alan/SBTE_2_1023657075", + "sid": "SBTE_2_1023657075", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alan Sanchez", + "price": 10.0, + "link": null, + "sid": "SBTS_2_3735166706", + "bet_limit": null + }, + { + "name": "Nicklaus Flaz", + "price": 1.07, + "link": null, + "sid": "SBTS_2_3735166704", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "SBTS_2_3735166705", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023657075", + "sid": "1023657075", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alan Sanchez", + "price": 8.5, + "link": null, + "sid": "3735166706", + "bet_limit": null + }, + { + "name": "Nicklaus Flaz", + "price": 1.05, + "link": null, + "sid": "3735166704", + "bet_limit": null + }, + { + "name": "Draw", + "price": 18.0, + "link": null, + "sid": "3735166705", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023657075", + "sid": "1023657075", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alan Sanchez", + "price": 10.0, + "link": null, + "sid": "3735166706", + "bet_limit": null + }, + { + "name": "Nicklaus Flaz", + "price": 1.07, + "link": null, + "sid": "3735166704", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "3735166705", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/flaz%2C-nicklaus-sanchez%2C-alan/SBTE_2_1023657075", + "sid": "SBTE_2_1023657075", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alan Sanchez", + "price": 10.0, + "link": null, + "sid": "SBTS_2_3735166706", + "bet_limit": null + }, + { + "name": "Nicklaus Flaz", + "price": 1.07, + "link": null, + "sid": "SBTS_2_3735166704", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "SBTS_2_3735166705", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023657075", + "sid": "1023657075", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alan Sanchez", + "price": 10.0, + "link": null, + "sid": "3735166706", + "bet_limit": null + }, + { + "name": "Nicklaus Flaz", + "price": 1.07, + "link": null, + "sid": "3735166704", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "3735166705", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "paddypower", + "title": "Paddy Power", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.paddypower.com/boxing/boxing-matches/nicklaus-flaz-v-alan-sanchez-34300255", + "sid": "34300255", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alan Sanchez", + "price": 7.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Nicklaus Flaz", + "price": 1.1, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 21.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490696679", + "sid": "490696679", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alan Sanchez", + "price": 7.86, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Nicklaus Flaz", + "price": 1.07, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490696679", + "sid": "490696679", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alan Sanchez", + "price": 7.86, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Nicklaus Flaz", + "price": 1.07, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alan Sanchez", + "price": 8.3, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Nicklaus Flaz", + "price": 1.07, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32273445", + "sid": "32273445", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alan Sanchez", + "price": 8.5, + "link": "https://sportsbook.draftkings.com/event/32273445?outcomes=0ML79876909_3", + "sid": "0ML79876909_3", + "bet_limit": null + }, + { + "name": "Nicklaus Flaz", + "price": 1.06, + "link": "https://sportsbook.draftkings.com/event/32273445?outcomes=0ML79876909_1", + "sid": "0ML79876909_1", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "0303d656a9438a7305d32afe4d780afa", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-10T23:30:00Z", + "home_team": "Nazarena Romero", + "away_team": "Mayeli Flores", + "bookmakers": [ + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/260897478-nazarena-romero-mayeli-flores", + "sid": "260897478", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Mayeli Flores", + "price": 4.92, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Nazarena Romero", + "price": 1.25, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 18.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023657076", + "sid": "1023657076", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Mayeli Flores", + "price": 4.3, + "link": null, + "sid": "3735205329", + "bet_limit": null + }, + { + "name": "Nazarena Romero", + "price": 1.19, + "link": null, + "sid": "3735205327", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "3735205328", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023657076", + "sid": "1023657076", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Mayeli Flores", + "price": 4.7, + "link": null, + "sid": "3735205329", + "bet_limit": null + }, + { + "name": "Nazarena Romero", + "price": 1.21, + "link": null, + "sid": "3735205327", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3735205328", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023657076", + "sid": "1023657076", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Mayeli Flores", + "price": 4.7, + "link": null, + "sid": "3735205329", + "bet_limit": null + }, + { + "name": "Nazarena Romero", + "price": 1.21, + "link": null, + "sid": "3735205327", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3735205328", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/romero%2C-nazarena-flores%2C-mayeli/SBTE_2_1023657076", + "sid": "SBTE_2_1023657076", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Mayeli Flores", + "price": 4.7, + "link": null, + "sid": "SBTS_2_3735205329", + "bet_limit": null + }, + { + "name": "Nazarena Romero", + "price": 1.21, + "link": null, + "sid": "SBTS_2_3735205327", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3735205328", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/romero%2C-nazarena-flores%2C-mayeli/SBTE_2_1023657076", + "sid": "SBTE_2_1023657076", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Mayeli Flores", + "price": 4.7, + "link": null, + "sid": "SBTS_2_3735205329", + "bet_limit": null + }, + { + "name": "Nazarena Romero", + "price": 1.21, + "link": null, + "sid": "SBTS_2_3735205327", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3735205328", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Mayeli Flores", + "price": 4.3, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Nazarena Romero", + "price": 1.22, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betclic", + "title": "Betclic", + "last_update": "2025-05-09T12:31:06Z", + "link": "https://www.betclic.fr/boxe-sboxing/combats-pour-le-titre-mondial-c15872/nazarena-romero-mayeli-flores-m778075403370496", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:31:06Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Mayeli Flores", + "price": 4.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Nazarena Romero", + "price": 1.16, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "d2db1ec2be3302c4c923e4987d37756a", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-11T00:00:00Z", + "home_team": "Andres Cortes", + "away_team": "Salvador Jimenez", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263492", + "sid": "32263492", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.02, + "link": "https://sportsbook.draftkings.com/event/32263492?outcomes=0ML79849277_1", + "sid": "0ML79849277_1", + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 14.0, + "link": "https://sportsbook.draftkings.com/event/32263492?outcomes=0ML79849277_3", + "sid": "0ML79849277_3", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.02, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 13.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490694750", + "sid": "490694750", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.02, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 17.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490694750", + "sid": "490694750", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.02, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 17.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "paddypower", + "title": "Paddy Power", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.paddypower.com/boxing/boxing-matches/andres-cortes-v-salvador-jimenez-34296416", + "sid": "34296416", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.02, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 21.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 46.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/260636311-andres-cortes-salvador-jimenez", + "sid": "260636311", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 12.7, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 43.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44423826/sport/boxing/international-matchups/2025/05/10/21-30/andres-cortes-vs-salvador-jimenez", + "sid": "44423826", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.01, + "link": null, + "sid": "282635392", + "bet_limit": 18001 + }, + { + "name": "Salvador Jimenez", + "price": 8.8, + "link": null, + "sid": "282635393", + "bet_limit": 23 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.13, + "link": null, + "sid": "282635392", + "bet_limit": 179 + }, + { + "name": "Salvador Jimenez", + "price": 80.0, + "link": null, + "sid": "282635393", + "bet_limit": 180 + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/cortes%2C-andres-jimenez%2C-salvador/SBTE_2_1023593533", + "sid": "SBTE_2_1023593533", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.03, + "link": null, + "sid": "SBTS_2_3733931308", + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 17.0, + "link": null, + "sid": "SBTS_2_3733931310", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "SBTS_2_3733931309", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023593533", + "sid": "1023593533", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.03, + "link": null, + "sid": "3733931308", + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 17.0, + "link": null, + "sid": "3733931310", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "3733931309", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/cortes%2C-andres-jimenez%2C-salvador/SBTE_2_1023593533", + "sid": "SBTE_2_1023593533", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.03, + "link": null, + "sid": "SBTS_2_3733931308", + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 17.0, + "link": null, + "sid": "SBTS_2_3733931310", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "SBTS_2_3733931309", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023593533", + "sid": "1023593533", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.03, + "link": null, + "sid": "3733931308", + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 17.0, + "link": null, + "sid": "3733931310", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "3733931309", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023593533", + "sid": "1023593533", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.01, + "link": null, + "sid": "3733931308", + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 14.0, + "link": null, + "sid": "3733931310", + "bet_limit": null + }, + { + "name": "Draw", + "price": 18.0, + "link": null, + "sid": "3733931309", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/andres-cortes-v-salvador-jimenez-34296416", + "sid": "34296416", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.02, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.503075513&selectionId=23589988", + "sid": "23589988", + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 15.0, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.503075513&selectionId=80590240", + "sid": "80590240", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15360749", + "sid": "15360749", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.02, + "link": null, + "sid": "1760349426", + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 15.0, + "link": null, + "sid": "1760349428", + "bet_limit": null + }, + { + "name": "Draw", + "price": 21.0, + "link": null, + "sid": "1760349427", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/andres-cortes-salvador-jimenez-202505102000", + "sid": "15263570", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.02, + "link": null, + "sid": "1926204840", + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 15.0, + "link": null, + "sid": "1926204841", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "coral", + "title": "Coral", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.coral.co.uk/event/boxing/boxing/upcoming-fights/andres-cortes-v-rafael-salvador-jimenez/37367562/main-markets", + "sid": "37367562", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.03, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 13.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 26.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "sport888", + "title": "888sport", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.888sport.com/boxing/boxing/boxing-bouts/andres-cortes-v-salvador-jimenez-e-5768891/", + "sid": "5768891", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.01, + "link": null, + "sid": "16387174994", + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 12.0, + "link": null, + "sid": "16387174993", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "16387174995", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betsson", + "title": "Betsson", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betsson.com/en/sportsbook/boxing/international/upcoming-fights?tab=liveAndUpcoming&eventId=f-6Y68GJbvN0WBrKF3PDcnQQ&eti=0&fs=true", + "sid": "f-6Y68GJbvN0WBrKF3PDcnQQ", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.01, + "link": null, + "sid": "s-m-f-6Y68GJbvN0WBrKF3PDcnQQ-MW2W-home", + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 12.0, + "link": null, + "sid": "s-m-f-6Y68GJbvN0WBrKF3PDcnQQ-MW2W-away", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "nordicbet", + "title": "Nordic Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.nordicbet.com/en/sportsbook/boxing/international/upcoming-fights/andres-cortes-salvador-jimenez", + "sid": "f-6Y68GJbvN0WBrKF3PDcnQQ", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.01, + "link": null, + "sid": "s-m-f-6Y68GJbvN0WBrKF3PDcnQQ-MW2W-home", + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 12.0, + "link": null, + "sid": "s-m-f-6Y68GJbvN0WBrKF3PDcnQQ-MW2W-away", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "4320c5a7a14e07587979c5c2efe501ba", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-11T00:00:00Z", + "home_team": "Giovani Santillan", + "away_team": "Angel Beltran", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263139", + "sid": "32263139", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 11.0, + "link": "https://sportsbook.draftkings.com/event/32263139?outcomes=0ML79848701_3", + "sid": "0ML79848701_3", + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.04, + "link": "https://sportsbook.draftkings.com/event/32263139?outcomes=0ML79848701_1", + "sid": "0ML79848701_1", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 9.5, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.05, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/giovanni-santillan-angel-beltran-villa-202505102000", + "sid": "15263403", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 10.0, + "link": null, + "sid": "1926192913", + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.05, + "link": null, + "sid": "1926192912", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490694748", + "sid": "490694748", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 10.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.06, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490694748", + "sid": "490694748", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 10.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.06, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "paddypower", + "title": "Paddy Power", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.paddypower.com/boxing/boxing-matches/giovani-santillan-v-angel-beltran-villa-34296503", + "sid": "34296503", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 10.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.05, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 26.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/260634714-giovanni-santillan-angel-beltran-villa", + "sid": "260634714", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 10.1, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.03, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 40.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44423981/sport/boxing/international-matchups/2025/05/10/21-30/giovanni-santillan-vs-angel-villa-beltran", + "sid": "44423981", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 7.8, + "link": null, + "sid": "282646418", + "bet_limit": 26 + }, + { + "name": "Giovani Santillan", + "price": 1.02, + "link": null, + "sid": "282646417", + "bet_limit": 9003 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 42.02, + "link": null, + "sid": "282646418", + "bet_limit": 179 + }, + { + "name": "Giovani Santillan", + "price": 1.15, + "link": null, + "sid": "282646417", + "bet_limit": 179 + } + ] + } + ] + }, + { + "key": "sport888", + "title": "888sport", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.888sport.com/boxing/boxing/boxing-bouts/giovani-santillan-v-angel-beltran-villa-e-5763015/", + "sid": "5763015", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 9.0, + "link": null, + "sid": "16386037399", + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.04, + "link": null, + "sid": "16386037400", + "bet_limit": null + }, + { + "name": "Draw", + "price": 21.0, + "link": null, + "sid": "16386037401", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023593532", + "sid": "1023593532", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 9.0, + "link": null, + "sid": "3733946554", + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.04, + "link": null, + "sid": "3733946552", + "bet_limit": null + }, + { + "name": "Draw", + "price": 18.0, + "link": null, + "sid": "3733946553", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/santillan%2C-giovani-beltran%2C-angel/SBTE_2_1023593532", + "sid": "SBTE_2_1023593532", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 11.0, + "link": null, + "sid": "SBTS_2_3733946554", + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.06, + "link": null, + "sid": "SBTS_2_3733946552", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "SBTS_2_3733946553", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/santillan%2C-giovani-beltran%2C-angel/SBTE_2_1023593532", + "sid": "SBTE_2_1023593532", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 11.0, + "link": null, + "sid": "SBTS_2_3733946554", + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.06, + "link": null, + "sid": "SBTS_2_3733946552", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "SBTS_2_3733946553", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023593532", + "sid": "1023593532", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 11.0, + "link": null, + "sid": "3733946554", + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.06, + "link": null, + "sid": "3733946552", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "3733946553", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023593532", + "sid": "1023593532", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 11.0, + "link": null, + "sid": "3733946554", + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.06, + "link": null, + "sid": "3733946552", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "3733946553", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betsson", + "title": "Betsson", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betsson.com/en/sportsbook/boxing/international/upcoming-fights?tab=liveAndUpcoming&eventId=f-EVgnLxICOEi_Ko7jcRnr0g&eti=0&fs=true", + "sid": "f-EVgnLxICOEi_Ko7jcRnr0g", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 8.9, + "link": null, + "sid": "s-m-f-EVgnLxICOEi_Ko7jcRnr0g-MW2W-away", + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.03, + "link": null, + "sid": "s-m-f-EVgnLxICOEi_Ko7jcRnr0g-MW2W-home", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "nordicbet", + "title": "Nordic Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.nordicbet.com/en/sportsbook/boxing/international/upcoming-fights/giovani-santillan-angel-beltran-villa", + "sid": "f-EVgnLxICOEi_Ko7jcRnr0g", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 8.9, + "link": null, + "sid": "s-m-f-EVgnLxICOEi_Ko7jcRnr0g-MW2W-away", + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.03, + "link": null, + "sid": "s-m-f-EVgnLxICOEi_Ko7jcRnr0g-MW2W-home", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/giovani-santillan-v-angel-beltran-villa-34296503", + "sid": "34296503", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 8.3, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.503081738&selectionId=83391963", + "sid": "83391963", + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.05, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.503081738&selectionId=28673366", + "sid": "28673366", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15360748", + "sid": "15360748", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 10.0, + "link": null, + "sid": "1760349359", + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.05, + "link": null, + "sid": "1760349357", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "1760349358", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "coral", + "title": "Coral", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.coral.co.uk/event/boxing/boxing/upcoming-fights/giovani-santillan-v-angel-beltran-villa/37367553/main-markets", + "sid": "37367553", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 10.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.05, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 26.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "5f904ff474b715827fa678db7a1d8381", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-11T00:00:00Z", + "home_team": "Darrelle Valsaint", + "away_team": "Rodolfo Orozco", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32267636", + "sid": "32267636", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darrelle Valsaint", + "price": 1.03, + "link": "https://sportsbook.draftkings.com/event/32267636?outcomes=0ML79860957_1", + "sid": "0ML79860957_1", + "bet_limit": null + }, + { + "name": "Rodolfo Orozco", + "price": 12.0, + "link": "https://sportsbook.draftkings.com/event/32267636?outcomes=0ML79860957_3", + "sid": "0ML79860957_3", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/260780094-darrelle-valsaint-jr-german-rodolfo-orozco", + "sid": "260780094", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darrelle Valsaint", + "price": 1.03, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Rodolfo Orozco", + "price": 10.2, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 45.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490696381", + "sid": "490696381", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darrelle Valsaint", + "price": 1.04, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Rodolfo Orozco", + "price": 10.1, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/darrelle-valsaint-jr-rodolfo-orozco-202505101700", + "sid": "15268455", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darrelle Valsaint", + "price": 1.04, + "link": null, + "sid": "1927201682", + "bet_limit": null + }, + { + "name": "Rodolfo Orozco", + "price": 11.0, + "link": null, + "sid": "1927201683", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darrelle Valsaint", + "price": 1.04, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Rodolfo Orozco", + "price": 10.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "paddypower", + "title": "Paddy Power", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.paddypower.com/boxing/boxing-matches/darrelle-valsaint-v-rodolfo-orozco-34300256", + "sid": "34300256", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darrelle Valsaint", + "price": 1.06, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Rodolfo Orozco", + "price": 9.5, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 26.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490696381", + "sid": "490696381", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darrelle Valsaint", + "price": 1.04, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Rodolfo Orozco", + "price": 10.1, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "011876238182a4c73a2ac064eed3479e", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-11T01:00:00Z", + "home_team": "Erickson Lubin", + "away_team": "Ardreal Holmes", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32260032", + "sid": "32260032", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.5, + "link": "https://sportsbook.draftkings.com/event/32260032?outcomes=0ML79839851_3", + "sid": "0ML79839851_3", + "bet_limit": null + }, + { + "name": "Erickson Lubin", + "price": 1.3, + "link": "https://sportsbook.draftkings.com/event/32260032?outcomes=0ML79839851_1", + "sid": "0ML79839851_1", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490693588", + "sid": "490693588", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.09, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Erickson Lubin", + "price": 1.36, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490693588", + "sid": "490693588", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.09, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Erickson Lubin", + "price": 1.36, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/254226660-erickson-lubin-ardreal-holmes", + "sid": "254226660", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.35, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Erickson Lubin", + "price": 1.35, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 22.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.45, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Erickson Lubin", + "price": 1.3, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betfair_ex_uk", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34148994", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.241314094", + "sid": "1.241314094", + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.6, + "link": null, + "sid": "73729560", + "bet_limit": 12 + }, + { + "name": "Erickson Lubin", + "price": 1.44, + "link": null, + "sid": "12601897", + "bet_limit": 47 + }, + { + "name": "Draw", + "price": 1.01, + "link": null, + "sid": "31162", + "bet_limit": 12 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.9, + "link": null, + "sid": "73729560", + "bet_limit": 10 + }, + { + "name": "Erickson Lubin", + "price": 1.49, + "link": null, + "sid": "12601897", + "bet_limit": 28 + }, + { + "name": "Draw", + "price": 1000.0, + "link": null, + "sid": "31162", + "bet_limit": 9 + } + ] + } + ] + }, + { + "key": "coral", + "title": "Coral", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.coral.co.uk/event/boxing/boxing/upcoming-fights/erickson-lubin-v-ardreal-holmes-jr/37320289/main-markets", + "sid": "37320289", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.5, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Erickson Lubin", + "price": 1.33, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betfair_ex_eu", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34148994", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.241314094", + "sid": "1.241314094", + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.6, + "link": null, + "sid": "73729560", + "bet_limit": 14 + }, + { + "name": "Erickson Lubin", + "price": 1.44, + "link": null, + "sid": "12601897", + "bet_limit": 56 + }, + { + "name": "Draw", + "price": 1.01, + "link": null, + "sid": "31162", + "bet_limit": 14 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.9, + "link": null, + "sid": "73729560", + "bet_limit": 12 + }, + { + "name": "Erickson Lubin", + "price": 1.49, + "link": null, + "sid": "12601897", + "bet_limit": 33 + }, + { + "name": "Draw", + "price": 1000.0, + "link": null, + "sid": "31162", + "bet_limit": 10 + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/erickson-lubin-v-ardreal-holmes-jr-34148994", + "sid": "34148994", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.2, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.490929736&selectionId=73729560", + "sid": "73729560", + "bet_limit": null + }, + { + "name": "Erickson Lubin", + "price": 1.32, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.490929736&selectionId=12601897", + "sid": "12601897", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15353008", + "sid": "15353008", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.25, + "link": null, + "sid": "1758036499", + "bet_limit": null + }, + { + "name": "Erickson Lubin", + "price": 1.33, + "link": null, + "sid": "1758036497", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "1758036498", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/erickson-lubin-ardreal-holmes-202505102100", + "sid": "15044776", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.55, + "link": null, + "sid": "1905099785", + "bet_limit": null + }, + { + "name": "Erickson Lubin", + "price": 1.28, + "link": null, + "sid": "1905099783", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "pinnacle", + "title": "Pinnacle", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.pinnacle.com/en/boxing/boxing-matches/ardreal-holmes-vs-erickson-lubin/1609291609/", + "sid": "1609291609", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.57, + "link": null, + "sid": null, + "bet_limit": 500 + }, + { + "name": "Erickson Lubin", + "price": 1.33, + "link": null, + "sid": null, + "bet_limit": 500 + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023657077", + "sid": "1023657077", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.25, + "link": null, + "sid": "3735205276", + "bet_limit": null + }, + { + "name": "Erickson Lubin", + "price": 1.3, + "link": null, + "sid": "3735205273", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3735205275", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023657077", + "sid": "1023657077", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.45, + "link": null, + "sid": "3735205276", + "bet_limit": null + }, + { + "name": "Erickson Lubin", + "price": 1.32, + "link": null, + "sid": "3735205273", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3735205275", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/lubin%2C-erickson-holmes%2C-ardreal/SBTE_2_1023657077", + "sid": "SBTE_2_1023657077", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.45, + "link": null, + "sid": "SBTS_2_3735205276", + "bet_limit": null + }, + { + "name": "Erickson Lubin", + "price": 1.32, + "link": null, + "sid": "SBTS_2_3735205273", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3735205275", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/lubin%2C-erickson-holmes%2C-ardreal/SBTE_2_1023657077", + "sid": "SBTE_2_1023657077", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.45, + "link": null, + "sid": "SBTS_2_3735205276", + "bet_limit": null + }, + { + "name": "Erickson Lubin", + "price": 1.32, + "link": null, + "sid": "SBTS_2_3735205273", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3735205275", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023657077", + "sid": "1023657077", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.45, + "link": null, + "sid": "3735205276", + "bet_limit": null + }, + { + "name": "Erickson Lubin", + "price": 1.32, + "link": null, + "sid": "3735205273", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3735205275", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "cafbf2438b61540da54b8ebc1d158cf3", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-11T02:00:00Z", + "home_team": "Raymond Muratalla", + "away_team": "Zaur Abdullaev", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32102988", + "sid": "32102988", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.18, + "link": "https://sportsbook.draftkings.com/event/32102988?outcomes=0ML79412747_1", + "sid": "0ML79412747_1", + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 4.9, + "link": "https://sportsbook.draftkings.com/event/32102988?outcomes=0ML79412747_3", + "sid": "0ML79412747_3", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/254792694-raymond-muratalla-zaur-abdullaev", + "sid": "254792694", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.17, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 5.43, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 24.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490686648", + "sid": "490686648", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.15, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 5.16, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/raymond-muratalla-abdullaev-zaur-202505102200", + "sid": "15065570", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.11, + "link": null, + "sid": "1905099791", + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 6.0, + "link": null, + "sid": "1905099792", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490686648", + "sid": "490686648", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.15, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 5.16, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betanysports", + "title": "BetAnySports", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.15, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 4.85, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023593531", + "sid": "1023593531", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.17, + "link": null, + "sid": "3732185110", + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 5.6, + "link": null, + "sid": "3732185112", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3732185111", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/muratalla%2C-raymond-abdullaev%2C-zaur/SBTE_2_1023593531", + "sid": "SBTE_2_1023593531", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.17, + "link": null, + "sid": "SBTS_2_3732185110", + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 5.6, + "link": null, + "sid": "SBTS_2_3732185112", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3732185111", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.15, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 5.25, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "nordicbet", + "title": "Nordic Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.nordicbet.com/en/sportsbook/boxing/international/upcoming-fights/raymond-muratalla-zaur-abdullaev", + "sid": "f-LBio9q1QJ06TX66hmbXbww", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.14, + "link": null, + "sid": "s-m-f-LBio9q1QJ06TX66hmbXbww-MW2W-home", + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 5.0, + "link": null, + "sid": "s-m-f-LBio9q1QJ06TX66hmbXbww-MW2W-away", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betsson", + "title": "Betsson", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betsson.com/en/sportsbook/boxing/international/upcoming-fights?tab=liveAndUpcoming&eventId=f-LBio9q1QJ06TX66hmbXbww&eti=0&fs=true", + "sid": "f-LBio9q1QJ06TX66hmbXbww", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.14, + "link": null, + "sid": "s-m-f-LBio9q1QJ06TX66hmbXbww-MW2W-home", + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 5.0, + "link": null, + "sid": "s-m-f-LBio9q1QJ06TX66hmbXbww-MW2W-away", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/muratalla%2C-raymond-abdullaev%2C-zaur/SBTE_2_1023593531", + "sid": "SBTE_2_1023593531", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.17, + "link": null, + "sid": "SBTS_2_3732185110", + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 5.6, + "link": null, + "sid": "SBTS_2_3732185112", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3732185111", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023593531", + "sid": "1023593531", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.17, + "link": null, + "sid": "3732185110", + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 5.6, + "link": null, + "sid": "3732185112", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3732185111", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15328454", + "sid": "15328454", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.17, + "link": null, + "sid": "1750372776", + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 5.0, + "link": null, + "sid": "1750372779", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "1750372778", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betfair_ex_uk", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34161017", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.241442735", + "sid": "1.241442735", + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.17, + "link": null, + "sid": "36775757", + "bet_limit": 99 + }, + { + "name": "Zaur Abdullaev", + "price": 4.8, + "link": null, + "sid": "20507366", + "bet_limit": 56 + }, + { + "name": "Draw", + "price": 4.8, + "link": null, + "sid": "31162", + "bet_limit": 55 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.26, + "link": null, + "sid": "36775757", + "bet_limit": 197 + }, + { + "name": "Zaur Abdullaev", + "price": 1000.0, + "link": null, + "sid": "20507366", + "bet_limit": 9 + }, + { + "name": "Draw", + "price": 1000.0, + "link": null, + "sid": "31162", + "bet_limit": 4 + } + ] + } + ] + }, + { + "key": "winamax_fr", + "title": "Winamax (FR)", + "last_update": "2025-05-09T12:32:15Z", + "link": "https://www.winamax.fr/en/sports-betting/match/59314641", + "sid": "59314641", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:15Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.14, + "link": null, + "sid": "1384061871", + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 3.6, + "link": null, + "sid": "1384061872", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023593531", + "sid": "1023593531", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.15, + "link": null, + "sid": "3732185110", + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 5.0, + "link": null, + "sid": "3732185112", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "3732185111", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "coral", + "title": "Coral", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.coral.co.uk/event/boxing/boxing/upcoming-fights/raymond-muratalla-v-zaur-abdullaev/37320284/main-markets", + "sid": "37320284", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.2, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 5.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "everygame", + "title": "Everygame", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://sports.everygame.eu/en/Bets/Boxing-UFC/Boxing/Zaur-Abdullaev-v-Raymond-Muratalla/2642836", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.18, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 5.25, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betfair_ex_eu", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34161017", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.241442735", + "sid": "1.241442735", + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.17, + "link": null, + "sid": "36775757", + "bet_limit": 116 + }, + { + "name": "Zaur Abdullaev", + "price": 4.8, + "link": null, + "sid": "20507366", + "bet_limit": 66 + }, + { + "name": "Draw", + "price": 4.8, + "link": null, + "sid": "31162", + "bet_limit": 65 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.26, + "link": null, + "sid": "36775757", + "bet_limit": 232 + }, + { + "name": "Zaur Abdullaev", + "price": 1000.0, + "link": null, + "sid": "20507366", + "bet_limit": 11 + }, + { + "name": "Draw", + "price": 1000.0, + "link": null, + "sid": "31162", + "bet_limit": 5 + } + ] + } + ] + }, + { + "key": "betclic", + "title": "Betclic", + "last_update": "2025-05-09T12:31:06Z", + "link": "https://www.betclic.fr/boxe-sboxing/combats-pour-le-titre-mondial-c15872/raymond-muratalla-zaur-abdullaev-m740021298835457", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:31:06Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.09, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 5.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/raymond-muratalla-v-zaur-abdullaev-34161017", + "sid": "34161017", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.15, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.492379006&selectionId=36775757", + "sid": "36775757", + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 5.1, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.492379006&selectionId=20507366", + "sid": "20507366", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "pinnacle", + "title": "Pinnacle", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.pinnacle.com/en/boxing/boxing-matches/raymond-muratalla-vs-zaur-abdullaev/1609285452/", + "sid": "1609285452", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.14, + "link": null, + "sid": null, + "bet_limit": 500 + }, + { + "name": "Zaur Abdullaev", + "price": 6.3, + "link": null, + "sid": null, + "bet_limit": 500 + } + ] + } + ] + }, + { + "key": "sport888", + "title": "888sport", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.888sport.com/boxing/boxing/boxing-bouts/raymond-muratalla-v-zaur-abdullaev-e-5761941/", + "sid": "5761941", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.18, + "link": null, + "sid": "16385847019", + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 5.4, + "link": null, + "sid": "16385847018", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "16385847017", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "5e7d6683e1e83a5ebcf7e52c55ab80ee", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-11T03:00:00Z", + "home_team": "Emanuel Navarrete", + "away_team": "Charley Suarez", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32102989", + "sid": "32102989", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 4.6, + "link": "https://sportsbook.draftkings.com/event/32102989?outcomes=0ML79412748_3", + "sid": "0ML79412748_3", + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.2, + "link": "https://sportsbook.draftkings.com/event/32102989?outcomes=0ML79412748_1", + "sid": "0ML79412748_1", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/254788521-emanuel-navarrete-charly-suarez", + "sid": "254788521", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 4.05, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.27, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 22.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 4.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.25, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betclic", + "title": "Betclic", + "last_update": "2025-05-09T12:31:06Z", + "link": "https://www.betclic.fr/boxe-sboxing/combats-pour-le-titre-mondial-c15872/emanuel-navarrete-charly-suarez-m740020868804608", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:31:06Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 3.7, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.19, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/emanuel-navarrete-v-charly-suarez-34161013", + "sid": "34161013", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 4.3, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.492378544&selectionId=11424281", + "sid": "11424281", + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.21, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.492378544&selectionId=21757859", + "sid": "21757859", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/emanuel-navarrete-charly-suarez-202505102300", + "sid": "15065467", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 3.55, + "link": null, + "sid": "1904815975", + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.28, + "link": null, + "sid": "1904815974", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490686647", + "sid": "490686647", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 3.84, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.25, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490686647", + "sid": "490686647", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 3.84, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.25, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "coral", + "title": "Coral", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.coral.co.uk/event/boxing/boxing/upcoming-fights/emanuel-navarrete-v-charly-suarez/37195077/main-markets", + "sid": "37195077", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 4.5, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.22, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 21.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "nordicbet", + "title": "Nordic Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.nordicbet.com/en/sportsbook/boxing/international/upcoming-fights/emanuel-navarrete-charly-suarez", + "sid": "f-H_pljyjUvkmBhYtvIK6lgQ", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 4.15, + "link": null, + "sid": "s-m-f-H_pljyjUvkmBhYtvIK6lgQ-MW2W-away", + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.19, + "link": null, + "sid": "s-m-f-H_pljyjUvkmBhYtvIK6lgQ-MW2W-home", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "parionssport_fr", + "title": "Parions Sport (FR)", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.enligne.parionssport.fdj.fr/paris-boxe/international/combats/3205825/e.navarrete-vs-c.suarez", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 3.6, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.26, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15328457", + "sid": "15328457", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 4.0, + "link": null, + "sid": "1750372403", + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.25, + "link": null, + "sid": "1750372400", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "1750372401", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "winamax_fr", + "title": "Winamax (FR)", + "last_update": "2025-05-09T12:32:15Z", + "link": "https://www.winamax.fr/en/sports-betting/match/59314643", + "sid": "59314643", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:15Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 3.15, + "link": null, + "sid": "1384068771", + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.19, + "link": null, + "sid": "1384068770", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "sport888", + "title": "888sport", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.888sport.com/boxing/boxing/boxing-bouts/emanuel-navarrete-v-charly-suarez-e-5718209/", + "sid": "5718209", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 4.1, + "link": null, + "sid": "16377693646", + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.25, + "link": null, + "sid": "16377693645", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "16377693647", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betsson", + "title": "Betsson", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betsson.com/en/sportsbook/boxing/international/upcoming-fights?tab=liveAndUpcoming&eventId=f-H_pljyjUvkmBhYtvIK6lgQ&eti=0&fs=true", + "sid": "f-H_pljyjUvkmBhYtvIK6lgQ", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 4.15, + "link": null, + "sid": "s-m-f-H_pljyjUvkmBhYtvIK6lgQ-MW2W-away", + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.19, + "link": null, + "sid": "s-m-f-H_pljyjUvkmBhYtvIK6lgQ-MW2W-home", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023593530", + "sid": "1023593530", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 4.0, + "link": null, + "sid": "3732156140", + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.25, + "link": null, + "sid": "3732156137", + "bet_limit": null + }, + { + "name": "Draw", + "price": 21.0, + "link": null, + "sid": "3732156138", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023593530", + "sid": "1023593530", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 3.7, + "link": null, + "sid": "3732156140", + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.23, + "link": null, + "sid": "3732156137", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "3732156138", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023593530", + "sid": "1023593530", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 4.0, + "link": null, + "sid": "3732156140", + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.25, + "link": null, + "sid": "3732156137", + "bet_limit": null + }, + { + "name": "Draw", + "price": 21.0, + "link": null, + "sid": "3732156138", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betfair_ex_eu", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34161013", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.241442760", + "sid": "1.241442760", + "outcomes": [ + { + "name": "Charley Suarez", + "price": 3.1, + "link": null, + "sid": "11424281", + "bet_limit": 35 + }, + { + "name": "Emanuel Navarrete", + "price": 1.3, + "link": null, + "sid": "21757859", + "bet_limit": 663 + }, + { + "name": "Draw", + "price": 7.4, + "link": null, + "sid": "31162", + "bet_limit": 32 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 4.4, + "link": null, + "sid": "11424281", + "bet_limit": 71 + }, + { + "name": "Emanuel Navarrete", + "price": 1.55, + "link": null, + "sid": "21757859", + "bet_limit": 15 + }, + { + "name": "Draw", + "price": 1000.0, + "link": null, + "sid": "31162", + "bet_limit": 4 + } + ] + } + ] + }, + { + "key": "betfair_ex_uk", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34161013", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.241442760", + "sid": "1.241442760", + "outcomes": [ + { + "name": "Charley Suarez", + "price": 3.1, + "link": null, + "sid": "11424281", + "bet_limit": 29 + }, + { + "name": "Emanuel Navarrete", + "price": 1.3, + "link": null, + "sid": "21757859", + "bet_limit": 562 + }, + { + "name": "Draw", + "price": 7.4, + "link": null, + "sid": "31162", + "bet_limit": 27 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 4.4, + "link": null, + "sid": "11424281", + "bet_limit": 60 + }, + { + "name": "Emanuel Navarrete", + "price": 1.55, + "link": null, + "sid": "21757859", + "bet_limit": 12 + }, + { + "name": "Draw", + "price": 1000.0, + "link": null, + "sid": "31162", + "bet_limit": 3 + } + ] + } + ] + }, + { + "key": "pinnacle", + "title": "Pinnacle", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.pinnacle.com/en/boxing/boxing-matches/emanuel-navarrete-vs-charly-suarez/1609285543/", + "sid": "1609285543", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 3.92, + "link": null, + "sid": null, + "bet_limit": 500 + }, + { + "name": "Emanuel Navarrete", + "price": 1.28, + "link": null, + "sid": null, + "bet_limit": 500 + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/navarrete%2C-emanuel-suarez%2C-charly/SBTE_2_1023593530", + "sid": "SBTE_2_1023593530", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 4.0, + "link": null, + "sid": "SBTS_2_3732156140", + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.25, + "link": null, + "sid": "SBTS_2_3732156137", + "bet_limit": null + }, + { + "name": "Draw", + "price": 21.0, + "link": null, + "sid": "SBTS_2_3732156138", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/navarrete%2C-emanuel-suarez%2C-charly/SBTE_2_1023593530", + "sid": "SBTE_2_1023593530", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 4.0, + "link": null, + "sid": "SBTS_2_3732156140", + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.25, + "link": null, + "sid": "SBTS_2_3732156137", + "bet_limit": null + }, + { + "name": "Draw", + "price": 21.0, + "link": null, + "sid": "SBTS_2_3732156138", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betanysports", + "title": "BetAnySports", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 3.65, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.25, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "everygame", + "title": "Everygame", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://sports.everygame.eu/en/Bets/Boxing-UFC/Boxing/Charly-Suarez-v-Emanuel-Navarrete/2642835", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 4.1, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.25, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "3a7f660c8f7baa1c3781d3dbeb3782e4", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-11T06:00:00Z", + "home_team": "Fernando Daniel Martinez", + "away_team": "Kazuto Ioka", + "bookmakers": [ + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15328494", + "sid": "15328494", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.25, + "link": null, + "sid": "1750377520", + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 4.0, + "link": null, + "sid": "1750377522", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "1750377521", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "winamax_fr", + "title": "Winamax (FR)", + "last_update": "2025-05-09T12:32:15Z", + "link": "https://www.winamax.fr/en/sports-betting/match/59291247", + "sid": "59291247", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:15Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.21, + "link": null, + "sid": "1401357897", + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 3.05, + "link": null, + "sid": "1401357898", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betclic", + "title": "Betclic", + "last_update": "2025-05-09T12:31:06Z", + "link": "https://www.betclic.fr/boxe-sboxing/combats-pour-le-titre-mondial-c15872/fernando-martinez-kazuto-ioka-m739155740299264", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:31:06Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.19, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 3.7, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490693589", + "sid": "490693589", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.25, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 4.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/fernando-daniel-martinez-kazuto-ioka-202505110600", + "sid": "15064746", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.2, + "link": null, + "sid": "1905099784", + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 4.25, + "link": null, + "sid": "1905099786", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/254782157-fernando-daniel-martinez-kazuto-ioka", + "sid": "254782157", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.31, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 3.88, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.5, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/mart%C3%ADnez%2C-fernando-ioka%2C-kazuto/SBTE_2_1023593548", + "sid": "SBTE_2_1023593548", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.28, + "link": null, + "sid": "SBTS_2_3732156070", + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 3.9, + "link": null, + "sid": "SBTS_2_3732156073", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "SBTS_2_3732156071", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023593548", + "sid": "1023593548", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.28, + "link": null, + "sid": "3732156070", + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 3.9, + "link": null, + "sid": "3732156073", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "3732156071", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/mart%C3%ADnez%2C-fernando-ioka%2C-kazuto/SBTE_2_1023593548", + "sid": "SBTE_2_1023593548", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.28, + "link": null, + "sid": "SBTS_2_3732156070", + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 3.9, + "link": null, + "sid": "SBTS_2_3732156073", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "SBTS_2_3732156071", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023593548", + "sid": "1023593548", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.26, + "link": null, + "sid": "3732156070", + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 3.6, + "link": null, + "sid": "3732156073", + "bet_limit": null + }, + { + "name": "Draw", + "price": 12.0, + "link": null, + "sid": "3732156071", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.26, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 3.8, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490693589", + "sid": "490693589", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.25, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 4.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023593548", + "sid": "1023593548", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.28, + "link": null, + "sid": "3732156070", + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 3.9, + "link": null, + "sid": "3732156073", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "3732156071", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "parionssport_fr", + "title": "Parions Sport (FR)", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.enligne.parionssport.fdj.fr/paris-boxe/international/combats/3205826/f.martinez-vs-k.ioka", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.27, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 3.55, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/fernando-daniel-martinez-v-kazuto-ioka-34161026", + "sid": "34161026", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.24, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.492379925&selectionId=11593317", + "sid": "11593317", + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 3.8, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.492379925&selectionId=12239920", + "sid": "12239920", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betfair_ex_eu", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34161026", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.241442761", + "sid": "1.241442761", + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.23, + "link": null, + "sid": "11593317", + "bet_limit": 195 + }, + { + "name": "Kazuto Ioka", + "price": 3.6, + "link": null, + "sid": "12239920", + "bet_limit": 12 + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "31162", + "bet_limit": 18 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.38, + "link": null, + "sid": "11593317", + "bet_limit": 11 + }, + { + "name": "Kazuto Ioka", + "price": 8.2, + "link": null, + "sid": "12239920", + "bet_limit": 30 + }, + { + "name": "Draw", + "price": 1000.0, + "link": null, + "sid": "31162", + "bet_limit": 4 + } + ] + } + ] + }, + { + "key": "betfair_ex_uk", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34161026", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.241442761", + "sid": "1.241442761", + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.23, + "link": null, + "sid": "11593317", + "bet_limit": 165 + }, + { + "name": "Kazuto Ioka", + "price": 3.6, + "link": null, + "sid": "12239920", + "bet_limit": 10 + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "31162", + "bet_limit": 15 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.38, + "link": null, + "sid": "11593317", + "bet_limit": 10 + }, + { + "name": "Kazuto Ioka", + "price": 8.2, + "link": null, + "sid": "12239920", + "bet_limit": 26 + }, + { + "name": "Draw", + "price": 1000.0, + "link": null, + "sid": "31162", + "bet_limit": 4 + } + ] + } + ] + }, + { + "key": "pinnacle", + "title": "Pinnacle", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.pinnacle.com/en/boxing/boxing-matches/kazuto-ioka-vs-fernando-martinez/1609291610/", + "sid": "1609291610", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.24, + "link": null, + "sid": null, + "bet_limit": 250 + }, + { + "name": "Kazuto Ioka", + "price": 4.41, + "link": null, + "sid": null, + "bet_limit": 250 + } + ] + } + ] + }, + { + "key": "coral", + "title": "Coral", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.coral.co.uk/event/boxing/boxing/upcoming-fights/fernando-daniel-martinez-v-kazuto-ioka/37351963/main-markets", + "sid": "37351963", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.33, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 3.5, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "sport888", + "title": "888sport", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.888sport.com/boxing/boxing/boxing-bouts/fernando-daniel-martinez-v-kazuto-ioka-e-5768893/", + "sid": "5768893", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.25, + "link": null, + "sid": "16387175003", + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 3.8, + "link": null, + "sid": "16387175002", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "16387175004", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betsson", + "title": "Betsson", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betsson.com/en/sportsbook/boxing/international/upcoming-fights?tab=liveAndUpcoming&eventId=f-OY4JTa4MfUqTmnA28W_HXg&eti=0&fs=true", + "sid": "f-OY4JTa4MfUqTmnA28W_HXg", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.22, + "link": null, + "sid": "s-m-f-OY4JTa4MfUqTmnA28W_HXg-MW2W-home", + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 3.8, + "link": null, + "sid": "s-m-f-OY4JTa4MfUqTmnA28W_HXg-MW2W-away", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "nordicbet", + "title": "Nordic Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.nordicbet.com/en/sportsbook/boxing/international/upcoming-fights/fernando-daniel-martinez-kazuto-ioka", + "sid": "f-OY4JTa4MfUqTmnA28W_HXg", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.22, + "link": null, + "sid": "s-m-f-OY4JTa4MfUqTmnA28W_HXg-MW2W-home", + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 3.8, + "link": null, + "sid": "s-m-f-OY4JTa4MfUqTmnA28W_HXg-MW2W-away", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "everygame", + "title": "Everygame", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://sports.everygame.eu/en/Bets/Boxing-UFC/Boxing/Kazuto-Ioka-v-Fernando-Martinez/2648802", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.28, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 3.9, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "afd8a94d40265bfb6654523ae0cca986", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-17T21:00:00Z", + "home_team": "Johnny Fisher", + "away_team": "David Allen", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32102992", + "sid": "32102992", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Allen", + "price": 3.15, + "link": "https://sportsbook.draftkings.com/event/32102992?outcomes=0ML79412761_3", + "sid": "0ML79412761_3", + "bet_limit": null + }, + { + "name": "Johnny Fisher", + "price": 1.36, + "link": "https://sportsbook.draftkings.com/event/32102992?outcomes=0ML79412761_1", + "sid": "0ML79412761_1", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "sport888", + "title": "888sport", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.888sport.com/boxing/boxing/boxing-bouts/johnny-fisher-v-david-allen-e-5605435/", + "sid": "5605435", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Allen", + "price": 3.0, + "link": null, + "sid": "16360498038", + "bet_limit": null + }, + { + "name": "Johnny Fisher", + "price": 1.44, + "link": null, + "sid": "16360498037", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "16360498036", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/252116271-johnny-fisher-david-allen", + "sid": "252116271", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Allen", + "price": 3.46, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Johnny Fisher", + "price": 1.37, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.5, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Allen", + "price": 3.2, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Johnny Fisher", + "price": 1.36, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44344204/sport/boxing/international-matchups/2025/05/17/21-00/johnny-fisher-vs-david-allen", + "sid": "44344204", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Allen", + "price": 2.92, + "link": null, + "sid": "270163992", + "bet_limit": 93 + }, + { + "name": "Johnny Fisher", + "price": 1.32, + "link": null, + "sid": "270163991", + "bet_limit": 562 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Allen", + "price": 4.1, + "link": null, + "sid": "270163992", + "bet_limit": 179 + }, + { + "name": "Johnny Fisher", + "price": 1.52, + "link": null, + "sid": "270163991", + "bet_limit": 179 + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/johnny-fisher-v-david-allen-34103676", + "sid": "34103676", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Allen", + "price": 2.92, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.485575496&selectionId=10966865", + "sid": "10966865", + "bet_limit": null + }, + { + "name": "Johnny Fisher", + "price": 1.38, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.485575496&selectionId=38222634", + "sid": "38222634", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betfair_ex_uk", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34103676", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.240585435", + "sid": "1.240585435", + "outcomes": [ + { + "name": "David Allen", + "price": 3.05, + "link": null, + "sid": "10966865", + "bet_limit": 307 + }, + { + "name": "Johnny Fisher", + "price": 1.48, + "link": null, + "sid": "38222635", + "bet_limit": 10 + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "31162", + "bet_limit": 10 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Allen", + "price": 3.7, + "link": null, + "sid": "10966865", + "bet_limit": 20 + }, + { + "name": "Johnny Fisher", + "price": 1.51, + "link": null, + "sid": "38222635", + "bet_limit": 600 + }, + { + "name": "Draw", + "price": 100.0, + "link": null, + "sid": "31162", + "bet_limit": 10 + } + ] + } + ] + }, + { + "key": "betfair_ex_eu", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34103676", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.240585435", + "sid": "1.240585435", + "outcomes": [ + { + "name": "David Allen", + "price": 3.05, + "link": null, + "sid": "10966865", + "bet_limit": 362 + }, + { + "name": "Johnny Fisher", + "price": 1.48, + "link": null, + "sid": "38222635", + "bet_limit": 12 + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "31162", + "bet_limit": 12 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Allen", + "price": 3.7, + "link": null, + "sid": "10966865", + "bet_limit": 24 + }, + { + "name": "Johnny Fisher", + "price": 1.51, + "link": null, + "sid": "38222635", + "bet_limit": 708 + }, + { + "name": "Draw", + "price": 100.0, + "link": null, + "sid": "31162", + "bet_limit": 12 + } + ] + } + ] + }, + { + "key": "betsson", + "title": "Betsson", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betsson.com/en/sportsbook/boxing/international/upcoming-fights?tab=liveAndUpcoming&eventId=f-omEk6UQXEkC2oVFGDGOgVQ&eti=0&fs=true", + "sid": "f-omEk6UQXEkC2oVFGDGOgVQ", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Allen", + "price": 2.88, + "link": null, + "sid": "s-m-f-omEk6UQXEkC2oVFGDGOgVQ-MW2W-away", + "bet_limit": null + }, + { + "name": "Johnny Fisher", + "price": 1.37, + "link": null, + "sid": "s-m-f-omEk6UQXEkC2oVFGDGOgVQ-MW2W-home", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "nordicbet", + "title": "Nordic Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.nordicbet.com/en/sportsbook/boxing/international/upcoming-fights/johnny-fisher-david-allen", + "sid": "f-omEk6UQXEkC2oVFGDGOgVQ", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Allen", + "price": 2.88, + "link": null, + "sid": "s-m-f-omEk6UQXEkC2oVFGDGOgVQ-MW2W-away", + "bet_limit": null + }, + { + "name": "Johnny Fisher", + "price": 1.37, + "link": null, + "sid": "s-m-f-omEk6UQXEkC2oVFGDGOgVQ-MW2W-home", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "coral", + "title": "Coral", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.coral.co.uk/event/boxing/boxing/upcoming-fights/johnny-fisher-v-david-allen/37195084/main-markets", + "sid": "37195084", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Allen", + "price": 3.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Johnny Fisher", + "price": 1.4, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/johnny-fisher-david-allen-202505171700", + "sid": "14971738", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Allen", + "price": 3.1, + "link": null, + "sid": "1906412636", + "bet_limit": null + }, + { + "name": "Johnny Fisher", + "price": 1.35, + "link": null, + "sid": "1906412635", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15353011", + "sid": "15353011", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Allen", + "price": 3.0, + "link": null, + "sid": "1758036694", + "bet_limit": null + }, + { + "name": "Johnny Fisher", + "price": 1.4, + "link": null, + "sid": "1758036692", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "1758036693", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "45d7ed379a18719f9880bb06bbee094b", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-24T19:34:00Z", + "home_team": "Josh Taylor", + "away_team": "Ekow Essuman", + "bookmakers": [ + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023572551", + "sid": "1023572551", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.1, + "link": null, + "sid": "3725419090", + "bet_limit": null + }, + { + "name": "Josh Taylor", + "price": 1.36, + "link": null, + "sid": "3725419088", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3725419089", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/251814687-josh-taylor-ekow-essuman", + "sid": "251814687", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.27, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Josh Taylor", + "price": 1.37, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 18.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023572551", + "sid": "1023572551", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 2.9, + "link": null, + "sid": "3725419090", + "bet_limit": null + }, + { + "name": "Josh Taylor", + "price": 1.35, + "link": null, + "sid": "3725419088", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3725419089", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/taylor%2C-josh-essuman%2C-ekow/SBTE_2_1023572551", + "sid": "SBTE_2_1023572551", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.1, + "link": null, + "sid": "SBTS_2_3725419090", + "bet_limit": null + }, + { + "name": "Josh Taylor", + "price": 1.37, + "link": null, + "sid": "SBTS_2_3725419088", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3725419089", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023572551", + "sid": "1023572551", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.1, + "link": null, + "sid": "3725419090", + "bet_limit": null + }, + { + "name": "Josh Taylor", + "price": 1.36, + "link": null, + "sid": "3725419088", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3725419089", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/taylor%2C-josh-essuman%2C-ekow/SBTE_2_1023572551", + "sid": "SBTE_2_1023572551", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.1, + "link": null, + "sid": "SBTS_2_3725419090", + "bet_limit": null + }, + { + "name": "Josh Taylor", + "price": 1.37, + "link": null, + "sid": "SBTS_2_3725419088", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3725419089", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.35, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Josh Taylor", + "price": 1.34, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/josh-taylor-v-ekow-essuman-34025848", + "sid": "34025848", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.4, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.479186198&selectionId=35829145", + "sid": "35829145", + "bet_limit": null + }, + { + "name": "Josh Taylor", + "price": 1.3, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.479186198&selectionId=10848620", + "sid": "10848620", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44376131/sport/boxing/international-matchups/2025/05/24/21-00/josh-taylor-vs-ekow-essuman", + "sid": "44376131", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.05, + "link": null, + "sid": "275636546", + "bet_limit": 87 + }, + { + "name": "Josh Taylor", + "price": 1.28, + "link": null, + "sid": "275636545", + "bet_limit": 642 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 4.5, + "link": null, + "sid": "275636546", + "bet_limit": 179 + }, + { + "name": "Josh Taylor", + "price": 1.49, + "link": null, + "sid": "275636545", + "bet_limit": 179 + } + ] + } + ] + }, + { + "key": "coral", + "title": "Coral", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.coral.co.uk/event/boxing/boxing/upcoming-fights/josh-taylor-v-ekow-essuman/37195104/main-markets", + "sid": "37195104", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.5, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Josh Taylor", + "price": 1.33, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betfair_ex_eu", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34025848", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.240485354", + "sid": "1.240485354", + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.15, + "link": null, + "sid": "35829145", + "bet_limit": 13 + }, + { + "name": "Josh Taylor", + "price": 1.3, + "link": null, + "sid": "10848620", + "bet_limit": 116 + }, + { + "name": "Draw", + "price": 1.01, + "link": null, + "sid": "31162", + "bet_limit": 18 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 990.0, + "link": null, + "sid": "35829145", + "bet_limit": 17 + }, + { + "name": "Josh Taylor", + "price": 1.47, + "link": null, + "sid": "10848620", + "bet_limit": 32 + }, + { + "name": "Draw", + "price": 1000.0, + "link": null, + "sid": "31162", + "bet_limit": 11 + } + ] + } + ] + }, + { + "key": "betfair_ex_uk", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34025848", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.240485354", + "sid": "1.240485354", + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.15, + "link": null, + "sid": "35829145", + "bet_limit": 11 + }, + { + "name": "Josh Taylor", + "price": 1.3, + "link": null, + "sid": "10848620", + "bet_limit": 99 + }, + { + "name": "Draw", + "price": 1.01, + "link": null, + "sid": "31162", + "bet_limit": 15 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 990.0, + "link": null, + "sid": "35829145", + "bet_limit": 15 + }, + { + "name": "Josh Taylor", + "price": 1.47, + "link": null, + "sid": "10848620", + "bet_limit": 27 + }, + { + "name": "Draw", + "price": 1000.0, + "link": null, + "sid": "31162", + "bet_limit": 9 + } + ] + } + ] + }, + { + "key": "nordicbet", + "title": "Nordic Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.nordicbet.com/en/sportsbook/boxing/international/upcoming-fights/josh-taylor-ekow-essuman", + "sid": "f-_G0Lm4I0dkewejmCGv4Msw", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.4, + "link": null, + "sid": "s-m-f-_G0Lm4I0dkewejmCGv4Msw-MW2W-away", + "bet_limit": null + }, + { + "name": "Josh Taylor", + "price": 1.27, + "link": null, + "sid": "s-m-f-_G0Lm4I0dkewejmCGv4Msw-MW2W-home", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "sport888", + "title": "888sport", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.888sport.com/boxing/boxing/boxing-bouts/josh-taylor-v-ekow-essuman-e-5718212/", + "sid": "5718212", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.6, + "link": null, + "sid": "16377694178", + "bet_limit": null + }, + { + "name": "Josh Taylor", + "price": 1.33, + "link": null, + "sid": "16377694176", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "16377694177", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/josh-taylor-ekow-essuman-202505241700", + "sid": "14960765", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.25, + "link": null, + "sid": "1913984452", + "bet_limit": null + }, + { + "name": "Josh Taylor", + "price": 1.32, + "link": null, + "sid": "1913984451", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_eu", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": "1023572551", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.1, + "link": null, + "sid": "3725419090", + "bet_limit": null + }, + { + "name": "Josh Taylor", + "price": 1.36, + "link": null, + "sid": "3725419088", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3725419089", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betrivers", + "title": "BetRivers", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023572551", + "sid": "1023572551", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.05, + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023572551?coupon={pickType}|3725419092|{wagerAmount}", + "sid": "3725419092", + "bet_limit": null + }, + { + "name": "Josh Taylor", + "price": 1.35, + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023572551?coupon={pickType}|3725419091|{wagerAmount}", + "sid": "3725419091", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betsson", + "title": "Betsson", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betsson.com/en/sportsbook/boxing/international/upcoming-fights?tab=liveAndUpcoming&eventId=f-_G0Lm4I0dkewejmCGv4Msw&eti=0&fs=true", + "sid": "f-_G0Lm4I0dkewejmCGv4Msw", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.4, + "link": null, + "sid": "s-m-f-_G0Lm4I0dkewejmCGv4Msw-MW2W-away", + "bet_limit": null + }, + { + "name": "Josh Taylor", + "price": 1.27, + "link": null, + "sid": "s-m-f-_G0Lm4I0dkewejmCGv4Msw-MW2W-home", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15353019", + "sid": "15353019", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.4, + "link": null, + "sid": "1758037231", + "bet_limit": null + }, + { + "name": "Josh Taylor", + "price": 1.33, + "link": null, + "sid": "1758037229", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "1758037230", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263493", + "sid": "32263493", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.2, + "link": "https://sportsbook.draftkings.com/event/32263493?outcomes=0ML79849278_3", + "sid": "0ML79849278_3", + "bet_limit": null + }, + { + "name": "Josh Taylor", + "price": 1.34, + "link": "https://sportsbook.draftkings.com/event/32263493?outcomes=0ML79849278_1", + "sid": "0ML79849278_1", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "4bafa99acd7cf602a8582f76432d0950", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-06-01T02:00:00Z", + "home_team": "Jermell Charlo", + "away_team": "Thomas LaManna", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32215386", + "sid": "32215386", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jermell Charlo", + "price": 1.07, + "link": "https://sportsbook.draftkings.com/event/32215386?outcomes=0ML79713722_1", + "sid": "0ML79713722_1", + "bet_limit": null + }, + { + "name": "Thomas LaManna", + "price": 8.5, + "link": "https://sportsbook.draftkings.com/event/32215386?outcomes=0ML79713722_3", + "sid": "0ML79713722_3", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490672583", + "sid": "490672583", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jermell Charlo", + "price": 1.07, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Thomas LaManna", + "price": 9.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490672583", + "sid": "490672583", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jermell Charlo", + "price": 1.07, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Thomas LaManna", + "price": 9.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44393832/sport/boxing/international-matchups/2025/06/01/02-00/jermall-charlo-vs-thomas-lamanna", + "sid": "44393832", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jermell Charlo", + "price": 1.05, + "link": null, + "sid": "278230173", + "bet_limit": 3601 + }, + { + "name": "Thomas LaManna", + "price": 6.4, + "link": null, + "sid": "278230174", + "bet_limit": 33 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jermell Charlo", + "price": 1.19, + "link": null, + "sid": "278230173", + "bet_limit": 179 + }, + { + "name": "Thomas LaManna", + "price": 17.99, + "link": null, + "sid": "278230174", + "bet_limit": 179 + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jermell Charlo", + "price": 1.06, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Thomas LaManna", + "price": 8.5, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/jermall-charlo-v-thomas-lamanna-34186481", + "sid": "34186481", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jermell Charlo", + "price": 1.09, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.495322948&selectionId=8351188", + "sid": "8351188", + "bet_limit": null + }, + { + "name": "Thomas LaManna", + "price": 7.2, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.495322948&selectionId=70149289", + "sid": "70149289", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "73623e3bb77fef1abc09170f623c14e6", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-06-01T03:00:00Z", + "home_team": "Caleb Plant", + "away_team": "Jose Armando Resendiz", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32215385", + "sid": "32215385", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Caleb Plant", + "price": 1.05, + "link": "https://sportsbook.draftkings.com/event/32215385?outcomes=0ML79713721_1", + "sid": "0ML79713721_1", + "bet_limit": null + }, + { + "name": "Jose Armando Resendiz", + "price": 10.0, + "link": "https://sportsbook.draftkings.com/event/32215385?outcomes=0ML79713721_3", + "sid": "0ML79713721_3", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490672584", + "sid": "490672584", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Caleb Plant", + "price": 1.04, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Jose Armando Resendiz", + "price": 11.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490672584", + "sid": "490672584", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Caleb Plant", + "price": 1.04, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Jose Armando Resendiz", + "price": 11.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44393833/sport/boxing/international-matchups/2025/06/01/03-00/caleb-plant-vs-jose-armando-resendiz", + "sid": "44393833", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Caleb Plant", + "price": 1.03, + "link": null, + "sid": "278230339", + "bet_limit": 6005 + }, + { + "name": "Jose Armando Resendiz", + "price": 7.4, + "link": null, + "sid": "278230340", + "bet_limit": 28 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Caleb Plant", + "price": 1.16, + "link": null, + "sid": "278230339", + "bet_limit": 179 + }, + { + "name": "Jose Armando Resendiz", + "price": 32.05, + "link": null, + "sid": "278230340", + "bet_limit": 179 + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/caleb-plant-v-jose-armando-resendiz-34186480", + "sid": "34186480", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Caleb Plant", + "price": 1.05, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.495322946&selectionId=17253398", + "sid": "17253398", + "bet_limit": null + }, + { + "name": "Jose Armando Resendiz", + "price": 11.0, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.495322946&selectionId=53163606", + "sid": "53163606", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "5631678f8814e4bca05432180315d058", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-06-07T21:00:00Z", + "home_team": "Fabio Wardley", + "away_team": "Justis Huni", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263494", + "sid": "32263494", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fabio Wardley", + "price": 1.28, + "link": "https://sportsbook.draftkings.com/event/32263494?outcomes=0ML79849279_1", + "sid": "0ML79849279_1", + "bet_limit": null + }, + { + "name": "Justis Huni", + "price": 3.65, + "link": "https://sportsbook.draftkings.com/event/32263494?outcomes=0ML79849279_3", + "sid": "0ML79849279_3", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fabio Wardley", + "price": 1.27, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Justis Huni", + "price": 3.7, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44425533/sport/boxing/international-matchups/2025/06/07/23-00/fabio-wardley-vs-justis-huni", + "sid": "44425533", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fabio Wardley", + "price": 1.24, + "link": null, + "sid": "282831180", + "bet_limit": 750 + }, + { + "name": "Justis Huni", + "price": 3.35, + "link": null, + "sid": "282831181", + "bet_limit": 76 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fabio Wardley", + "price": 1.43, + "link": null, + "sid": "282831180", + "bet_limit": 179 + }, + { + "name": "Justis Huni", + "price": 5.1, + "link": null, + "sid": "282831181", + "bet_limit": 179 + } + ] + } + ] + } + ] + }, + { + "id": "614b9f014530b578a056f22bdf906c9e", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-06-08T02:00:00Z", + "home_team": "Abdullah Mason", + "away_team": "Jeremia Nakathila", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32215388", + "sid": "32215388", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Abdullah Mason", + "price": 1.05, + "link": "https://sportsbook.draftkings.com/event/32215388?outcomes=0ML79713724_1", + "sid": "0ML79713724_1", + "bet_limit": null + }, + { + "name": "Jeremia Nakathila", + "price": 10.0, + "link": "https://sportsbook.draftkings.com/event/32215388?outcomes=0ML79713724_3", + "sid": "0ML79713724_3", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44399005/sport/boxing/international-matchups/2025/06/08/02-00/abdullah-mason-vs-jeremiah-nakathila", + "sid": "44399005", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Abdullah Mason", + "price": 1.03, + "link": null, + "sid": "279247904", + "bet_limit": 6005 + }, + { + "name": "Jeremia Nakathila", + "price": 7.4, + "link": null, + "sid": "279247905", + "bet_limit": 28 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Abdullah Mason", + "price": 1.16, + "link": null, + "sid": "279247904", + "bet_limit": 179 + }, + { + "name": "Jeremia Nakathila", + "price": 32.05, + "link": null, + "sid": "279247905", + "bet_limit": 179 + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Abdullah Mason", + "price": 1.05, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Jeremia Nakathila", + "price": 9.5, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/abdullah-mason-v-jeremia-nakathila-34230585", + "sid": "34230585", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Abdullah Mason", + "price": 1.05, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.499012989&selectionId=56066340", + "sid": "56066340", + "bet_limit": null + }, + { + "name": "Jeremia Nakathila", + "price": 8.3, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.499012989&selectionId=43672604", + "sid": "43672604", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "e36bce3bd3ef72781f1497917ba3e0b0", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-06-08T03:00:00Z", + "home_team": "Keyshawn Davis", + "away_team": "Edwin De Los Santos", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32215387", + "sid": "32215387", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Edwin De Los Santos", + "price": 6.0, + "link": "https://sportsbook.draftkings.com/event/32215387?outcomes=0ML79713723_3", + "sid": "0ML79713723_3", + "bet_limit": null + }, + { + "name": "Keyshawn Davis", + "price": 1.11, + "link": "https://sportsbook.draftkings.com/event/32215387?outcomes=0ML79713723_1", + "sid": "0ML79713723_1", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44399004/sport/boxing/international-matchups/2025/06/08/03-00/keyshawn-davis-vs-edwin-de-los-santos", + "sid": "44399004", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Edwin De Los Santos", + "price": 5.0, + "link": null, + "sid": "279247899", + "bet_limit": 45 + }, + { + "name": "Keyshawn Davis", + "price": 1.11, + "link": null, + "sid": "279247898", + "bet_limit": 1636 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Edwin De Los Santos", + "price": 10.5, + "link": null, + "sid": "279247899", + "bet_limit": 179 + }, + { + "name": "Keyshawn Davis", + "price": 1.25, + "link": null, + "sid": "279247898", + "bet_limit": 180 + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Edwin De Los Santos", + "price": 5.75, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Keyshawn Davis", + "price": 1.13, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betclic", + "title": "Betclic", + "last_update": "2025-05-09T12:31:06Z", + "link": "https://www.betclic.fr/boxe-sboxing/combats-pour-le-titre-mondial-c15872/keyshawn-davis-edwin-de-los-santos-m759033873448960", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:31:06Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Edwin De Los Santos", + "price": 6.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Keyshawn Davis", + "price": 1.05, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/keyshawn-davis-v-edwin-de-los-santos-34227349", + "sid": "34227349", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Edwin De Los Santos", + "price": 7.2, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.498771972&selectionId=42272153", + "sid": "42272153", + "bet_limit": null + }, + { + "name": "Keyshawn Davis", + "price": 1.09, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.498771972&selectionId=39371847", + "sid": "39371847", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "coral", + "title": "Coral", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.coral.co.uk/event/boxing/boxing/upcoming-fights/keyshawn-davis-v-edwin-de-los-santos/37195113/main-markets", + "sid": "37195113", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Edwin De Los Santos", + "price": 7.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Keyshawn Davis", + "price": 1.1, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 26.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "25fa49e760af20c2f4ebf9192484f503", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-06-09T10:00:00Z", + "home_team": "Junto Nakatani", + "away_team": "Ryosuke Nishida", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32215391", + "sid": "32215391", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Junto Nakatani", + "price": 1.15, + "link": "https://sportsbook.draftkings.com/event/32215391?outcomes=0ML79713727_1", + "sid": "0ML79713727_1", + "bet_limit": null + }, + { + "name": "Ryosuke Nishida", + "price": 5.25, + "link": "https://sportsbook.draftkings.com/event/32215391?outcomes=0ML79713727_3", + "sid": "0ML79713727_3", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44399928/sport/boxing/international-matchups/2025/06/09/10-00/junto-nakatani-vs-ryosuke-nishida", + "sid": "44399928", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Junto Nakatani", + "price": 1.13, + "link": null, + "sid": "279350952", + "bet_limit": 1385 + }, + { + "name": "Ryosuke Nishida", + "price": 4.6, + "link": null, + "sid": "279350953", + "bet_limit": 50 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Junto Nakatani", + "price": 1.28, + "link": null, + "sid": "279350952", + "bet_limit": 179 + }, + { + "name": "Ryosuke Nishida", + "price": 8.6, + "link": null, + "sid": "279350953", + "bet_limit": 179 + } + ] + } + ] + }, + { + "key": "winamax_fr", + "title": "Winamax (FR)", + "last_update": "2025-05-09T12:32:15Z", + "link": "https://www.winamax.fr/en/sports-betting/match/59994135", + "sid": "59994135", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:15Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Junto Nakatani", + "price": 1.1, + "link": null, + "sid": "1403423813", + "bet_limit": null + }, + { + "name": "Ryosuke Nishida", + "price": 4.0, + "link": null, + "sid": "1403423814", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "12ec9c60fc42d64a87ab61eb2a46c412", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-06-15T03:00:00Z", + "home_team": "Richardson Hitchins", + "away_team": "George Kambosos Jr", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263495", + "sid": "32263495", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "George Kambosos Jr", + "price": 8.0, + "link": "https://sportsbook.draftkings.com/event/32263495?outcomes=0ML79849280_3", + "sid": "0ML79849280_3", + "bet_limit": null + }, + { + "name": "Richardson Hitchins", + "price": 1.07, + "link": "https://sportsbook.draftkings.com/event/32263495?outcomes=0ML79849280_1", + "sid": "0ML79849280_1", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44399906/sport/boxing/international-matchups/2025/06/15/02-00/richardson-hitchins-vs-george-kambosos-jr", + "sid": "44399906", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "George Kambosos Jr", + "price": 6.2, + "link": null, + "sid": "279350440", + "bet_limit": 34 + }, + { + "name": "Richardson Hitchins", + "price": 1.05, + "link": null, + "sid": "279350439", + "bet_limit": 3601 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "George Kambosos Jr", + "price": 17.99, + "link": null, + "sid": "279350440", + "bet_limit": 179 + }, + { + "name": "Richardson Hitchins", + "price": 1.19, + "link": null, + "sid": "279350439", + "bet_limit": 179 + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "George Kambosos Jr", + "price": 8.3, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Richardson Hitchins", + "price": 1.07, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betclic", + "title": "Betclic", + "last_update": "2025-05-09T12:31:06Z", + "link": "https://www.betclic.fr/boxe-sboxing/combats-pour-le-titre-mondial-c15872/richardson-hitchins-george-kambosos-jr-m770790538874890", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:31:06Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "George Kambosos Jr", + "price": 7.5, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Richardson Hitchins", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/richardson-hitchins-v-george-kambosos-jr-34151868", + "sid": "34151868", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "George Kambosos Jr", + "price": 7.2, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.491344786&selectionId=56615692", + "sid": "56615692", + "bet_limit": null + }, + { + "name": "Richardson Hitchins", + "price": 1.09, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.491344786&selectionId=11424341", + "sid": "11424341", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "da95e398be13e45b9ba9f59acc3a5e6e", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-06-19T11:00:00Z", + "home_team": "Brian Norman Jr", + "away_team": "Jin Sasaki", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263496", + "sid": "32263496", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Brian Norman Jr", + "price": 1.28, + "link": "https://sportsbook.draftkings.com/event/32263496?outcomes=0ML79849281_1", + "sid": "0ML79849281_1", + "bet_limit": null + }, + { + "name": "Jin Sasaki", + "price": 3.7, + "link": "https://sportsbook.draftkings.com/event/32263496?outcomes=0ML79849281_3", + "sid": "0ML79849281_3", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Brian Norman Jr", + "price": 1.27, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Jin Sasaki", + "price": 3.7, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betclic", + "title": "Betclic", + "last_update": "2025-05-09T12:31:06Z", + "link": "https://www.betclic.fr/boxe-sboxing/combats-pour-le-titre-mondial-c15872/brian-norman-jr-jin-sasaki-m776436855521280", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:31:06Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Brian Norman Jr", + "price": 1.2, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Jin Sasaki", + "price": 3.5, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "0fb22f110c8532f32f952b3052efd50d", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-06-29T00:00:00Z", + "home_team": "Jake Paul", + "away_team": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "bookmakers": [ + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023472097", + "sid": "1023472097", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.16, + "link": null, + "sid": "3716531602", + "bet_limit": null + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 5.4, + "link": null, + "sid": "3716531605", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "3716531604", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023472097", + "sid": "1023472097", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.15, + "link": null, + "sid": "3716531602", + "bet_limit": null + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 4.8, + "link": null, + "sid": "3716531605", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "3716531604", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023472097", + "sid": "1023472097", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.16, + "link": null, + "sid": "3716531602", + "bet_limit": null + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 5.4, + "link": null, + "sid": "3716531605", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "3716531604", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/paul%2C-jake-ch%C3%A1vez-jr.%2C-julio-c%C3%A9sar/SBTE_2_1023472097", + "sid": "SBTE_2_1023472097", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.16, + "link": null, + "sid": "SBTS_2_3716531602", + "bet_limit": null + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 5.4, + "link": null, + "sid": "SBTS_2_3716531605", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "SBTS_2_3716531604", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/paul%2C-jake-ch%C3%A1vez-jr.%2C-julio-c%C3%A9sar/SBTE_2_1023472097", + "sid": "SBTE_2_1023472097", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.16, + "link": null, + "sid": "SBTS_2_3716531602", + "bet_limit": null + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 5.4, + "link": null, + "sid": "SBTS_2_3716531605", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "SBTS_2_3716531604", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490678150", + "sid": "490678150", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.12, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 6.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490678150", + "sid": "490678150", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.12, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 6.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/jake-paul-julio-cesar-chavez-jr-202506282300", + "sid": "15177958", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.14, + "link": null, + "sid": "1908550560", + "bet_limit": null + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 5.25, + "link": null, + "sid": "1908550561", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betanysports", + "title": "BetAnySports", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.12, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 5.5, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.13, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 5.75, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betfair_ex_uk", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34233729", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.242595682", + "sid": "1.242595682", + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.18, + "link": null, + "sid": "20270543", + "bet_limit": 116 + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 5.1, + "link": null, + "sid": "2826902", + "bet_limit": 16 + }, + { + "name": "Draw", + "price": 20.0, + "link": null, + "sid": "31162", + "bet_limit": 18 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.23, + "link": null, + "sid": "20270543", + "bet_limit": 19 + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 9.8, + "link": null, + "sid": "2826902", + "bet_limit": 14 + }, + { + "name": "Draw", + "price": 60.0, + "link": null, + "sid": "31162", + "bet_limit": 22 + } + ] + } + ] + }, + { + "key": "betfair_ex_eu", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34233729", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.242595682", + "sid": "1.242595682", + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.18, + "link": null, + "sid": "20270543", + "bet_limit": 137 + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 5.1, + "link": null, + "sid": "2826902", + "bet_limit": 20 + }, + { + "name": "Draw", + "price": 20.0, + "link": null, + "sid": "31162", + "bet_limit": 22 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.23, + "link": null, + "sid": "20270543", + "bet_limit": 23 + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 9.8, + "link": null, + "sid": "2826902", + "bet_limit": 16 + }, + { + "name": "Draw", + "price": 60.0, + "link": null, + "sid": "31162", + "bet_limit": 26 + } + ] + } + ] + }, + { + "key": "coral", + "title": "Coral", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.coral.co.uk/event/boxing/boxing/upcoming-fights/jake-paul-v-julio-cesar-chavez-jr/37195119/main-markets", + "sid": "37195119", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.17, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 5.5, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_eu", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": "1023472097", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.16, + "link": null, + "sid": "3716531602", + "bet_limit": null + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 5.4, + "link": null, + "sid": "3716531605", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "3716531604", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betrivers", + "title": "BetRivers", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023472097", + "sid": "1023472097", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.15, + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023472097?coupon={pickType}|3716531601|{wagerAmount}", + "sid": "3716531601", + "bet_limit": null + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 5.3, + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023472097?coupon={pickType}|3716531603|{wagerAmount}", + "sid": "3716531603", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44410766/sport/boxing/international-matchups/2025/06/28/20-00/jake-paul-vs-julio-cesar-chavez-jr", + "sid": "44410766", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.11, + "link": null, + "sid": "281041862", + "bet_limit": 1636 + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 4.8, + "link": null, + "sid": "281041863", + "bet_limit": 47 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.25, + "link": null, + "sid": "281041862", + "bet_limit": 200 + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 9.6, + "link": null, + "sid": "281041863", + "bet_limit": 179 + } + ] + } + ] + } + ] + }, + { + "id": "d776e0f16e0ac2daeeae2b5651b41915", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-06-29T02:00:00Z", + "home_team": "Gilberto Ramirez", + "away_team": "Yuniel Dorticos", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32215396", + "sid": "32215396", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Gilberto Ramirez", + "price": 1.15, + "link": "https://sportsbook.draftkings.com/event/32215396?outcomes=0ML79713733_1", + "sid": "0ML79713733_1", + "bet_limit": null + }, + { + "name": "Yuniel Dorticos", + "price": 5.25, + "link": "https://sportsbook.draftkings.com/event/32215396?outcomes=0ML79713733_3", + "sid": "0ML79713733_3", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betclic", + "title": "Betclic", + "last_update": "2025-05-09T12:31:06Z", + "link": "https://www.betclic.fr/boxe-sboxing/combats-pour-le-titre-mondial-c15872/gilberto-ramirez-yuniel-dorticos-m762623798145024", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:31:06Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Gilberto Ramirez", + "price": 1.05, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Yuniel Dorticos", + "price": 6.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/gilberto-ramirez-v-yuniel-dorticos-34029517", + "sid": "34029517", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Gilberto Ramirez", + "price": 1.13, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.479420738&selectionId=10836412", + "sid": "10836412", + "bet_limit": null + }, + { + "name": "Yuniel Dorticos", + "price": 5.7, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.479420738&selectionId=27635759", + "sid": "27635759", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "parionssport_fr", + "title": "Parions Sport (FR)", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.enligne.parionssport.fdj.fr/paris-boxe/international/combats/3204819/g.ramirez-vs-y.dorticos", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Gilberto Ramirez", + "price": 1.15, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Yuniel Dorticos", + "price": 5.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "winamax_fr", + "title": "Winamax (FR)", + "last_update": "2025-05-09T12:32:15Z", + "link": "https://www.winamax.fr/en/sports-betting/match/59996219", + "sid": "59996219", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:15Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Gilberto Ramirez", + "price": 1.1, + "link": null, + "sid": "1403409359", + "bet_limit": null + }, + { + "name": "Yuniel Dorticos", + "price": 4.0, + "link": null, + "sid": "1403409360", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Gilberto Ramirez", + "price": 1.13, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Yuniel Dorticos", + "price": 5.75, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "3d3d5d07b58d340589d27488946081ce", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-07-12T01:04:00Z", + "home_team": "Alycia Baumgardner", + "away_team": "Jennifer Miranda", + "bookmakers": [ + { + "key": "winamax_fr", + "title": "Winamax (FR)", + "last_update": "2025-05-09T12:32:15Z", + "link": "https://www.winamax.fr/en/sports-betting/match/59721122", + "sid": "59721122", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:15Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alycia Baumgardner", + "price": 1.02, + "link": null, + "sid": "1398287835", + "bet_limit": null + }, + { + "name": "Jennifer Miranda", + "price": 5.7, + "link": null, + "sid": "1398287836", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/baumgardner%2C-alycia-miranda%2C-jennifer/SBTE_2_1023572560", + "sid": "SBTE_2_1023572560", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alycia Baumgardner", + "price": 1.05, + "link": null, + "sid": "SBTS_2_3725344865", + "bet_limit": null + }, + { + "name": "Jennifer Miranda", + "price": 13.0, + "link": null, + "sid": "SBTS_2_3725344867", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "SBTS_2_3725344866", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023572560", + "sid": "1023572560", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alycia Baumgardner", + "price": 1.03, + "link": null, + "sid": "3725344865", + "bet_limit": null + }, + { + "name": "Jennifer Miranda", + "price": 10.5, + "link": null, + "sid": "3725344867", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "3725344866", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alycia Baumgardner", + "price": 1.05, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Jennifer Miranda", + "price": 9.5, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023572560", + "sid": "1023572560", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alycia Baumgardner", + "price": 1.05, + "link": null, + "sid": "3725344865", + "bet_limit": null + }, + { + "name": "Jennifer Miranda", + "price": 13.0, + "link": null, + "sid": "3725344867", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "3725344866", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_eu", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": "1023572560", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alycia Baumgardner", + "price": 1.05, + "link": null, + "sid": "3725344865", + "bet_limit": null + }, + { + "name": "Jennifer Miranda", + "price": 13.0, + "link": null, + "sid": "3725344867", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "3725344866", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betrivers", + "title": "BetRivers", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023572560", + "sid": "1023572560", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alycia Baumgardner", + "price": 1.03, + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023572560?coupon={pickType}|3725344863|{wagerAmount}", + "sid": "3725344863", + "bet_limit": null + }, + { + "name": "Jennifer Miranda", + "price": 12.5, + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023572560?coupon={pickType}|3725344864|{wagerAmount}", + "sid": "3725344864", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023572560", + "sid": "1023572560", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alycia Baumgardner", + "price": 1.05, + "link": null, + "sid": "3725344865", + "bet_limit": null + }, + { + "name": "Jennifer Miranda", + "price": 13.0, + "link": null, + "sid": "3725344867", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "3725344866", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/baumgardner%2C-alycia-miranda%2C-jennifer/SBTE_2_1023572560", + "sid": "SBTE_2_1023572560", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alycia Baumgardner", + "price": 1.05, + "link": null, + "sid": "SBTS_2_3725344865", + "bet_limit": null + }, + { + "name": "Jennifer Miranda", + "price": 13.0, + "link": null, + "sid": "SBTS_2_3725344867", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "SBTS_2_3725344866", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betclic", + "title": "Betclic", + "last_update": "2025-05-09T12:31:06Z", + "link": "https://www.betclic.fr/boxe-sboxing/combats-pour-le-titre-mondial-c15872/alycia-baumgardner-jennifer-miranda-m750941907329024", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:31:06Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alycia Baumgardner", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Jennifer Miranda", + "price": 10.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/alycia-baumgardner-v-jennifer-miranda-34183912", + "sid": "34183912", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alycia Baumgardner", + "price": 1.06, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.495019938&selectionId=28225284", + "sid": "28225284", + "bet_limit": null + }, + { + "name": "Jennifer Miranda", + "price": 8.2, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.495019938&selectionId=82097164", + "sid": "82097164", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263226", + "sid": "32263226", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alycia Baumgardner", + "price": 1.05, + "link": "https://sportsbook.draftkings.com/event/32263226?outcomes=0ML79848946_1", + "sid": "0ML79848946_1", + "bet_limit": null + }, + { + "name": "Jennifer Miranda", + "price": 10.0, + "link": "https://sportsbook.draftkings.com/event/32263226?outcomes=0ML79848946_3", + "sid": "0ML79848946_3", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "708d6a2fbd6020d537c9d1ce1081bd0f", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-07-12T01:04:00Z", + "home_team": "Dina Thorslund", + "away_team": "Shurretta Metcalf", + "bookmakers": [ + { + "key": "parionssport_fr", + "title": "Parions Sport (FR)", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.enligne.parionssport.fdj.fr/paris-boxe/international/combats/3205838/d.thorslund-vs-s.metcalf", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dina Thorslund", + "price": 1.13, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Shurretta Metcalf", + "price": 5.4, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 20.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betclic", + "title": "Betclic", + "last_update": "2025-05-09T12:31:06Z", + "link": "https://www.betclic.fr/boxe-sboxing/combats-pour-le-titre-mondial-c15872/dina-thorslund-shurretta-metcalf-m757369991983104", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:31:06Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dina Thorslund", + "price": 1.07, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Shurretta Metcalf", + "price": 5.5, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023575020", + "sid": "1023575020", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dina Thorslund", + "price": 1.13, + "link": null, + "sid": "3726290405", + "bet_limit": null + }, + { + "name": "Shurretta Metcalf", + "price": 5.3, + "link": null, + "sid": "3726290409", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "3726290407", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/thorslund%2C-dina-metcalf%2C-shuretta/SBTE_2_1023575020", + "sid": "SBTE_2_1023575020", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dina Thorslund", + "price": 1.15, + "link": null, + "sid": "SBTS_2_3726290405", + "bet_limit": null + }, + { + "name": "Shurretta Metcalf", + "price": 6.0, + "link": null, + "sid": "SBTS_2_3726290409", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3726290407", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/thorslund%2C-dina-metcalf%2C-shuretta/SBTE_2_1023575020", + "sid": "SBTE_2_1023575020", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dina Thorslund", + "price": 1.15, + "link": null, + "sid": "SBTS_2_3726290405", + "bet_limit": null + }, + { + "name": "Shurretta Metcalf", + "price": 6.0, + "link": null, + "sid": "SBTS_2_3726290409", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3726290407", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023575020", + "sid": "1023575020", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dina Thorslund", + "price": 1.15, + "link": null, + "sid": "3726290405", + "bet_limit": null + }, + { + "name": "Shurretta Metcalf", + "price": 6.0, + "link": null, + "sid": "3726290409", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3726290407", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023575020", + "sid": "1023575020", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dina Thorslund", + "price": 1.15, + "link": null, + "sid": "3726290405", + "bet_limit": null + }, + { + "name": "Shurretta Metcalf", + "price": 6.0, + "link": null, + "sid": "3726290409", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3726290407", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dina Thorslund", + "price": 1.13, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Shurretta Metcalf", + "price": 5.75, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/dina-thorslund-v-shurretta-metcalf-34207854", + "sid": "34207854", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dina Thorslund", + "price": 1.17, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.497394332&selectionId=20266323", + "sid": "20266323", + "bet_limit": null + }, + { + "name": "Shurretta Metcalf", + "price": 4.6, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.497394332&selectionId=62598130", + "sid": "62598130", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_eu", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": "1023575020", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dina Thorslund", + "price": 1.15, + "link": null, + "sid": "3726290405", + "bet_limit": null + }, + { + "name": "Shurretta Metcalf", + "price": 6.0, + "link": null, + "sid": "3726290409", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3726290407", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betrivers", + "title": "BetRivers", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023575020", + "sid": "1023575020", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dina Thorslund", + "price": 1.13, + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023575020?coupon={pickType}|3726290406|{wagerAmount}", + "sid": "3726290406", + "bet_limit": null + }, + { + "name": "Shurretta Metcalf", + "price": 5.8, + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023575020?coupon={pickType}|3726290408|{wagerAmount}", + "sid": "3726290408", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263225", + "sid": "32263225", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dina Thorslund", + "price": 1.13, + "link": "https://sportsbook.draftkings.com/event/32263225?outcomes=0ML79848945_1", + "sid": "0ML79848945_1", + "bet_limit": null + }, + { + "name": "Shurretta Metcalf", + "price": 5.75, + "link": "https://sportsbook.draftkings.com/event/32263225?outcomes=0ML79848945_3", + "sid": "0ML79848945_3", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "51fef7b3575c2fc55b1f5e1148905ca1", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-07-12T01:04:00Z", + "home_team": "Ellie Scotney", + "away_team": "Yamileth Mercado", + "bookmakers": [ + { + "key": "parionssport_fr", + "title": "Parions Sport (FR)", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.enligne.parionssport.fdj.fr/paris-boxe/international/combats/3205840/e.scotney-vs-y.mercado", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ellie Scotney", + "price": 1.11, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Yamileth Mercado", + "price": 5.75, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 20.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betclic", + "title": "Betclic", + "last_update": "2025-05-09T12:31:06Z", + "link": "https://www.betclic.fr/boxe-sboxing/combats-pour-le-titre-mondial-c15872/ellie-scotney-yamileth-mercado-m757370951159808", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:31:06Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ellie Scotney", + "price": 1.05, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Yamileth Mercado", + "price": 6.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023575022", + "sid": "1023575022", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ellie Scotney", + "price": 1.08, + "link": null, + "sid": "3726250185", + "bet_limit": null + }, + { + "name": "Yamileth Mercado", + "price": 7.5, + "link": null, + "sid": "3726250187", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "3726250186", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023575022", + "sid": "1023575022", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ellie Scotney", + "price": 1.1, + "link": null, + "sid": "3726250185", + "bet_limit": null + }, + { + "name": "Yamileth Mercado", + "price": 8.5, + "link": null, + "sid": "3726250187", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3726250186", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023575022", + "sid": "1023575022", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ellie Scotney", + "price": 1.1, + "link": null, + "sid": "3726250185", + "bet_limit": null + }, + { + "name": "Yamileth Mercado", + "price": 8.5, + "link": null, + "sid": "3726250187", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3726250186", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ellie Scotney", + "price": 1.11, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Yamileth Mercado", + "price": 6.5, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/ellie-scotney-v-yamileth-mercado-34207853", + "sid": "34207853", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ellie Scotney", + "price": 1.13, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.497394330&selectionId=36390382", + "sid": "36390382", + "bet_limit": null + }, + { + "name": "Yamileth Mercado", + "price": 5.3, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.497394330&selectionId=40449251", + "sid": "40449251", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_eu", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": "1023575022", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ellie Scotney", + "price": 1.1, + "link": null, + "sid": "3726250185", + "bet_limit": null + }, + { + "name": "Yamileth Mercado", + "price": 8.5, + "link": null, + "sid": "3726250187", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3726250186", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betrivers", + "title": "BetRivers", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023575022", + "sid": "1023575022", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ellie Scotney", + "price": 1.07, + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023575022?coupon={pickType}|3726250183|{wagerAmount}", + "sid": "3726250183", + "bet_limit": null + }, + { + "name": "Yamileth Mercado", + "price": 8.5, + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023575022?coupon={pickType}|3726250184|{wagerAmount}", + "sid": "3726250184", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263227", + "sid": "32263227", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ellie Scotney", + "price": 1.11, + "link": "https://sportsbook.draftkings.com/event/32263227?outcomes=0ML79848947_1", + "sid": "0ML79848947_1", + "bet_limit": null + }, + { + "name": "Yamileth Mercado", + "price": 6.0, + "link": "https://sportsbook.draftkings.com/event/32263227?outcomes=0ML79848947_3", + "sid": "0ML79848947_3", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "b6d465bf87341ed0bc056aad5933d4fa", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-07-12T03:00:00Z", + "home_team": "Katie Taylor", + "away_team": "Amanda Serrano", + "bookmakers": [ + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023572553", + "sid": "1023572553", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.5, + "link": null, + "sid": "3725403979", + "bet_limit": null + }, + { + "name": "Katie Taylor", + "price": 2.43, + "link": null, + "sid": "3725403972", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3725403976", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023572553", + "sid": "1023572553", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.53, + "link": null, + "sid": "3725403979", + "bet_limit": null + }, + { + "name": "Katie Taylor", + "price": 2.55, + "link": null, + "sid": "3725403972", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3725403976", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/katie-taylor-v-amanda-serrano-34100199", + "sid": "34100199", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.7, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.485198335&selectionId=20510399", + "sid": "20510399", + "bet_limit": null + }, + { + "name": "Katie Taylor", + "price": 2.12, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.485198335&selectionId=11225782", + "sid": "11225782", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/taylor%2C-katie-serrano%2C-amanda/SBTE_2_1023572553", + "sid": "SBTE_2_1023572553", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.53, + "link": null, + "sid": "SBTS_2_3725403979", + "bet_limit": null + }, + { + "name": "Katie Taylor", + "price": 2.55, + "link": null, + "sid": "SBTS_2_3725403972", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3725403976", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023572553", + "sid": "1023572553", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.53, + "link": null, + "sid": "3725403979", + "bet_limit": null + }, + { + "name": "Katie Taylor", + "price": 2.55, + "link": null, + "sid": "3725403972", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3725403976", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/taylor%2C-katie-serrano%2C-amanda/SBTE_2_1023572553", + "sid": "SBTE_2_1023572553", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.53, + "link": null, + "sid": "SBTS_2_3725403979", + "bet_limit": null + }, + { + "name": "Katie Taylor", + "price": 2.55, + "link": null, + "sid": "SBTS_2_3725403972", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3725403976", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/katie-taylor-amanda-serrano-202507112200", + "sid": "14966456", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.61, + "link": null, + "sid": "1863741899", + "bet_limit": null + }, + { + "name": "Katie Taylor", + "price": 2.25, + "link": null, + "sid": "1863741898", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betrivers", + "title": "BetRivers", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023572553", + "sid": "1023572553", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.5, + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023572553?coupon={pickType}|3725403974|{wagerAmount}", + "sid": "3725403974", + "bet_limit": null + }, + { + "name": "Katie Taylor", + "price": 2.5, + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023572553?coupon={pickType}|3725403970|{wagerAmount}", + "sid": "3725403970", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betclic", + "title": "Betclic", + "last_update": "2025-05-09T12:31:06Z", + "link": "https://www.betclic.fr/boxe-sboxing/combats-pour-le-titre-mondial-c15872/katie-taylor-amanda-serrano-m722048148140032", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:31:06Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.46, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Katie Taylor", + "price": 2.32, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.61, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Katie Taylor", + "price": 2.35, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betfair_ex_uk", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34100199", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.240527253", + "sid": "1.240527253", + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.61, + "link": null, + "sid": "20510399", + "bet_limit": 50 + }, + { + "name": "Katie Taylor", + "price": 2.38, + "link": null, + "sid": "11225782", + "bet_limit": 226 + }, + { + "name": "Draw", + "price": 5.1, + "link": null, + "sid": "31162", + "bet_limit": 32 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.83, + "link": null, + "sid": "20510399", + "bet_limit": 22 + }, + { + "name": "Katie Taylor", + "price": 3.15, + "link": null, + "sid": "11225782", + "bet_limit": 10 + }, + { + "name": "Draw", + "price": 990.0, + "link": null, + "sid": "31162", + "bet_limit": 21 + } + ] + } + ] + }, + { + "key": "betfair_ex_eu", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34100199", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.240527253", + "sid": "1.240527253", + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.61, + "link": null, + "sid": "20510399", + "bet_limit": 58 + }, + { + "name": "Katie Taylor", + "price": 2.38, + "link": null, + "sid": "11225782", + "bet_limit": 266 + }, + { + "name": "Draw", + "price": 5.1, + "link": null, + "sid": "31162", + "bet_limit": 37 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.83, + "link": null, + "sid": "20510399", + "bet_limit": 26 + }, + { + "name": "Katie Taylor", + "price": 3.15, + "link": null, + "sid": "11225782", + "bet_limit": 12 + }, + { + "name": "Draw", + "price": 990.0, + "link": null, + "sid": "31162", + "bet_limit": 25 + } + ] + } + ] + }, + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/31984626", + "sid": "31984626", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.57, + "link": "https://sportsbook.draftkings.com/event/31984626?outcomes=0ML79100593_3", + "sid": "0ML79100593_3", + "bet_limit": null + }, + { + "name": "Katie Taylor", + "price": 2.4, + "link": "https://sportsbook.draftkings.com/event/31984626?outcomes=0ML79100593_1", + "sid": "0ML79100593_1", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "winamax_fr", + "title": "Winamax (FR)", + "last_update": "2025-05-09T12:32:15Z", + "link": "https://www.winamax.fr/en/sports-betting/match/58759203", + "sid": "58759203", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:15Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.46, + "link": null, + "sid": "1351371855", + "bet_limit": null + }, + { + "name": "Katie Taylor", + "price": 2.1, + "link": null, + "sid": "1351371854", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "coral", + "title": "Coral", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.coral.co.uk/event/boxing/boxing/upcoming-fights/amanda-serrano-v-katie-taylor/37004478/main-markets", + "sid": "37004478", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.73, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Katie Taylor", + "price": 2.25, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 13.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_eu", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": "1023572553", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.53, + "link": null, + "sid": "3725403979", + "bet_limit": null + }, + { + "name": "Katie Taylor", + "price": 2.55, + "link": null, + "sid": "3725403972", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3725403976", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "0744dd972ac0ec030cb0728760ead3f3", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-07-12T23:00:00Z", + "home_team": "Subriel Matias", + "away_team": "Alberto Puello", + "bookmakers": [ + { + "key": "winamax_fr", + "title": "Winamax (FR)", + "last_update": "2025-05-09T12:32:15Z", + "link": "https://www.winamax.fr/en/sports-betting/match/60084085", + "sid": "60084085", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:15Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alberto Puello", + "price": 1.86, + "link": null, + "sid": "1403406450", + "bet_limit": null + }, + { + "name": "Subriel Matias", + "price": 1.62, + "link": null, + "sid": "1403406451", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023499228", + "sid": "1023499228", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alberto Puello", + "price": 2.1, + "link": null, + "sid": "3725029296", + "bet_limit": null + }, + { + "name": "Subriel Matias", + "price": 1.78, + "link": null, + "sid": "3725029293", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "3725029295", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023499228", + "sid": "1023499228", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alberto Puello", + "price": 2.02, + "link": null, + "sid": "3725029296", + "bet_limit": null + }, + { + "name": "Subriel Matias", + "price": 1.73, + "link": null, + "sid": "3725029293", + "bet_limit": null + }, + { + "name": "Draw", + "price": 12.5, + "link": null, + "sid": "3725029295", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "parionssport_fr", + "title": "Parions Sport (FR)", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.enligne.parionssport.fdj.fr/paris-boxe/international/combats/3204816/a.puello-vs-s.matias", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alberto Puello", + "price": 2.05, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Subriel Matias", + "price": 1.78, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 11.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023499228", + "sid": "1023499228", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alberto Puello", + "price": 2.1, + "link": null, + "sid": "3725029296", + "bet_limit": null + }, + { + "name": "Subriel Matias", + "price": 1.78, + "link": null, + "sid": "3725029293", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "3725029295", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alberto Puello", + "price": 2.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Subriel Matias", + "price": 1.77, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betclic", + "title": "Betclic", + "last_update": "2025-05-09T12:31:06Z", + "link": "https://www.betclic.fr/boxe-sboxing/combats-pour-le-titre-mondial-c15872/alberto-puello-subriel-matias-m763562664783872", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:31:06Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alberto Puello", + "price": 1.9, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Subriel Matias", + "price": 1.68, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/alberto-puello-v-subriel-matias-34249178", + "sid": "34249178", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alberto Puello", + "price": 2.08, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.500260947&selectionId=37562495", + "sid": "37562495", + "bet_limit": null + }, + { + "name": "Subriel Matias", + "price": 1.74, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.500260947&selectionId=27925118", + "sid": "27925118", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betfair_ex_eu", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34249178", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.243311942", + "sid": "1.243311942", + "outcomes": [ + { + "name": "Alberto Puello", + "price": 2.26, + "link": null, + "sid": "37562496", + "bet_limit": 19 + }, + { + "name": "Subriel Matias", + "price": 1.89, + "link": null, + "sid": "27925118", + "bet_limit": 27 + }, + { + "name": "Draw", + "price": 22.0, + "link": null, + "sid": "31162", + "bet_limit": 2 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alberto Puello", + "price": 2.36, + "link": null, + "sid": "37562496", + "bet_limit": 21 + }, + { + "name": "Subriel Matias", + "price": 1.96, + "link": null, + "sid": "27925118", + "bet_limit": 22 + }, + { + "name": "Draw", + "price": 36.0, + "link": null, + "sid": "31162", + "bet_limit": 1 + } + ] + } + ] + }, + { + "key": "betfair_ex_uk", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34249178", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.243311942", + "sid": "1.243311942", + "outcomes": [ + { + "name": "Alberto Puello", + "price": 2.26, + "link": null, + "sid": "37562496", + "bet_limit": 16 + }, + { + "name": "Subriel Matias", + "price": 1.89, + "link": null, + "sid": "27925118", + "bet_limit": 23 + }, + { + "name": "Draw", + "price": 22.0, + "link": null, + "sid": "31162", + "bet_limit": 2 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alberto Puello", + "price": 2.36, + "link": null, + "sid": "37562496", + "bet_limit": 18 + }, + { + "name": "Subriel Matias", + "price": 1.96, + "link": null, + "sid": "27925118", + "bet_limit": 19 + }, + { + "name": "Draw", + "price": 36.0, + "link": null, + "sid": "31162", + "bet_limit": 1 + } + ] + } + ] + }, + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263499", + "sid": "32263499", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alberto Puello", + "price": 2.0, + "link": "https://sportsbook.draftkings.com/event/32263499?outcomes=0ML79849284_1", + "sid": "0ML79849284_1", + "bet_limit": null + }, + { + "name": "Subriel Matias", + "price": 1.8, + "link": "https://sportsbook.draftkings.com/event/32263499?outcomes=0ML79849284_3", + "sid": "0ML79849284_3", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "25a014d78e25eb85efc320722d6ac9e5", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-07-12T23:00:00Z", + "home_team": "David Morrell", + "away_team": "Imam Khatev", + "bookmakers": [ + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/morrell%2C-david-khataev%2C-imam/SBTE_2_1023499227", + "sid": "SBTE_2_1023499227", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Morrell", + "price": 1.18, + "link": null, + "sid": "SBTS_2_3725029363", + "bet_limit": null + }, + { + "name": "Imam Khatev", + "price": 5.2, + "link": null, + "sid": "SBTS_2_3725029366", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3725029364", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023499227", + "sid": "1023499227", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Morrell", + "price": 1.18, + "link": null, + "sid": "3725029363", + "bet_limit": null + }, + { + "name": "Imam Khatev", + "price": 5.2, + "link": null, + "sid": "3725029366", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3725029364", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Morrell", + "price": 1.2, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Imam Khatev", + "price": 4.5, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023499227", + "sid": "1023499227", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Morrell", + "price": 1.16, + "link": null, + "sid": "3725029363", + "bet_limit": null + }, + { + "name": "Imam Khatev", + "price": 4.7, + "link": null, + "sid": "3725029366", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3725029364", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/morrell%2C-david-khataev%2C-imam/SBTE_2_1023499227", + "sid": "SBTE_2_1023499227", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Morrell", + "price": 1.18, + "link": null, + "sid": "SBTS_2_3725029363", + "bet_limit": null + }, + { + "name": "Imam Khatev", + "price": 5.2, + "link": null, + "sid": "SBTS_2_3725029366", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3725029364", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023499227", + "sid": "1023499227", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Morrell", + "price": 1.18, + "link": null, + "sid": "3725029363", + "bet_limit": null + }, + { + "name": "Imam Khatev", + "price": 5.2, + "link": null, + "sid": "3725029366", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3725029364", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/david-morrell-v-imam-khataev-34249177", + "sid": "34249177", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Morrell", + "price": 1.13, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.500260941&selectionId=35448919", + "sid": "35448919", + "bet_limit": null + }, + { + "name": "Imam Khatev", + "price": 5.3, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.500260941&selectionId=40409514", + "sid": "40409514", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263500", + "sid": "32263500", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Morrell", + "price": 1.21, + "link": "https://sportsbook.draftkings.com/event/32263500?outcomes=0ML79849285_1", + "sid": "0ML79849285_1", + "bet_limit": null + }, + { + "name": "Imam Khatev", + "price": 4.4, + "link": "https://sportsbook.draftkings.com/event/32263500?outcomes=0ML79849285_3", + "sid": "0ML79849285_3", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "345fa20fde140a197ccb376d1f6b0dd5", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-07-12T23:00:00Z", + "home_team": "Edgar Berlanga", + "away_team": "Hamzah Sheeraz", + "bookmakers": [ + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/berlanga%2C-edgar-sheeraz%2C-hamzah/SBTE_2_1023499230", + "sid": "SBTE_2_1023499230", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Edgar Berlanga", + "price": 1.67, + "link": null, + "sid": "SBTS_2_3725068485", + "bet_limit": null + }, + { + "name": "Hamzah Sheeraz", + "price": 2.23, + "link": null, + "sid": "SBTS_2_3725068487", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3725068486", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023499230", + "sid": "1023499230", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Edgar Berlanga", + "price": 1.67, + "link": null, + "sid": "3725068485", + "bet_limit": null + }, + { + "name": "Hamzah Sheeraz", + "price": 2.23, + "link": null, + "sid": "3725068487", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3725068486", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023499230", + "sid": "1023499230", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Edgar Berlanga", + "price": 1.63, + "link": null, + "sid": "3725068485", + "bet_limit": null + }, + { + "name": "Hamzah Sheeraz", + "price": 2.14, + "link": null, + "sid": "3725068487", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3725068486", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/berlanga%2C-edgar-sheeraz%2C-hamzah/SBTE_2_1023499230", + "sid": "SBTE_2_1023499230", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Edgar Berlanga", + "price": 1.67, + "link": null, + "sid": "SBTS_2_3725068485", + "bet_limit": null + }, + { + "name": "Hamzah Sheeraz", + "price": 2.23, + "link": null, + "sid": "SBTS_2_3725068487", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3725068486", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023499230", + "sid": "1023499230", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Edgar Berlanga", + "price": 1.67, + "link": null, + "sid": "3725068485", + "bet_limit": null + }, + { + "name": "Hamzah Sheeraz", + "price": 2.23, + "link": null, + "sid": "3725068487", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3725068486", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Edgar Berlanga", + "price": 1.69, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Hamzah Sheeraz", + "price": 2.15, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/edgar-berlanga-v-hamzah-sheeraz-34238797", + "sid": "34238797", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Edgar Berlanga", + "price": 1.65, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.499606171&selectionId=24386594", + "sid": "24386594", + "bet_limit": null + }, + { + "name": "Hamzah Sheeraz", + "price": 2.2, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.499606171&selectionId=24993601", + "sid": "24993601", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263498", + "sid": "32263498", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Edgar Berlanga", + "price": 1.71, + "link": "https://sportsbook.draftkings.com/event/32263498?outcomes=0ML79849283_1", + "sid": "0ML79849283_1", + "bet_limit": null + }, + { + "name": "Hamzah Sheeraz", + "price": 2.1, + "link": "https://sportsbook.draftkings.com/event/32263498?outcomes=0ML79849283_3", + "sid": "0ML79849283_3", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "bdeffe4e8ef8372a8b8873497207bbbd", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-07-12T23:00:00Z", + "home_team": "Shakur Stevenson", + "away_team": "William Zepeda", + "bookmakers": [ + { + "key": "winamax_fr", + "title": "Winamax (FR)", + "last_update": "2025-05-09T12:32:15Z", + "link": "https://www.winamax.fr/en/sports-betting/match/59994137", + "sid": "59994137", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:15Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Shakur Stevenson", + "price": 1.06, + "link": null, + "sid": "1403407710", + "bet_limit": null + }, + { + "name": "William Zepeda", + "price": 4.7, + "link": null, + "sid": "1403407711", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betclic", + "title": "Betclic", + "last_update": "2025-05-09T12:31:06Z", + "link": "https://www.betclic.fr/boxe-sboxing/combats-pour-le-titre-mondial-c15872/shakur-stevenson-william-zepeda-m762627500666880", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:31:06Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Shakur Stevenson", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "William Zepeda", + "price": 7.5, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023499229", + "sid": "1023499229", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Shakur Stevenson", + "price": 1.08, + "link": null, + "sid": "3725029268", + "bet_limit": null + }, + { + "name": "William Zepeda", + "price": 7.5, + "link": null, + "sid": "3725029270", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "3725029269", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023499229", + "sid": "1023499229", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Shakur Stevenson", + "price": 1.1, + "link": null, + "sid": "3725029268", + "bet_limit": null + }, + { + "name": "William Zepeda", + "price": 8.5, + "link": null, + "sid": "3725029270", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3725029269", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/stevenson%2C-shakur-zepeda%2C-william/SBTE_2_1023499229", + "sid": "SBTE_2_1023499229", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Shakur Stevenson", + "price": 1.1, + "link": null, + "sid": "SBTS_2_3725029268", + "bet_limit": null + }, + { + "name": "William Zepeda", + "price": 8.5, + "link": null, + "sid": "SBTS_2_3725029270", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3725029269", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023499229", + "sid": "1023499229", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Shakur Stevenson", + "price": 1.1, + "link": null, + "sid": "3725029268", + "bet_limit": null + }, + { + "name": "William Zepeda", + "price": 8.5, + "link": null, + "sid": "3725029270", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3725029269", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Shakur Stevenson", + "price": 1.08, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "William Zepeda", + "price": 7.5, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "parionssport_fr", + "title": "Parions Sport (FR)", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.enligne.parionssport.fdj.fr/paris-boxe/international/combats/3204818/s.stevenson-vs-w.zepeda", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Shakur Stevenson", + "price": 1.1, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "William Zepeda", + "price": 6.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 20.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/stevenson%2C-shakur-zepeda%2C-william/SBTE_2_1023499229", + "sid": "SBTE_2_1023499229", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Shakur Stevenson", + "price": 1.1, + "link": null, + "sid": "SBTS_2_3725029268", + "bet_limit": null + }, + { + "name": "William Zepeda", + "price": 8.5, + "link": null, + "sid": "SBTS_2_3725029270", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3725029269", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/shakur-stevenson-v-william-zepeda-segura-34232953", + "sid": "34232953", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Shakur Stevenson", + "price": 1.07, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.499180687&selectionId=11424316", + "sid": "11424316", + "bet_limit": null + }, + { + "name": "William Zepeda", + "price": 8.7, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.499180687&selectionId=44954991", + "sid": "44954991", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263497", + "sid": "32263497", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Shakur Stevenson", + "price": 1.09, + "link": "https://sportsbook.draftkings.com/event/32263497?outcomes=0ML79849282_1", + "sid": "0ML79849282_1", + "bet_limit": null + }, + { + "name": "William Zepeda", + "price": 7.0, + "link": "https://sportsbook.draftkings.com/event/32263497?outcomes=0ML79849282_3", + "sid": "0ML79849282_3", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "55116528004cfc44a95b79fb10ec32f8", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-07-19T21:00:00Z", + "home_team": "Oleksandr Usyk", + "away_team": "Daniel Dubois", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32226562", + "sid": "32226562", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 3.6, + "link": "https://sportsbook.draftkings.com/event/32226562?outcomes=0ML79744769_3", + "sid": "0ML79744769_3", + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.29, + "link": "https://sportsbook.draftkings.com/event/32226562?outcomes=0ML79744769_1", + "sid": "0ML79744769_1", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490675584", + "sid": "490675584", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 4.4, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.2, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 4.5, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.2, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betfair_ex_uk", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34227345", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.243065038", + "sid": "1.243065038", + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 3.75, + "link": null, + "sid": "12839770", + "bet_limit": 10 + }, + { + "name": "Oleksandr Usyk", + "price": 1.36, + "link": null, + "sid": "11783471", + "bet_limit": 408 + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "31162", + "bet_limit": 31 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 4.3, + "link": null, + "sid": "12839770", + "bet_limit": 48 + }, + { + "name": "Oleksandr Usyk", + "price": 1.4, + "link": null, + "sid": "11783471", + "bet_limit": 28 + }, + { + "name": "Draw", + "price": 50.0, + "link": null, + "sid": "31162", + "bet_limit": 13 + } + ] + } + ] + }, + { + "key": "betfair_ex_eu", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34227345", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.243065038", + "sid": "1.243065038", + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 3.75, + "link": null, + "sid": "12839770", + "bet_limit": 12 + }, + { + "name": "Oleksandr Usyk", + "price": 1.36, + "link": null, + "sid": "11783471", + "bet_limit": 481 + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "31162", + "bet_limit": 37 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 4.3, + "link": null, + "sid": "12839770", + "bet_limit": 57 + }, + { + "name": "Oleksandr Usyk", + "price": 1.4, + "link": null, + "sid": "11783471", + "bet_limit": 33 + }, + { + "name": "Draw", + "price": 50.0, + "link": null, + "sid": "31162", + "bet_limit": 16 + } + ] + } + ] + }, + { + "key": "sport888", + "title": "888sport", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.888sport.com/boxing/boxing/boxing-bouts/oleksandr-usyk-v-daniel-dubois-e-5718399/", + "sid": "5718399", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 3.75, + "link": null, + "sid": "16377738157", + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.29, + "link": null, + "sid": "16377738159", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "16377738158", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490675584", + "sid": "490675584", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 4.4, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.2, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betclic", + "title": "Betclic", + "last_update": "2025-05-09T12:31:06Z", + "link": "https://www.betclic.fr/boxe-sboxing/combats-pour-le-titre-mondial-c15872/oleksandr-usyk-daniel-dubois-m768178099855360", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:31:06Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 3.5, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.2, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "winamax_fr", + "title": "Winamax (FR)", + "last_update": "2025-05-09T12:32:15Z", + "link": "https://www.winamax.fr/en/sports-betting/match/60206565", + "sid": "60206565", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:15Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 3.0, + "link": null, + "sid": "1411892483", + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.22, + "link": null, + "sid": "1411892482", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "coral", + "title": "Coral", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.coral.co.uk/event/boxing/boxing/upcoming-fights/oleksandr-usyk-v-daniel-dubois/37225260/main-markets", + "sid": "37225260", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 3.5, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.3, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 21.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023441554", + "sid": "1023441554", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 3.95, + "link": null, + "sid": "3725068027", + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.26, + "link": null, + "sid": "3725068024", + "bet_limit": null + }, + { + "name": "Draw", + "price": 21.0, + "link": null, + "sid": "3725068026", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023441554", + "sid": "1023441554", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 3.65, + "link": null, + "sid": "3725068027", + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.24, + "link": null, + "sid": "3725068024", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "3725068026", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023441554", + "sid": "1023441554", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 3.95, + "link": null, + "sid": "3725068027", + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.26, + "link": null, + "sid": "3725068024", + "bet_limit": null + }, + { + "name": "Draw", + "price": 21.0, + "link": null, + "sid": "3725068026", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/oleksandr-usyk-v-daniel-dubois-34227345", + "sid": "34227345", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 4.3, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.498771937&selectionId=12839770", + "sid": "12839770", + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.18, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.498771937&selectionId=11783471", + "sid": "11783471", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_eu", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": "1023441554", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 3.95, + "link": null, + "sid": "3725068027", + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.26, + "link": null, + "sid": "3725068024", + "bet_limit": null + }, + { + "name": "Draw", + "price": 21.0, + "link": null, + "sid": "3725068026", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betrivers", + "title": "BetRivers", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023441554", + "sid": "1023441554", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 3.9, + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023441554?coupon={pickType}|3725068025|{wagerAmount}", + "sid": "3725068025", + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.24, + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023441554?coupon={pickType}|3725068023|{wagerAmount}", + "sid": "3725068023", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "nordicbet", + "title": "Nordic Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.nordicbet.com/en/sportsbook/boxing/international/upcoming-fights/oleksandr-usyk-daniel-dubois", + "sid": "f-wCP_jQtQqUeIZpLPopi3Cg", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 4.15, + "link": null, + "sid": "s-m-f-wCP_jQtQqUeIZpLPopi3Cg-MW2W-away", + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.19, + "link": null, + "sid": "s-m-f-wCP_jQtQqUeIZpLPopi3Cg-MW2W-home", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betsson", + "title": "Betsson", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betsson.com/en/sportsbook/boxing/international/upcoming-fights?tab=liveAndUpcoming&eventId=f-wCP_jQtQqUeIZpLPopi3Cg&eti=0&fs=true", + "sid": "f-wCP_jQtQqUeIZpLPopi3Cg", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 4.15, + "link": null, + "sid": "s-m-f-wCP_jQtQqUeIZpLPopi3Cg-MW2W-away", + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.19, + "link": null, + "sid": "s-m-f-wCP_jQtQqUeIZpLPopi3Cg-MW2W-home", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "cabe9dfb206df705219d6ed4469e38e0", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-07-20T02:00:00Z", + "home_team": "Diego Pacheco", + "away_team": "Trevor McCrumby", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32240725", + "sid": "32240725", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Diego Pacheco", + "price": 1.05, + "link": "https://sportsbook.draftkings.com/event/32240725?outcomes=0ML79784577_1", + "sid": "0ML79784577_1", + "bet_limit": null + }, + { + "name": "Trevor McCrumby", + "price": 10.0, + "link": "https://sportsbook.draftkings.com/event/32240725?outcomes=0ML79784577_3", + "sid": "0ML79784577_3", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Diego Pacheco", + "price": 1.06, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Trevor McCrumby", + "price": 8.5, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/diego-pacheco-v-trevor-mccumby-34280253", + "sid": "34280253", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Diego Pacheco", + "price": 1.07, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.502181017&selectionId=26793932", + "sid": "26793932", + "bet_limit": null + }, + { + "name": "Trevor McCrumby", + "price": 8.7, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.502181017&selectionId=72424008", + "sid": "72424008", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "0b45cf01ecff128b3ae5adb0b81cb034", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-09-13T01:34:00Z", + "home_team": "Canelo \u00c1lvarez", + "away_team": "Terence Crawford", + "bookmakers": [ + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/alvarez%2C-canelo-crawford%2C-terence/SBTE_2_1023572554", + "sid": "SBTE_2_1023572554", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 1.54, + "link": null, + "sid": "SBTS_2_3725465055", + "bet_limit": null + }, + { + "name": "Terence Crawford", + "price": 2.55, + "link": null, + "sid": "SBTS_2_3725465057", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "SBTS_2_3725465056", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023572554", + "sid": "1023572554", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 1.5, + "link": null, + "sid": "3725465055", + "bet_limit": null + }, + { + "name": "Terence Crawford", + "price": 2.43, + "link": null, + "sid": "3725465057", + "bet_limit": null + }, + { + "name": "Draw", + "price": 12.5, + "link": null, + "sid": "3725465056", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023572554", + "sid": "1023572554", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 1.54, + "link": null, + "sid": "3725465055", + "bet_limit": null + }, + { + "name": "Terence Crawford", + "price": 2.55, + "link": null, + "sid": "3725465057", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "3725465056", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/alvarez%2C-canelo-crawford%2C-terence/SBTE_2_1023572554", + "sid": "SBTE_2_1023572554", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 1.54, + "link": null, + "sid": "SBTS_2_3725465055", + "bet_limit": null + }, + { + "name": "Terence Crawford", + "price": 2.55, + "link": null, + "sid": "SBTS_2_3725465057", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "SBTS_2_3725465056", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023572554", + "sid": "1023572554", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 1.54, + "link": null, + "sid": "3725465055", + "bet_limit": null + }, + { + "name": "Terence Crawford", + "price": 2.55, + "link": null, + "sid": "3725465057", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "3725465056", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betclic", + "title": "Betclic", + "last_update": "2025-05-09T12:31:06Z", + "link": "https://www.betclic.fr/boxe-sboxing/combats-pour-le-titre-mondial-c15872/saul-alvarez-terence-crawford-m694762295304192", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:31:06Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 1.4, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Terence Crawford", + "price": 2.47, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "coral", + "title": "Coral", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.coral.co.uk/event/boxing/boxing/upcoming-fights/saul-alvarez-v-terence-crawford/37319889/main-markets", + "sid": "37319889", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 1.53, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Terence Crawford", + "price": 2.62, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/saul-alvarez-v-terence-crawford-33847864", + "sid": "33847864", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 1.48, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.468189345&selectionId=4686417", + "sid": "4686417", + "bet_limit": null + }, + { + "name": "Terence Crawford", + "price": 2.62, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.468189345&selectionId=8217458", + "sid": "8217458", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263503", + "sid": "32263503", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 1.47, + "link": "https://sportsbook.draftkings.com/event/32263503?outcomes=0ML79849298_1", + "sid": "0ML79849298_1", + "bet_limit": null + }, + { + "name": "Terence Crawford", + "price": 2.65, + "link": "https://sportsbook.draftkings.com/event/32263503?outcomes=0ML79849298_3", + "sid": "0ML79849298_3", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 1.59, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Terence Crawford", + "price": 2.4, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "c0c24a3113fef315005671c62d3dddf7", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Daniel Dubois", + "away_team": "Agit Kabayel", + "bookmakers": [ + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/dubois%2C-daniel-kabayel%2C-agit/SBTE_2_1022233907", + "sid": "SBTE_2_1022233907", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Agit Kabayel", + "price": 2.38, + "link": null, + "sid": "SBTS_2_3616777305", + "bet_limit": null + }, + { + "name": "Daniel Dubois", + "price": 1.57, + "link": null, + "sid": "SBTS_2_3616777303", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3616777304", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022233907", + "sid": "1022233907", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Agit Kabayel", + "price": 2.38, + "link": null, + "sid": "3616777305", + "bet_limit": null + }, + { + "name": "Daniel Dubois", + "price": 1.56, + "link": null, + "sid": "3616777303", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3616777304", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/dubois%2C-daniel-kabayel%2C-agit/SBTE_2_1022233907", + "sid": "SBTE_2_1022233907", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Agit Kabayel", + "price": 2.38, + "link": null, + "sid": "SBTS_2_3616777305", + "bet_limit": null + }, + { + "name": "Daniel Dubois", + "price": 1.57, + "link": null, + "sid": "SBTS_2_3616777303", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3616777304", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022233907", + "sid": "1022233907", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Agit Kabayel", + "price": 2.38, + "link": null, + "sid": "3616777305", + "bet_limit": null + }, + { + "name": "Daniel Dubois", + "price": 1.56, + "link": null, + "sid": "3616777303", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3616777304", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022233907", + "sid": "1022233907", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Agit Kabayel", + "price": 2.28, + "link": null, + "sid": "3616777305", + "bet_limit": null + }, + { + "name": "Daniel Dubois", + "price": 1.54, + "link": null, + "sid": "3616777303", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3616777304", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "53d52bd37584d64ed86d35669de71078", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Daniel Dubois", + "away_team": "Anthony Joshua", + "bookmakers": [ + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1021885461", + "sid": "1021885461", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 2.28, + "link": null, + "sid": "3545281268", + "bet_limit": null + }, + { + "name": "Daniel Dubois", + "price": 1.54, + "link": null, + "sid": "3545281266", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3545281267", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1021885461", + "sid": "1021885461", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 2.38, + "link": null, + "sid": "3545281268", + "bet_limit": null + }, + { + "name": "Daniel Dubois", + "price": 1.56, + "link": null, + "sid": "3545281266", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3545281267", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/dubois%2C-daniel-joshua%2C-anthony/SBTE_2_1021885461", + "sid": "SBTE_2_1021885461", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 2.38, + "link": null, + "sid": "SBTS_2_3545281268", + "bet_limit": null + }, + { + "name": "Daniel Dubois", + "price": 1.57, + "link": null, + "sid": "SBTS_2_3545281266", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3545281267", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1021885461", + "sid": "1021885461", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 2.38, + "link": null, + "sid": "3545281268", + "bet_limit": null + }, + { + "name": "Daniel Dubois", + "price": 1.56, + "link": null, + "sid": "3545281266", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3545281267", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/dubois%2C-daniel-joshua%2C-anthony/SBTE_2_1021885461", + "sid": "SBTE_2_1021885461", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 2.38, + "link": null, + "sid": "SBTS_2_3545281268", + "bet_limit": null + }, + { + "name": "Daniel Dubois", + "price": 1.57, + "link": null, + "sid": "SBTS_2_3545281266", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3545281267", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "0172e2c972bb49ef4068cb3159412ee1", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Anthony Joshua", + "away_team": "Deontay Wilder", + "bookmakers": [ + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022233882", + "sid": "1022233882", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 1.42, + "link": null, + "sid": "3589024604", + "bet_limit": null + }, + { + "name": "Deontay Wilder", + "price": 2.8, + "link": null, + "sid": "3589024607", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024605", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/joshua%2C-anthony-wilder%2C-deontay/SBTE_2_1022233882", + "sid": "SBTE_2_1022233882", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 1.42, + "link": null, + "sid": "SBTS_2_3589024604", + "bet_limit": null + }, + { + "name": "Deontay Wilder", + "price": 2.8, + "link": null, + "sid": "SBTS_2_3589024607", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024605", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022233882", + "sid": "1022233882", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 1.42, + "link": null, + "sid": "3589024604", + "bet_limit": null + }, + { + "name": "Deontay Wilder", + "price": 2.8, + "link": null, + "sid": "3589024607", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024605", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022233882", + "sid": "1022233882", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 1.4, + "link": null, + "sid": "3589024604", + "bet_limit": null + }, + { + "name": "Deontay Wilder", + "price": 2.65, + "link": null, + "sid": "3589024607", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3589024605", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/joshua%2C-anthony-wilder%2C-deontay/SBTE_2_1022233882", + "sid": "SBTE_2_1022233882", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 1.42, + "link": null, + "sid": "SBTS_2_3589024604", + "bet_limit": null + }, + { + "name": "Deontay Wilder", + "price": 2.8, + "link": null, + "sid": "SBTS_2_3589024607", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024605", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "41c2dedf80eaa2b5b51af910cb1a675e", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Anthony Joshua", + "away_team": "Filip Hrgovi\u0107", + "bookmakers": [ + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022233908", + "sid": "1022233908", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 1.09, + "link": null, + "sid": "3589028118", + "bet_limit": null + }, + { + "name": "Filip Hrgovi\u0107", + "price": 6.5, + "link": null, + "sid": "3589028120", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3589028119", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022233908", + "sid": "1022233908", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 1.1, + "link": null, + "sid": "3589028118", + "bet_limit": null + }, + { + "name": "Filip Hrgovi\u0107", + "price": 7.5, + "link": null, + "sid": "3589028120", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589028119", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/joshua%2C-anthony-hrgovi%C4%87%2C-filip/SBTE_2_1022233908", + "sid": "SBTE_2_1022233908", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 1.1, + "link": null, + "sid": "SBTS_2_3589028118", + "bet_limit": null + }, + { + "name": "Filip Hrgovi\u0107", + "price": 7.5, + "link": null, + "sid": "SBTS_2_3589028120", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589028119", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022233908", + "sid": "1022233908", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 1.1, + "link": null, + "sid": "3589028118", + "bet_limit": null + }, + { + "name": "Filip Hrgovi\u0107", + "price": 7.5, + "link": null, + "sid": "3589028120", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589028119", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/joshua%2C-anthony-hrgovi%C4%87%2C-filip/SBTE_2_1022233908", + "sid": "SBTE_2_1022233908", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 1.1, + "link": null, + "sid": "SBTS_2_3589028118", + "bet_limit": null + }, + { + "name": "Filip Hrgovi\u0107", + "price": 7.5, + "link": null, + "sid": "SBTS_2_3589028120", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589028119", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "a9957cb775d4c5c1f4946aae821c4b39", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Anthony Joshua", + "away_team": "Joseph Parker", + "bookmakers": [ + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022233876", + "sid": "1022233876", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 2.1, + "link": null, + "sid": "3589024803", + "bet_limit": null + }, + { + "name": "Joseph Parker", + "price": 1.71, + "link": null, + "sid": "3589024806", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024804", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/joshua%2C-anthony-parker%2C-joseph/SBTE_2_1022233876", + "sid": "SBTE_2_1022233876", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 2.1, + "link": null, + "sid": "SBTS_2_3589024803", + "bet_limit": null + }, + { + "name": "Joseph Parker", + "price": 1.71, + "link": null, + "sid": "SBTS_2_3589024806", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024804", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022233876", + "sid": "1022233876", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 2.02, + "link": null, + "sid": "3589024803", + "bet_limit": null + }, + { + "name": "Joseph Parker", + "price": 1.67, + "link": null, + "sid": "3589024806", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3589024804", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022233876", + "sid": "1022233876", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 2.1, + "link": null, + "sid": "3589024803", + "bet_limit": null + }, + { + "name": "Joseph Parker", + "price": 1.71, + "link": null, + "sid": "3589024806", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024804", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/joshua%2C-anthony-parker%2C-joseph/SBTE_2_1022233876", + "sid": "SBTE_2_1022233876", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 2.1, + "link": null, + "sid": "SBTS_2_3589024803", + "bet_limit": null + }, + { + "name": "Joseph Parker", + "price": 1.71, + "link": null, + "sid": "SBTS_2_3589024806", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024804", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "04521dbc5e6a8a36f586526be54dfa71", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Oleksandr Usyk", + "away_team": "Anthony Joshua", + "bookmakers": [ + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022233878", + "sid": "1022233878", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 5.8, + "link": null, + "sid": "3589024467", + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.15, + "link": null, + "sid": "3589024465", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024466", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/usyk%2C-oleksandr-joshua%2C-anthony/SBTE_2_1022233878", + "sid": "SBTE_2_1022233878", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 5.8, + "link": null, + "sid": "SBTS_2_3589024467", + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.15, + "link": null, + "sid": "SBTS_2_3589024465", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024466", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022233878", + "sid": "1022233878", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 5.8, + "link": null, + "sid": "3589024467", + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.15, + "link": null, + "sid": "3589024465", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024466", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022233878", + "sid": "1022233878", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 5.1, + "link": null, + "sid": "3589024467", + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.13, + "link": null, + "sid": "3589024465", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3589024466", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/usyk%2C-oleksandr-joshua%2C-anthony/SBTE_2_1022233878", + "sid": "SBTE_2_1022233878", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 5.8, + "link": null, + "sid": "SBTS_2_3589024467", + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.15, + "link": null, + "sid": "SBTS_2_3589024465", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024466", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "2f3264a4c1a674d266bc395aec28500f", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Tyson Fury", + "away_team": "Anthony Joshua", + "bookmakers": [ + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022233875", + "sid": "1022233875", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 4.0, + "link": null, + "sid": "3589024887", + "bet_limit": null + }, + { + "name": "Tyson Fury", + "price": 1.25, + "link": null, + "sid": "3589024885", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024886", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/fury%2C-tyson-joshua%2C-anthony/SBTE_2_1022233875", + "sid": "SBTE_2_1022233875", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 4.0, + "link": null, + "sid": "SBTS_2_3589024887", + "bet_limit": null + }, + { + "name": "Tyson Fury", + "price": 1.25, + "link": null, + "sid": "SBTS_2_3589024885", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024886", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/fury%2C-tyson-joshua%2C-anthony/SBTE_2_1022233875", + "sid": "SBTE_2_1022233875", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 4.0, + "link": null, + "sid": "SBTS_2_3589024887", + "bet_limit": null + }, + { + "name": "Tyson Fury", + "price": 1.25, + "link": null, + "sid": "SBTS_2_3589024885", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024886", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022233875", + "sid": "1022233875", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 3.7, + "link": null, + "sid": "3589024887", + "bet_limit": null + }, + { + "name": "Tyson Fury", + "price": 1.23, + "link": null, + "sid": "3589024885", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3589024886", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022233875", + "sid": "1022233875", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 4.0, + "link": null, + "sid": "3589024887", + "bet_limit": null + }, + { + "name": "Tyson Fury", + "price": 1.25, + "link": null, + "sid": "3589024885", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024886", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "2e41a4e3d9858f72efb06a92e8b7de1c", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Anthony Joshua", + "away_team": "Zhilei Zhang", + "bookmakers": [ + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022233877", + "sid": "1022233877", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 1.93, + "link": null, + "sid": "3589024527", + "bet_limit": null + }, + { + "name": "Zhilei Zhang", + "price": 1.85, + "link": null, + "sid": "3589024530", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024529", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/joshua%2C-anthony-zhilei-zhang/SBTE_2_1022233877", + "sid": "SBTE_2_1022233877", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 1.93, + "link": null, + "sid": "SBTS_2_3589024527", + "bet_limit": null + }, + { + "name": "Zhilei Zhang", + "price": 1.85, + "link": null, + "sid": "SBTS_2_3589024530", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024529", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022233877", + "sid": "1022233877", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 1.93, + "link": null, + "sid": "3589024527", + "bet_limit": null + }, + { + "name": "Zhilei Zhang", + "price": 1.85, + "link": null, + "sid": "3589024530", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024529", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022233877", + "sid": "1022233877", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 1.87, + "link": null, + "sid": "3589024527", + "bet_limit": null + }, + { + "name": "Zhilei Zhang", + "price": 1.8, + "link": null, + "sid": "3589024530", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3589024529", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/joshua%2C-anthony-zhilei-zhang/SBTE_2_1022233877", + "sid": "SBTE_2_1022233877", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 1.93, + "link": null, + "sid": "SBTS_2_3589024527", + "bet_limit": null + }, + { + "name": "Zhilei Zhang", + "price": 1.85, + "link": null, + "sid": "SBTS_2_3589024530", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024529", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "98abaa78a6b9a3135556fd9d9850160d", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Artur Beterbiev", + "away_team": "Canelo \u00c1lvarez", + "bookmakers": [ + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022233885", + "sid": "1022233885", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Artur Beterbiev", + "price": 1.26, + "link": null, + "sid": "3589024927", + "bet_limit": null + }, + { + "name": "Canelo \u00c1lvarez", + "price": 3.85, + "link": null, + "sid": "3589024929", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024928", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/beterbiev%2C-artur-canelo-%C3%A1lvarez/SBTE_2_1022233885", + "sid": "SBTE_2_1022233885", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Artur Beterbiev", + "price": 1.26, + "link": null, + "sid": "SBTS_2_3589024927", + "bet_limit": null + }, + { + "name": "Canelo \u00c1lvarez", + "price": 3.85, + "link": null, + "sid": "SBTS_2_3589024929", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024928", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/beterbiev%2C-artur-canelo-%C3%A1lvarez/SBTE_2_1022233885", + "sid": "SBTE_2_1022233885", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Artur Beterbiev", + "price": 1.26, + "link": null, + "sid": "SBTS_2_3589024927", + "bet_limit": null + }, + { + "name": "Canelo \u00c1lvarez", + "price": 3.85, + "link": null, + "sid": "SBTS_2_3589024929", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024928", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022233885", + "sid": "1022233885", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Artur Beterbiev", + "price": 1.24, + "link": null, + "sid": "3589024927", + "bet_limit": null + }, + { + "name": "Canelo \u00c1lvarez", + "price": 3.55, + "link": null, + "sid": "3589024929", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3589024928", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022233885", + "sid": "1022233885", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Artur Beterbiev", + "price": 1.26, + "link": null, + "sid": "3589024927", + "bet_limit": null + }, + { + "name": "Canelo \u00c1lvarez", + "price": 3.85, + "link": null, + "sid": "3589024929", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024928", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "742c8f2f1d27698f6a807216832fb499", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Artur Beterbiev", + "away_team": "David Benavidez", + "bookmakers": [ + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/beterbiev%2C-artur-benavidez%2C-david/SBTE_2_1022233888", + "sid": "SBTE_2_1022233888", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Artur Beterbiev", + "price": 1.34, + "link": null, + "sid": "SBTS_2_3616779061", + "bet_limit": null + }, + { + "name": "David Benavidez", + "price": 3.2, + "link": null, + "sid": "SBTS_2_3616779063", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3616779062", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/beterbiev%2C-artur-benavidez%2C-david/SBTE_2_1022233888", + "sid": "SBTE_2_1022233888", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Artur Beterbiev", + "price": 1.34, + "link": null, + "sid": "SBTS_2_3616779061", + "bet_limit": null + }, + { + "name": "David Benavidez", + "price": 3.2, + "link": null, + "sid": "SBTS_2_3616779063", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3616779062", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022233888", + "sid": "1022233888", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Artur Beterbiev", + "price": 1.34, + "link": null, + "sid": "3616779061", + "bet_limit": null + }, + { + "name": "David Benavidez", + "price": 3.2, + "link": null, + "sid": "3616779063", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3616779062", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022233888", + "sid": "1022233888", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Artur Beterbiev", + "price": 1.34, + "link": null, + "sid": "3616779061", + "bet_limit": null + }, + { + "name": "David Benavidez", + "price": 3.2, + "link": null, + "sid": "3616779063", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3616779062", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022233888", + "sid": "1022233888", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Artur Beterbiev", + "price": 1.32, + "link": null, + "sid": "3616779061", + "bet_limit": null + }, + { + "name": "David Benavidez", + "price": 3.0, + "link": null, + "sid": "3616779063", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3616779062", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "ee90266a10584d6a30a2382b0cf4b090", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Dmitry Bivol", + "away_team": "Artur Beterbiev", + "bookmakers": [ + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022945833", + "sid": "1022945833", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Artur Beterbiev", + "price": 2.23, + "link": null, + "sid": "3653898929", + "bet_limit": null + }, + { + "name": "Dmitry Bivol", + "price": 1.56, + "link": null, + "sid": "3653898927", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3653898928", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022945833", + "sid": "1022945833", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Artur Beterbiev", + "price": 2.33, + "link": null, + "sid": "3653898929", + "bet_limit": null + }, + { + "name": "Dmitry Bivol", + "price": 1.61, + "link": null, + "sid": "3653898927", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3653898928", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/bivol%2C-dmitry-beterbiev%2C-artur/SBTE_2_1022945833", + "sid": "SBTE_2_1022945833", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Artur Beterbiev", + "price": 2.33, + "link": null, + "sid": "SBTS_2_3653898929", + "bet_limit": null + }, + { + "name": "Dmitry Bivol", + "price": 1.61, + "link": null, + "sid": "SBTS_2_3653898927", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3653898928", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022945833", + "sid": "1022945833", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Artur Beterbiev", + "price": 2.33, + "link": null, + "sid": "3653898929", + "bet_limit": null + }, + { + "name": "Dmitry Bivol", + "price": 1.61, + "link": null, + "sid": "3653898927", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3653898928", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/bivol%2C-dmitry-beterbiev%2C-artur/SBTE_2_1022945833", + "sid": "SBTE_2_1022945833", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Artur Beterbiev", + "price": 2.33, + "link": null, + "sid": "SBTS_2_3653898929", + "bet_limit": null + }, + { + "name": "Dmitry Bivol", + "price": 1.61, + "link": null, + "sid": "SBTS_2_3653898927", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3653898928", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "34fe6e6b3b005b8eb62c599a2da42b29", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Canelo \u00c1lvarez", + "away_team": "Caleb Plant", + "bookmakers": [ + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/canelo-%C3%A1lvarez-plant%2C-caleb/SBTE_2_1022233889", + "sid": "SBTE_2_1022233889", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Caleb Plant", + "price": 5.1, + "link": null, + "sid": "SBTS_2_3616779119", + "bet_limit": null + }, + { + "name": "Canelo \u00c1lvarez", + "price": 1.17, + "link": null, + "sid": "SBTS_2_3616779117", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3616779118", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022233889", + "sid": "1022233889", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Caleb Plant", + "price": 5.1, + "link": null, + "sid": "3616779119", + "bet_limit": null + }, + { + "name": "Canelo \u00c1lvarez", + "price": 1.17, + "link": null, + "sid": "3616779117", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3616779118", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/canelo-%C3%A1lvarez-plant%2C-caleb/SBTE_2_1022233889", + "sid": "SBTE_2_1022233889", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Caleb Plant", + "price": 5.1, + "link": null, + "sid": "SBTS_2_3616779119", + "bet_limit": null + }, + { + "name": "Canelo \u00c1lvarez", + "price": 1.17, + "link": null, + "sid": "SBTS_2_3616779117", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3616779118", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022233889", + "sid": "1022233889", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Caleb Plant", + "price": 5.1, + "link": null, + "sid": "3616779119", + "bet_limit": null + }, + { + "name": "Canelo \u00c1lvarez", + "price": 1.17, + "link": null, + "sid": "3616779117", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3616779118", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022233889", + "sid": "1022233889", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Caleb Plant", + "price": 4.6, + "link": null, + "sid": "3616779119", + "bet_limit": null + }, + { + "name": "Canelo \u00c1lvarez", + "price": 1.16, + "link": null, + "sid": "3616779117", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3616779118", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "08f55c0345b11be6707399eb59dfaa80", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Canelo \u00c1lvarez", + "away_team": "David Benavidez", + "bookmakers": [ + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/canelo-%C3%A1lvarez-benavidez%2C-david/SBTE_2_1022233884", + "sid": "SBTE_2_1022233884", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 1.81, + "link": null, + "sid": "SBTS_2_3616782245", + "bet_limit": null + }, + { + "name": "David Benavidez", + "price": 1.97, + "link": null, + "sid": "SBTS_2_3616782247", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3616782246", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022233884", + "sid": "1022233884", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 1.81, + "link": null, + "sid": "3616782245", + "bet_limit": null + }, + { + "name": "David Benavidez", + "price": 1.96, + "link": null, + "sid": "3616782247", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3616782246", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/canelo-%C3%A1lvarez-benavidez%2C-david/SBTE_2_1022233884", + "sid": "SBTE_2_1022233884", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 1.81, + "link": null, + "sid": "SBTS_2_3616782245", + "bet_limit": null + }, + { + "name": "David Benavidez", + "price": 1.97, + "link": null, + "sid": "SBTS_2_3616782247", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3616782246", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022233884", + "sid": "1022233884", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 1.81, + "link": null, + "sid": "3616782245", + "bet_limit": null + }, + { + "name": "David Benavidez", + "price": 1.96, + "link": null, + "sid": "3616782247", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3616782246", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022233884", + "sid": "1022233884", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 1.76, + "link": null, + "sid": "3616782245", + "bet_limit": null + }, + { + "name": "David Benavidez", + "price": 1.91, + "link": null, + "sid": "3616782247", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3616782246", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "d3ea2cebf946f8c7bd5174d08c92864c", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Dmitry Bivol", + "away_team": "Canelo \u00c1lvarez", + "bookmakers": [ + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022233886", + "sid": "1022233886", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 3.45, + "link": null, + "sid": "3589028080", + "bet_limit": null + }, + { + "name": "Dmitry Bivol", + "price": 1.32, + "link": null, + "sid": "3589028078", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589028079", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022233886", + "sid": "1022233886", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 3.45, + "link": null, + "sid": "3589028080", + "bet_limit": null + }, + { + "name": "Dmitry Bivol", + "price": 1.32, + "link": null, + "sid": "3589028078", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589028079", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/bivol%2C-dmitry-canelo-%C3%A1lvarez/SBTE_2_1022233886", + "sid": "SBTE_2_1022233886", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 3.45, + "link": null, + "sid": "SBTS_2_3589028080", + "bet_limit": null + }, + { + "name": "Dmitry Bivol", + "price": 1.32, + "link": null, + "sid": "SBTS_2_3589028078", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589028079", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022233886", + "sid": "1022233886", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 3.25, + "link": null, + "sid": "3589028080", + "bet_limit": null + }, + { + "name": "Dmitry Bivol", + "price": 1.3, + "link": null, + "sid": "3589028078", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3589028079", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/bivol%2C-dmitry-canelo-%C3%A1lvarez/SBTE_2_1022233886", + "sid": "SBTE_2_1022233886", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 3.45, + "link": null, + "sid": "SBTS_2_3589028080", + "bet_limit": null + }, + { + "name": "Dmitry Bivol", + "price": 1.32, + "link": null, + "sid": "SBTS_2_3589028078", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589028079", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "d9d81ef7b61b014b753f11188084f137", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Chris Eubank Jr", + "away_team": "Conor Benn", + "bookmakers": [ + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/eubank-jr%2C-chris-benn%2C-conor/SBTE_2_1023564696", + "sid": "SBTE_2_1023564696", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Eubank Jr", + "price": 1.61, + "link": null, + "sid": "SBTS_2_3724187353", + "bet_limit": null + }, + { + "name": "Conor Benn", + "price": 2.38, + "link": null, + "sid": "SBTS_2_3724187355", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "SBTS_2_3724187354", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023564696", + "sid": "1023564696", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Eubank Jr", + "price": 1.56, + "link": null, + "sid": "3724187353", + "bet_limit": null + }, + { + "name": "Conor Benn", + "price": 2.28, + "link": null, + "sid": "3724187355", + "bet_limit": null + }, + { + "name": "Draw", + "price": 12.5, + "link": null, + "sid": "3724187354", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023564696", + "sid": "1023564696", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Eubank Jr", + "price": 1.61, + "link": null, + "sid": "3724187353", + "bet_limit": null + }, + { + "name": "Conor Benn", + "price": 2.38, + "link": null, + "sid": "3724187355", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "3724187354", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023564696", + "sid": "1023564696", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Eubank Jr", + "price": 1.61, + "link": null, + "sid": "3724187353", + "bet_limit": null + }, + { + "name": "Conor Benn", + "price": 2.38, + "link": null, + "sid": "3724187355", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "3724187354", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/eubank-jr%2C-chris-benn%2C-conor/SBTE_2_1023564696", + "sid": "SBTE_2_1023564696", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Eubank Jr", + "price": 1.61, + "link": null, + "sid": "SBTS_2_3724187353", + "bet_limit": null + }, + { + "name": "Conor Benn", + "price": 2.38, + "link": null, + "sid": "SBTS_2_3724187355", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "SBTS_2_3724187354", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "654f25b6945e8fbb9be249b7a8d327b6", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Daniel Dubois", + "away_team": "Tyson Fury", + "bookmakers": [ + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022233880", + "sid": "1022233880", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 3.75, + "link": null, + "sid": "3589024365", + "bet_limit": null + }, + { + "name": "Tyson Fury", + "price": 1.3, + "link": null, + "sid": "3589024367", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024366", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/dubois%2C-daniel-fury%2C-tyson/SBTE_2_1022233880", + "sid": "SBTE_2_1022233880", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 3.75, + "link": null, + "sid": "SBTS_2_3589024365", + "bet_limit": null + }, + { + "name": "Tyson Fury", + "price": 1.3, + "link": null, + "sid": "SBTS_2_3589024367", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024366", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022233880", + "sid": "1022233880", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 3.5, + "link": null, + "sid": "3589024365", + "bet_limit": null + }, + { + "name": "Tyson Fury", + "price": 1.28, + "link": null, + "sid": "3589024367", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3589024366", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022233880", + "sid": "1022233880", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 3.75, + "link": null, + "sid": "3589024365", + "bet_limit": null + }, + { + "name": "Tyson Fury", + "price": 1.3, + "link": null, + "sid": "3589024367", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024366", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/dubois%2C-daniel-fury%2C-tyson/SBTE_2_1022233880", + "sid": "SBTE_2_1022233880", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 3.75, + "link": null, + "sid": "SBTS_2_3589024365", + "bet_limit": null + }, + { + "name": "Tyson Fury", + "price": 1.3, + "link": null, + "sid": "SBTS_2_3589024367", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024366", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "47177fc9133cddcba077cf172a7e91dd", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Daniel Dubois", + "away_team": "Zhilei Zhang", + "bookmakers": [ + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022233879", + "sid": "1022233879", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 1.51, + "link": null, + "sid": "3589024834", + "bet_limit": null + }, + { + "name": "Zhilei Zhang", + "price": 2.5, + "link": null, + "sid": "3589024836", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024835", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/dubois%2C-daniel-zhilei-zhang/SBTE_2_1022233879", + "sid": "SBTE_2_1022233879", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 1.52, + "link": null, + "sid": "SBTS_2_3589024834", + "bet_limit": null + }, + { + "name": "Zhilei Zhang", + "price": 2.5, + "link": null, + "sid": "SBTS_2_3589024836", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024835", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022233879", + "sid": "1022233879", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 1.49, + "link": null, + "sid": "3589024834", + "bet_limit": null + }, + { + "name": "Zhilei Zhang", + "price": 2.38, + "link": null, + "sid": "3589024836", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3589024835", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022233879", + "sid": "1022233879", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 1.51, + "link": null, + "sid": "3589024834", + "bet_limit": null + }, + { + "name": "Zhilei Zhang", + "price": 2.5, + "link": null, + "sid": "3589024836", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024835", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/dubois%2C-daniel-zhilei-zhang/SBTE_2_1022233879", + "sid": "SBTE_2_1022233879", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 1.52, + "link": null, + "sid": "SBTS_2_3589024834", + "bet_limit": null + }, + { + "name": "Zhilei Zhang", + "price": 2.5, + "link": null, + "sid": "SBTS_2_3589024836", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024835", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "59975e3533dabad9ed602745847ec1a6", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Dmitry Bivol", + "away_team": "David Benavidez", + "bookmakers": [ + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022981838", + "sid": "1022981838", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Benavidez", + "price": 3.9, + "link": null, + "sid": "3658660983", + "bet_limit": null + }, + { + "name": "Dmitry Bivol", + "price": 1.27, + "link": null, + "sid": "3658660979", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3658660980", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/bivol%2C-dmitry-benavidez%2C-david/SBTE_2_1022981838", + "sid": "SBTE_2_1022981838", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Benavidez", + "price": 3.9, + "link": null, + "sid": "SBTS_2_3658660983", + "bet_limit": null + }, + { + "name": "Dmitry Bivol", + "price": 1.27, + "link": null, + "sid": "SBTS_2_3658660979", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3658660980", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022981838", + "sid": "1022981838", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Benavidez", + "price": 3.6, + "link": null, + "sid": "3658660983", + "bet_limit": null + }, + { + "name": "Dmitry Bivol", + "price": 1.25, + "link": null, + "sid": "3658660979", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3658660980", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022981838", + "sid": "1022981838", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Benavidez", + "price": 3.9, + "link": null, + "sid": "3658660983", + "bet_limit": null + }, + { + "name": "Dmitry Bivol", + "price": 1.27, + "link": null, + "sid": "3658660979", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3658660980", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/bivol%2C-dmitry-benavidez%2C-david/SBTE_2_1022981838", + "sid": "SBTE_2_1022981838", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Benavidez", + "price": 3.9, + "link": null, + "sid": "SBTS_2_3658660983", + "bet_limit": null + }, + { + "name": "Dmitry Bivol", + "price": 1.27, + "link": null, + "sid": "SBTS_2_3658660979", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3658660980", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "53d3b9ee015dc4a1e21caf955ca60e54", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Devin Haney", + "away_team": "Ryan Garcia", + "bookmakers": [ + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022233887", + "sid": "1022233887", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Devin Haney", + "price": 2.25, + "link": null, + "sid": "3589025015", + "bet_limit": null + }, + { + "name": "Ryan Garcia", + "price": 1.62, + "link": null, + "sid": "3589025017", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589025016", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022233887", + "sid": "1022233887", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Devin Haney", + "price": 2.25, + "link": null, + "sid": "3589025015", + "bet_limit": null + }, + { + "name": "Ryan Garcia", + "price": 1.62, + "link": null, + "sid": "3589025017", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589025016", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/haney%2C-devin-garcia%2C-ryan/SBTE_2_1022233887", + "sid": "SBTE_2_1022233887", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Devin Haney", + "price": 2.25, + "link": null, + "sid": "SBTS_2_3589025015", + "bet_limit": null + }, + { + "name": "Ryan Garcia", + "price": 1.62, + "link": null, + "sid": "SBTS_2_3589025017", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589025016", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022233887", + "sid": "1022233887", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Devin Haney", + "price": 2.16, + "link": null, + "sid": "3589025015", + "bet_limit": null + }, + { + "name": "Ryan Garcia", + "price": 1.57, + "link": null, + "sid": "3589025017", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3589025016", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/haney%2C-devin-garcia%2C-ryan/SBTE_2_1022233887", + "sid": "SBTE_2_1022233887", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Devin Haney", + "price": 2.25, + "link": null, + "sid": "SBTS_2_3589025015", + "bet_limit": null + }, + { + "name": "Ryan Garcia", + "price": 1.62, + "link": null, + "sid": "SBTS_2_3589025017", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589025016", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490589779", + "sid": "490589779", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Devin Haney", + "price": 2.4, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Ryan Garcia", + "price": 1.59, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490589779", + "sid": "490589779", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Devin Haney", + "price": 2.4, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Ryan Garcia", + "price": 1.59, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "071c1d41d727c767c960a01e14f8a9fb", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Teofimo Lop\u00e9z", + "away_team": "Devin Haney", + "bookmakers": [ + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/lop%C3%A9z%2C-teofimo-haney%2C-devin/SBTE_2_1022233909", + "sid": "SBTE_2_1022233909", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Devin Haney", + "price": 1.57, + "link": null, + "sid": "SBTS_2_3616779022", + "bet_limit": null + }, + { + "name": "Teofimo Lop\u00e9z", + "price": 2.38, + "link": null, + "sid": "SBTS_2_3616779020", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3616779021", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/lop%C3%A9z%2C-teofimo-haney%2C-devin/SBTE_2_1022233909", + "sid": "SBTE_2_1022233909", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Devin Haney", + "price": 1.57, + "link": null, + "sid": "SBTS_2_3616779022", + "bet_limit": null + }, + { + "name": "Teofimo Lop\u00e9z", + "price": 2.38, + "link": null, + "sid": "SBTS_2_3616779020", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3616779021", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022233909", + "sid": "1022233909", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Devin Haney", + "price": 1.56, + "link": null, + "sid": "3616779022", + "bet_limit": null + }, + { + "name": "Teofimo Lop\u00e9z", + "price": 2.38, + "link": null, + "sid": "3616779020", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3616779021", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022233909", + "sid": "1022233909", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Devin Haney", + "price": 1.56, + "link": null, + "sid": "3616779022", + "bet_limit": null + }, + { + "name": "Teofimo Lop\u00e9z", + "price": 2.38, + "link": null, + "sid": "3616779020", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3616779021", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022233909", + "sid": "1022233909", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Devin Haney", + "price": 1.54, + "link": null, + "sid": "3616779022", + "bet_limit": null + }, + { + "name": "Teofimo Lop\u00e9z", + "price": 2.28, + "link": null, + "sid": "3616779020", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3616779021", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "a1e04c13f7afcac9d3df3296711e28e8", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Terence Crawford", + "away_team": "Errol Spence Jr", + "bookmakers": [ + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022233890", + "sid": "1022233890", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Errol Spence Jr", + "price": 5.4, + "link": null, + "sid": "3589024913", + "bet_limit": null + }, + { + "name": "Terence Crawford", + "price": 1.16, + "link": null, + "sid": "3589024909", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024911", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/crawford%2C-terence-spence-jr.%2C-errol/SBTE_2_1022233890", + "sid": "SBTE_2_1022233890", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Errol Spence Jr", + "price": 5.4, + "link": null, + "sid": "SBTS_2_3589024913", + "bet_limit": null + }, + { + "name": "Terence Crawford", + "price": 1.16, + "link": null, + "sid": "SBTS_2_3589024909", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024911", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/crawford%2C-terence-spence-jr.%2C-errol/SBTE_2_1022233890", + "sid": "SBTE_2_1022233890", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Errol Spence Jr", + "price": 5.4, + "link": null, + "sid": "SBTS_2_3589024913", + "bet_limit": null + }, + { + "name": "Terence Crawford", + "price": 1.16, + "link": null, + "sid": "SBTS_2_3589024909", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024911", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022233890", + "sid": "1022233890", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Errol Spence Jr", + "price": 4.9, + "link": null, + "sid": "3589024913", + "bet_limit": null + }, + { + "name": "Terence Crawford", + "price": 1.15, + "link": null, + "sid": "3589024909", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3589024911", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022233890", + "sid": "1022233890", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Errol Spence Jr", + "price": 5.4, + "link": null, + "sid": "3589024913", + "bet_limit": null + }, + { + "name": "Terence Crawford", + "price": 1.16, + "link": null, + "sid": "3589024909", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024911", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "c0862b2f945b84c78c114e88ed10603a", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Oleksandr Usyk", + "away_team": "Tyson Fury", + "bookmakers": [ + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/usyk%2C-oleksandr-fury%2C-tyson/SBTE_2_1022405798", + "sid": "SBTE_2_1022405798", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Oleksandr Usyk", + "price": 1.29, + "link": null, + "sid": "SBTS_2_3598145381", + "bet_limit": null + }, + { + "name": "Tyson Fury", + "price": 3.55, + "link": null, + "sid": "SBTS_2_3598145383", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3598145382", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022405798", + "sid": "1022405798", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Oleksandr Usyk", + "price": 1.27, + "link": null, + "sid": "3598145381", + "bet_limit": null + }, + { + "name": "Tyson Fury", + "price": 3.3, + "link": null, + "sid": "3598145383", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3598145382", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022405798", + "sid": "1022405798", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Oleksandr Usyk", + "price": 1.29, + "link": null, + "sid": "3598145381", + "bet_limit": null + }, + { + "name": "Tyson Fury", + "price": 3.55, + "link": null, + "sid": "3598145383", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3598145382", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/usyk%2C-oleksandr-fury%2C-tyson/SBTE_2_1022405798", + "sid": "SBTE_2_1022405798", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Oleksandr Usyk", + "price": 1.29, + "link": null, + "sid": "SBTS_2_3598145381", + "bet_limit": null + }, + { + "name": "Tyson Fury", + "price": 3.55, + "link": null, + "sid": "SBTS_2_3598145383", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3598145382", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022405798", + "sid": "1022405798", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Oleksandr Usyk", + "price": 1.29, + "link": null, + "sid": "3598145381", + "bet_limit": null + }, + { + "name": "Tyson Fury", + "price": 3.55, + "link": null, + "sid": "3598145383", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3598145382", + "bet_limit": null + } + ] + } + ] + } + ] + } +] \ No newline at end of file diff --git a/odds/api-pull/README.md b/odds/api-pull/README.md new file mode 100644 index 0000000..4b43656 --- /dev/null +++ b/odds/api-pull/README.md @@ -0,0 +1,9 @@ +# Legacy path + +Sample odds were originally stored here. Use the current path instead: + +| Old | New | +|-----|-----| +| `api-pull/Odds/boxing_odds.json` | `odds/data/samples/boxing_odds.json` | + +You may delete `api-pull/` locally after confirming the copy exists under `odds/data/samples/`. diff --git a/odds/data/samples/boxing_odds.json b/odds/data/samples/boxing_odds.json new file mode 100644 index 0000000..54dd152 --- /dev/null +++ b/odds/data/samples/boxing_odds.json @@ -0,0 +1,25461 @@ +[ + { + "id": "7605c958b8ffbe29c0dcb81e4d2c8a10", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-10T16:00:00Z", + "home_team": "Charlie Senior", + "away_team": "Cesar Ignacio Paredes", + "bookmakers": [ + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023593088", + "sid": "1023593088", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Cesar Ignacio Paredes", + "price": 17.0, + "link": null, + "sid": "3728693018", + "bet_limit": null + }, + { + "name": "Charlie Senior", + "price": 1.03, + "link": null, + "sid": "3728693014", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "3728693016", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/senior%2C-charlie-paredes%2C-cesar-ignacio/SBTE_2_1023593088", + "sid": "SBTE_2_1023593088", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Cesar Ignacio Paredes", + "price": 17.0, + "link": null, + "sid": "SBTS_2_3728693018", + "bet_limit": null + }, + { + "name": "Charlie Senior", + "price": 1.03, + "link": null, + "sid": "SBTS_2_3728693014", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "SBTS_2_3728693016", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023593088", + "sid": "1023593088", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Cesar Ignacio Paredes", + "price": 17.0, + "link": null, + "sid": "3728693018", + "bet_limit": null + }, + { + "name": "Charlie Senior", + "price": 1.03, + "link": null, + "sid": "3728693014", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "3728693016", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023593088", + "sid": "1023593088", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Cesar Ignacio Paredes", + "price": 14.0, + "link": null, + "sid": "3728693018", + "bet_limit": null + }, + { + "name": "Charlie Senior", + "price": 1.01, + "link": null, + "sid": "3728693014", + "bet_limit": null + }, + { + "name": "Draw", + "price": 18.0, + "link": null, + "sid": "3728693016", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/senior%2C-charlie-paredes%2C-cesar-ignacio/SBTE_2_1023593088", + "sid": "SBTE_2_1023593088", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Cesar Ignacio Paredes", + "price": 17.0, + "link": null, + "sid": "SBTS_2_3728693018", + "bet_limit": null + }, + { + "name": "Charlie Senior", + "price": 1.03, + "link": null, + "sid": "SBTS_2_3728693014", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "SBTS_2_3728693016", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/260627681-charlie-senior-cesar-ignacio-paredes", + "sid": "260627681", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Cesar Ignacio Paredes", + "price": 12.8, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Charlie Senior", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 48.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Cesar Ignacio Paredes", + "price": 21.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Charlie Senior", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490694733", + "sid": "490694733", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Cesar Ignacio Paredes", + "price": 21.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Charlie Senior", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490694733", + "sid": "490694733", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Cesar Ignacio Paredes", + "price": 21.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Charlie Senior", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "paddypower", + "title": "Paddy Power", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.paddypower.com/boxing/boxing-matches/charlie-senior-v-cesar-ignacio-paredes-34297020", + "sid": "34297020", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Cesar Ignacio Paredes", + "price": 34.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Charlie Senior", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 61.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44423823/sport/boxing/international-matchups/2025/05/10/15-00/charlie-senior-vs-cesar-ignacio-paredes", + "sid": "44423823", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Cesar Ignacio Paredes", + "price": 9.6, + "link": null, + "sid": "282634490", + "bet_limit": 20 + }, + { + "name": "Charlie Senior", + "price": 1.0, + "link": null, + "sid": "282634489", + "bet_limit": 214726 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Cesar Ignacio Paredes", + "price": 250.0, + "link": null, + "sid": "282634490", + "bet_limit": 180 + }, + { + "name": "Charlie Senior", + "price": 1.12, + "link": null, + "sid": "282634489", + "bet_limit": 179 + } + ] + } + ] + }, + { + "key": "nordicbet", + "title": "Nordic Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.nordicbet.com/en/sportsbook/boxing/international/upcoming-fights/charlie-senior-cesar-ignacio-paredes", + "sid": "f-qq35toEntEOi32DufRVn4w", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Cesar Ignacio Paredes", + "price": 18.0, + "link": null, + "sid": "s-m-f-qq35toEntEOi32DufRVn4w-MW3W-away", + "bet_limit": null + }, + { + "name": "Charlie Senior", + "price": 1.01, + "link": null, + "sid": "s-m-f-qq35toEntEOi32DufRVn4w-MW3W-home", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "s-m-f-qq35toEntEOi32DufRVn4w-MW3W-draw", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betsson", + "title": "Betsson", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betsson.com/en/sportsbook/boxing/international/upcoming-fights?tab=liveAndUpcoming&eventId=f-qq35toEntEOi32DufRVn4w&eti=0&fs=true", + "sid": "f-qq35toEntEOi32DufRVn4w", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Cesar Ignacio Paredes", + "price": 18.0, + "link": null, + "sid": "s-m-f-qq35toEntEOi32DufRVn4w-MW3W-away", + "bet_limit": null + }, + { + "name": "Charlie Senior", + "price": 1.01, + "link": null, + "sid": "s-m-f-qq35toEntEOi32DufRVn4w-MW3W-home", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "s-m-f-qq35toEntEOi32DufRVn4w-MW3W-draw", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15360736", + "sid": "15360736", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Cesar Ignacio Paredes", + "price": 17.0, + "link": null, + "sid": "1760348571", + "bet_limit": null + }, + { + "name": "Charlie Senior", + "price": 1.01, + "link": null, + "sid": "1760348569", + "bet_limit": null + }, + { + "name": "Draw", + "price": 21.0, + "link": null, + "sid": "1760348570", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/charlie-senior-cesar-ignacio-paredes-202505101100", + "sid": "15262444", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Cesar Ignacio Paredes", + "price": 21.0, + "link": null, + "sid": "1926137105", + "bet_limit": null + }, + { + "name": "Charlie Senior", + "price": 1.0, + "link": null, + "sid": "1926137104", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "e98304b622e34ae26868566ff5324180", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-10T16:00:00Z", + "home_team": "Owen Cooper", + "away_team": "Chris Kongo", + "bookmakers": [ + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023593085", + "sid": "1023593085", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.54, + "link": null, + "sid": "3728737072", + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.55, + "link": null, + "sid": "3728737070", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "3728737071", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/cooper%2C-owen-kongo%2C-chris/SBTE_2_1023593085", + "sid": "SBTE_2_1023593085", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.54, + "link": null, + "sid": "SBTS_2_3728737072", + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.55, + "link": null, + "sid": "SBTS_2_3728737070", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "SBTS_2_3728737071", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/cooper%2C-owen-kongo%2C-chris/SBTE_2_1023593085", + "sid": "SBTE_2_1023593085", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.54, + "link": null, + "sid": "SBTS_2_3728737072", + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.55, + "link": null, + "sid": "SBTS_2_3728737070", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "SBTS_2_3728737071", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023593085", + "sid": "1023593085", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.54, + "link": null, + "sid": "3728737072", + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.55, + "link": null, + "sid": "3728737070", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "3728737071", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023593085", + "sid": "1023593085", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.5, + "link": null, + "sid": "3728737072", + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.43, + "link": null, + "sid": "3728737070", + "bet_limit": null + }, + { + "name": "Draw", + "price": 13.0, + "link": null, + "sid": "3728737071", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/260461924-owen-cooper-chris-kongo", + "sid": "260461924", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.58, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.52, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.5, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "nordicbet", + "title": "Nordic Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.nordicbet.com/en/sportsbook/boxing/international/upcoming-fights/owen-cooper-chris-kongo", + "sid": "f-BKZbdtSdmECSOTftjEa-hA", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.49, + "link": null, + "sid": "s-m-f-BKZbdtSdmECSOTftjEa-hA-MW2W-away", + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.42, + "link": null, + "sid": "s-m-f-BKZbdtSdmECSOTftjEa-hA-MW2W-home", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betsson", + "title": "Betsson", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betsson.com/en/sportsbook/boxing/international/upcoming-fights?tab=liveAndUpcoming&eventId=f-BKZbdtSdmECSOTftjEa-hA&eti=0&fs=true", + "sid": "f-BKZbdtSdmECSOTftjEa-hA", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.49, + "link": null, + "sid": "s-m-f-BKZbdtSdmECSOTftjEa-hA-MW2W-away", + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.42, + "link": null, + "sid": "s-m-f-BKZbdtSdmECSOTftjEa-hA-MW2W-home", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.53, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.59, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263122", + "sid": "32263122", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.57, + "link": "https://sportsbook.draftkings.com/event/32263122?outcomes=0ML79848664_3", + "sid": "0ML79848664_3", + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.35, + "link": "https://sportsbook.draftkings.com/event/32263122?outcomes=0ML79848664_1", + "sid": "0ML79848664_1", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/owen-cooper-chris-kongo-202505101400", + "sid": "15256440", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.54, + "link": null, + "sid": "1924979508", + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.4, + "link": null, + "sid": "1924979507", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490694533", + "sid": "490694533", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.59, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.4, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490694533", + "sid": "490694533", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.59, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.4, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "sport888", + "title": "888sport", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.888sport.com/boxing/boxing/boxing-bouts/owen-cooper-v-chris-kongo-e-5761937/", + "sid": "5761937", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.53, + "link": null, + "sid": "16385846895", + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.5, + "link": null, + "sid": "16385846896", + "bet_limit": null + }, + { + "name": "Draw", + "price": 13.0, + "link": null, + "sid": "16385846894", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "paddypower", + "title": "Paddy Power", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.paddypower.com/boxing/boxing-matches/owen-cooper-v-chris-kongo-34296853", + "sid": "34296853", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.57, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.4, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44423272/sport/boxing/international-matchups/2025/05/10/19-30/owen-cooper-vs-chris-kongo", + "sid": "44423272", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.5, + "link": null, + "sid": "282604622", + "bet_limit": 360 + }, + { + "name": "Owen Cooper", + "price": 2.3, + "link": null, + "sid": "282604621", + "bet_limit": 138 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.77, + "link": null, + "sid": "282604622", + "bet_limit": 179 + }, + { + "name": "Owen Cooper", + "price": 3.0, + "link": null, + "sid": "282604621", + "bet_limit": 179 + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/owen-cooper-v-chris-kongo-34296853", + "sid": "34296853", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.56, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.503105493&selectionId=17829265", + "sid": "17829265", + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.32, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.503105493&selectionId=44195435", + "sid": "44195435", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15360744", + "sid": "15360744", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.57, + "link": null, + "sid": "1760349099", + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.5, + "link": null, + "sid": "1760349097", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "1760349098", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betmgm", + "title": "BetMGM", + "last_update": "2025-05-09T12:30:50Z", + "link": "https://sports.{state}.betmgm.com/en/sports/events/owen-cooper-eng---chris-kongo-eng-17501056", + "sid": "17501056", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:50Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.57, + "link": "https://sports.{state}.betmgm.com/en/sports?options=17501056-1295695019--616942328&type=Single", + "sid": "-616942328", + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.6, + "link": "https://sports.{state}.betmgm.com/en/sports?options=17501056-1295695019--616942330&type=Single", + "sid": "-616942330", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": "https://sports.{state}.betmgm.com/en/sports?options=17501056-1295695019--616942329&type=Single", + "sid": "-616942329", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "coral", + "title": "Coral", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.coral.co.uk/event/boxing/boxing/upcoming-fights/chris-kongo-v-owen-cooper/37367111/main-markets", + "sid": "37367111", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Kongo", + "price": 1.57, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Owen Cooper", + "price": 2.62, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "21ddbb71d11fd63c3f319c45372b4ba1", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-10T16:00:00Z", + "home_team": "Nico Leivars", + "away_team": "Darwin Martinez", + "bookmakers": [ + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/leivars%2C-nico-martinez%2C-darwin/SBTE_2_1023593092", + "sid": "SBTE_2_1023593092", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 18.0, + "link": null, + "sid": "SBTS_2_3728736727", + "bet_limit": null + }, + { + "name": "Nico Leivars", + "price": 1.03, + "link": null, + "sid": "SBTS_2_3728736723", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "SBTS_2_3728736725", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023593092", + "sid": "1023593092", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 14.0, + "link": null, + "sid": "3728736727", + "bet_limit": null + }, + { + "name": "Nico Leivars", + "price": 1.01, + "link": null, + "sid": "3728736723", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "3728736725", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023593092", + "sid": "1023593092", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 18.0, + "link": null, + "sid": "3728736727", + "bet_limit": null + }, + { + "name": "Nico Leivars", + "price": 1.03, + "link": null, + "sid": "3728736723", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "3728736725", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/leivars%2C-nico-martinez%2C-darwin/SBTE_2_1023593092", + "sid": "SBTE_2_1023593092", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 18.0, + "link": null, + "sid": "SBTS_2_3728736727", + "bet_limit": null + }, + { + "name": "Nico Leivars", + "price": 1.03, + "link": null, + "sid": "SBTS_2_3728736723", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "SBTS_2_3728736725", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023593092", + "sid": "1023593092", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 18.0, + "link": null, + "sid": "3728736727", + "bet_limit": null + }, + { + "name": "Nico Leivars", + "price": 1.03, + "link": null, + "sid": "3728736723", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "3728736725", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/260627684-nico-leivars-darwin-martinez", + "sid": "260627684", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 13.9, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Nico Leivars", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 33.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 13.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Nico Leivars", + "price": 1.02, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263125", + "sid": "32263125", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 17.0, + "link": "https://sportsbook.draftkings.com/event/32263125?outcomes=0ML79848667_3", + "sid": "0ML79848667_3", + "bet_limit": null + }, + { + "name": "Nico Leivars", + "price": 1.02, + "link": "https://sportsbook.draftkings.com/event/32263125?outcomes=0ML79848667_1", + "sid": "0ML79848667_1", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/nico-leivars-darwin-martinez-202505101100", + "sid": "15262447", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 16.0, + "link": null, + "sid": "1926137356", + "bet_limit": null + }, + { + "name": "Nico Leivars", + "price": 1.02, + "link": null, + "sid": "1926137355", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490694740", + "sid": "490694740", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 17.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Nico Leivars", + "price": 1.02, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490694740", + "sid": "490694740", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 17.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Nico Leivars", + "price": 1.02, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "paddypower", + "title": "Paddy Power", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.paddypower.com/boxing/boxing-matches/nico-leivars-v-darwing-martinez-34296892", + "sid": "34296892", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 21.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Nico Leivars", + "price": 1.02, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 41.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44423918/sport/boxing/international-matchups/2025/05/10/15-00/nico-leivars-vs-darwing-martinez", + "sid": "44423918", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 9.2, + "link": null, + "sid": "282644211", + "bet_limit": 21 + }, + { + "name": "Nico Leivars", + "price": 1.0, + "link": null, + "sid": "282644210", + "bet_limit": 214726 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 129.87, + "link": null, + "sid": "282644211", + "bet_limit": 179 + }, + { + "name": "Nico Leivars", + "price": 1.13, + "link": null, + "sid": "282644210", + "bet_limit": 179 + } + ] + } + ] + }, + { + "key": "betsson", + "title": "Betsson", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betsson.com/en/sportsbook/boxing/international/upcoming-fights?tab=liveAndUpcoming&eventId=f-oSvFunQ_vUuS5T4nNnImIg&eti=0&fs=true", + "sid": "f-oSvFunQ_vUuS5T4nNnImIg", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 12.0, + "link": null, + "sid": "s-m-f-oSvFunQ_vUuS5T4nNnImIg-MW2W-away", + "bet_limit": null + }, + { + "name": "Nico Leivars", + "price": 1.01, + "link": null, + "sid": "s-m-f-oSvFunQ_vUuS5T4nNnImIg-MW2W-home", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "nordicbet", + "title": "Nordic Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.nordicbet.com/en/sportsbook/boxing/international/upcoming-fights/nico-leivars-darwin-martinez", + "sid": "f-oSvFunQ_vUuS5T4nNnImIg", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 12.0, + "link": null, + "sid": "s-m-f-oSvFunQ_vUuS5T4nNnImIg-MW2W-away", + "bet_limit": null + }, + { + "name": "Nico Leivars", + "price": 1.01, + "link": null, + "sid": "s-m-f-oSvFunQ_vUuS5T4nNnImIg-MW2W-home", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15360741", + "sid": "15360741", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 15.0, + "link": null, + "sid": "1760348898", + "bet_limit": null + }, + { + "name": "Nico Leivars", + "price": 1.02, + "link": null, + "sid": "1760348896", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "1760348897", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "sport888", + "title": "888sport", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.888sport.com/boxing/boxing/boxing-bouts/nico-leivars-v-darwin-martinez-e-5768885/", + "sid": "5768885", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darwin Martinez", + "price": 12.0, + "link": null, + "sid": "16387174971", + "bet_limit": null + }, + { + "name": "Nico Leivars", + "price": 1.02, + "link": null, + "sid": "16387174969", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "16387174970", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "2fa09ab7cf846f93253683dc4493a8ef", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-10T16:00:00Z", + "home_team": "Joe Cooper", + "away_team": "Dmitri Protkunas", + "bookmakers": [ + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023593090", + "sid": "1023593090", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dmitri Protkunas", + "price": 17.0, + "link": null, + "sid": "3728737129", + "bet_limit": null + }, + { + "name": "Joe Cooper", + "price": 1.03, + "link": null, + "sid": "3728737127", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "3728737128", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023593090", + "sid": "1023593090", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dmitri Protkunas", + "price": 17.0, + "link": null, + "sid": "3728737129", + "bet_limit": null + }, + { + "name": "Joe Cooper", + "price": 1.03, + "link": null, + "sid": "3728737127", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "3728737128", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023593090", + "sid": "1023593090", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dmitri Protkunas", + "price": 14.0, + "link": null, + "sid": "3728737129", + "bet_limit": null + }, + { + "name": "Joe Cooper", + "price": 1.01, + "link": null, + "sid": "3728737127", + "bet_limit": null + }, + { + "name": "Draw", + "price": 18.0, + "link": null, + "sid": "3728737128", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/cooper%2C-joe-protkunas%2C-dmitri/SBTE_2_1023593090", + "sid": "SBTE_2_1023593090", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dmitri Protkunas", + "price": 17.0, + "link": null, + "sid": "SBTS_2_3728737129", + "bet_limit": null + }, + { + "name": "Joe Cooper", + "price": 1.03, + "link": null, + "sid": "SBTS_2_3728737127", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "SBTS_2_3728737128", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/cooper%2C-joe-protkunas%2C-dmitri/SBTE_2_1023593090", + "sid": "SBTE_2_1023593090", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dmitri Protkunas", + "price": 17.0, + "link": null, + "sid": "SBTS_2_3728737129", + "bet_limit": null + }, + { + "name": "Joe Cooper", + "price": 1.03, + "link": null, + "sid": "SBTS_2_3728737127", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "SBTS_2_3728737128", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/260627683-joe-cooper-dmitri-protkunas", + "sid": "260627683", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dmitri Protkunas", + "price": 12.4, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Joe Cooper", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 55.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dmitri Protkunas", + "price": 21.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Joe Cooper", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263126", + "sid": "32263126", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dmitri Protkunas", + "price": 19.0, + "link": "https://sportsbook.draftkings.com/event/32263126?outcomes=0ML79848668_3", + "sid": "0ML79848668_3", + "bet_limit": null + }, + { + "name": "Joe Cooper", + "price": 1.01, + "link": "https://sportsbook.draftkings.com/event/32263126?outcomes=0ML79848668_1", + "sid": "0ML79848668_1", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/joe-cooper-dmitri-protkunas-202505101100", + "sid": "15262443", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dmitri Protkunas", + "price": 22.0, + "link": null, + "sid": "1926137099", + "bet_limit": null + }, + { + "name": "Joe Cooper", + "price": 1.0, + "link": null, + "sid": "1926137098", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490694798", + "sid": "490694798", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dmitri Protkunas", + "price": 21.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Joe Cooper", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490694798", + "sid": "490694798", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dmitri Protkunas", + "price": 21.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Joe Cooper", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "paddypower", + "title": "Paddy Power", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.paddypower.com/boxing/boxing-matches/joe-cooper-v-dmitri-protkunas-34296895", + "sid": "34296895", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dmitri Protkunas", + "price": 34.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Joe Cooper", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 61.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44423917/sport/boxing/international-matchups/2025/05/10/15-00/joe-cooper-vs-dmitri-protkunas", + "sid": "44423917", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dmitri Protkunas", + "price": 9.2, + "link": null, + "sid": "282644207", + "bet_limit": 21 + }, + { + "name": "Joe Cooper", + "price": 1.0, + "link": null, + "sid": "282644206", + "bet_limit": 214726 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dmitri Protkunas", + "price": 129.87, + "link": null, + "sid": "282644207", + "bet_limit": 179 + }, + { + "name": "Joe Cooper", + "price": 1.13, + "link": null, + "sid": "282644206", + "bet_limit": 179 + } + ] + } + ] + }, + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15360738", + "sid": "15360738", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dmitri Protkunas", + "price": 17.0, + "link": null, + "sid": "1760348701", + "bet_limit": null + }, + { + "name": "Joe Cooper", + "price": 1.01, + "link": null, + "sid": "1760348699", + "bet_limit": null + }, + { + "name": "Draw", + "price": 21.0, + "link": null, + "sid": "1760348700", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "6355142788d67d1b3b6fe15f56879b08", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-10T16:00:00Z", + "home_team": "Troy Jones", + "away_team": "Ezra Taylor", + "bookmakers": [ + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/jones%2C-troy-taylor%2C-ezra/SBTE_2_1023593084", + "sid": "SBTE_2_1023593084", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.3, + "link": null, + "sid": "SBTS_2_3728715538", + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 3.75, + "link": null, + "sid": "SBTS_2_3728715535", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "SBTS_2_3728715536", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023593084", + "sid": "1023593084", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.28, + "link": null, + "sid": "3728715538", + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 3.45, + "link": null, + "sid": "3728715535", + "bet_limit": null + }, + { + "name": "Draw", + "price": 12.5, + "link": null, + "sid": "3728715536", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023593084", + "sid": "1023593084", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.3, + "link": null, + "sid": "3728715538", + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 3.75, + "link": null, + "sid": "3728715535", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "3728715536", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/jones%2C-troy-taylor%2C-ezra/SBTE_2_1023593084", + "sid": "SBTE_2_1023593084", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.3, + "link": null, + "sid": "SBTS_2_3728715538", + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 3.75, + "link": null, + "sid": "SBTS_2_3728715535", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "SBTS_2_3728715536", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023593084", + "sid": "1023593084", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.3, + "link": null, + "sid": "3728715538", + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 3.75, + "link": null, + "sid": "3728715535", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "3728715536", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/260461926-ezra-taylor-troy-jones", + "sid": "260461926", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.24, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 4.14, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 28.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "nordicbet", + "title": "Nordic Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.nordicbet.com/en/sportsbook/boxing/international/upcoming-fights/ezra-taylor-troy-jones", + "sid": "f-4ASjsMOmY02vcahuK6vXAw", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.21, + "link": null, + "sid": "s-m-f-4ASjsMOmY02vcahuK6vXAw-MW2W-home", + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 3.95, + "link": null, + "sid": "s-m-f-4ASjsMOmY02vcahuK6vXAw-MW2W-away", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betsson", + "title": "Betsson", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betsson.com/en/sportsbook/boxing/international/upcoming-fights?tab=liveAndUpcoming&eventId=f-4ASjsMOmY02vcahuK6vXAw&eti=0&fs=true", + "sid": "f-4ASjsMOmY02vcahuK6vXAw", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.21, + "link": null, + "sid": "s-m-f-4ASjsMOmY02vcahuK6vXAw-MW2W-home", + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 3.95, + "link": null, + "sid": "s-m-f-4ASjsMOmY02vcahuK6vXAw-MW2W-away", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.27, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 3.7, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "pinnacle", + "title": "Pinnacle", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.pinnacle.com/en/boxing/boxing-matches/ezra-taylor-vs-troy-jones/1609294531/", + "sid": "1609294531", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.21, + "link": null, + "sid": null, + "bet_limit": 500 + }, + { + "name": "Troy Jones", + "price": 4.78, + "link": null, + "sid": null, + "bet_limit": 500 + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/ezra-taylor-troy-jones-202505101500", + "sid": "15256442", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.17, + "link": null, + "sid": "1924979636", + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 4.75, + "link": null, + "sid": "1924979637", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490694536", + "sid": "490694536", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.18, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 4.66, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490694536", + "sid": "490694536", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.18, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 4.66, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44423273/sport/boxing/international-matchups/2025/05/10/20-00/ezra-taylor-vs-troy-jones", + "sid": "44423273", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.18, + "link": null, + "sid": "282604841", + "bet_limit": 1000 + }, + { + "name": "Troy Jones", + "price": 4.0, + "link": null, + "sid": "282604842", + "bet_limit": 60 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.34, + "link": null, + "sid": "282604841", + "bet_limit": 179 + }, + { + "name": "Troy Jones", + "price": 6.6, + "link": null, + "sid": "282604842", + "bet_limit": 179 + } + ] + } + ] + }, + { + "key": "sport888", + "title": "888sport", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.888sport.com/boxing/boxing/boxing-bouts/ezra-taylor-v-troy-jones-e-5761938/", + "sid": "5761938", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.25, + "link": null, + "sid": "16385846899", + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 3.9, + "link": null, + "sid": "16385846900", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "16385846901", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "paddypower", + "title": "Paddy Power", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.paddypower.com/boxing/boxing-matches/ezra-taylor-v-troy-jones-34296854", + "sid": "34296854", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.29, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 3.75, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/ezra-taylor-v-troy-jones-34296854", + "sid": "34296854", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.26, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.503105481&selectionId=40690662", + "sid": "40690662", + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 3.6, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.503105481&selectionId=77047789", + "sid": "77047789", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32267613", + "sid": "32267613", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.19, + "link": "https://sportsbook.draftkings.com/event/32267613?outcomes=0ML79860868_1", + "sid": "0ML79860868_1", + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 4.6, + "link": "https://sportsbook.draftkings.com/event/32267613?outcomes=0ML79860868_3", + "sid": "0ML79860868_3", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15360745", + "sid": "15360745", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.3, + "link": null, + "sid": "1760349162", + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 3.75, + "link": null, + "sid": "1760349164", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "1760349163", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betmgm", + "title": "BetMGM", + "last_update": "2025-05-09T12:30:50Z", + "link": "https://sports.{state}.betmgm.com/en/sports/events/ezra-taylor-eng---troy-jones-eng-17501047", + "sid": "17501047", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:50Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.29, + "link": "https://sports.{state}.betmgm.com/en/sports?options=17501047-1295694010--616945354&type=Single", + "sid": "-616945354", + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 4.0, + "link": "https://sports.{state}.betmgm.com/en/sports?options=17501047-1295694010--616945352&type=Single", + "sid": "-616945352", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": "https://sports.{state}.betmgm.com/en/sports?options=17501047-1295694010--616945353&type=Single", + "sid": "-616945353", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "coral", + "title": "Coral", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.coral.co.uk/event/boxing/boxing/upcoming-fights/ezra-taylor-v-troy-jones/37366988/main-markets", + "sid": "37366988", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ezra Taylor", + "price": 1.28, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Troy Jones", + "price": 4.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "bf3d66609cf6059116a9a6410dd1fa2f", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-10T16:00:00Z", + "home_team": "Harris Akbar", + "away_team": "Remi Scholer", + "bookmakers": [ + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023593086", + "sid": "1023593086", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Harris Akbar", + "price": 1.08, + "link": null, + "sid": "3728693021", + "bet_limit": null + }, + { + "name": "Remi Scholer", + "price": 10.5, + "link": null, + "sid": "3728693024", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3728693022", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023593086", + "sid": "1023593086", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Harris Akbar", + "price": 1.08, + "link": null, + "sid": "3728693021", + "bet_limit": null + }, + { + "name": "Remi Scholer", + "price": 10.5, + "link": null, + "sid": "3728693024", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3728693022", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023593086", + "sid": "1023593086", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Harris Akbar", + "price": 1.06, + "link": null, + "sid": "3728693021", + "bet_limit": null + }, + { + "name": "Remi Scholer", + "price": 9.0, + "link": null, + "sid": "3728693024", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "3728693022", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/akbar%2C-harris-scholer%2C-remi/SBTE_2_1023593086", + "sid": "SBTE_2_1023593086", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Harris Akbar", + "price": 1.08, + "link": null, + "sid": "SBTS_2_3728693021", + "bet_limit": null + }, + { + "name": "Remi Scholer", + "price": 10.5, + "link": null, + "sid": "SBTS_2_3728693024", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3728693022", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/akbar%2C-harris-scholer%2C-remi/SBTE_2_1023593086", + "sid": "SBTE_2_1023593086", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Harris Akbar", + "price": 1.08, + "link": null, + "sid": "SBTS_2_3728693021", + "bet_limit": null + }, + { + "name": "Remi Scholer", + "price": 10.5, + "link": null, + "sid": "SBTS_2_3728693024", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3728693022", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "26bc0ce09f45fa18004fb80315e54601", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-10T16:00:00Z", + "home_team": "Huey Malone", + "away_team": "Jakub Laskowski", + "bookmakers": [ + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023593087", + "sid": "1023593087", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Huey Malone", + "price": 1.03, + "link": null, + "sid": "3728737374", + "bet_limit": null + }, + { + "name": "Jakub Laskowski", + "price": 19.0, + "link": null, + "sid": "3728737377", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "3728737376", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/malone%2C-huey-laskowski%2C-jakub/SBTE_2_1023593087", + "sid": "SBTE_2_1023593087", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Huey Malone", + "price": 1.03, + "link": null, + "sid": "SBTS_2_3728737374", + "bet_limit": null + }, + { + "name": "Jakub Laskowski", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3728737377", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "SBTS_2_3728737376", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023593087", + "sid": "1023593087", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Huey Malone", + "price": 1.03, + "link": null, + "sid": "3728737374", + "bet_limit": null + }, + { + "name": "Jakub Laskowski", + "price": 19.0, + "link": null, + "sid": "3728737377", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "3728737376", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023593087", + "sid": "1023593087", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Huey Malone", + "price": 1.01, + "link": null, + "sid": "3728737374", + "bet_limit": null + }, + { + "name": "Jakub Laskowski", + "price": 15.0, + "link": null, + "sid": "3728737377", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3728737376", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/malone%2C-huey-laskowski%2C-jakub/SBTE_2_1023593087", + "sid": "SBTE_2_1023593087", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Huey Malone", + "price": 1.03, + "link": null, + "sid": "SBTS_2_3728737374", + "bet_limit": null + }, + { + "name": "Jakub Laskowski", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3728737377", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "SBTS_2_3728737376", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Huey Malone", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Jakub Laskowski", + "price": 21.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/260633864-huey-malone-jakub-laskowski", + "sid": "260633864", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Huey Malone", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Jakub Laskowski", + "price": 11.8, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 65.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490694734", + "sid": "490694734", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Huey Malone", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Jakub Laskowski", + "price": 21.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490694734", + "sid": "490694734", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Huey Malone", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Jakub Laskowski", + "price": 21.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "paddypower", + "title": "Paddy Power", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.paddypower.com/boxing/boxing-matches/huey-malone-v-jakub-laskowski-34297018", + "sid": "34297018", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Huey Malone", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Jakub Laskowski", + "price": 34.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 61.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44423822/sport/boxing/international-matchups/2025/05/10/15-00/huey-malone-vs-jakub-laskowski", + "sid": "44423822", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Huey Malone", + "price": 1.0, + "link": null, + "sid": "282634435", + "bet_limit": 214726 + }, + { + "name": "Jakub Laskowski", + "price": 9.6, + "link": null, + "sid": "282634436", + "bet_limit": 20 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Huey Malone", + "price": 1.12, + "link": null, + "sid": "282634435", + "bet_limit": 179 + }, + { + "name": "Jakub Laskowski", + "price": 250.0, + "link": null, + "sid": "282634436", + "bet_limit": 180 + } + ] + } + ] + }, + { + "key": "betfair_sb_uk", + "title": "Betfair Sportsbook", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betfair.com/betting/boxing/boxing-matches/huey-malone-v-jakub-laskowski/e-34297018", + "sid": "34297018", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Huey Malone", + "price": 1.01, + "link": null, + "sid": "83393293", + "bet_limit": null + }, + { + "name": "Jakub Laskowski", + "price": 34.0, + "link": null, + "sid": "40371503", + "bet_limit": null + }, + { + "name": "Draw", + "price": 61.0, + "link": null, + "sid": "31162", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15360737", + "sid": "15360737", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Huey Malone", + "price": 1.01, + "link": null, + "sid": "1760348634", + "bet_limit": null + }, + { + "name": "Jakub Laskowski", + "price": 17.0, + "link": null, + "sid": "1760348636", + "bet_limit": null + }, + { + "name": "Draw", + "price": 21.0, + "link": null, + "sid": "1760348635", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betsson", + "title": "Betsson", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betsson.com/en/sportsbook/boxing/international/upcoming-fights?tab=liveAndUpcoming&eventId=f-AJFxwB2tI0yvlORzXoQASQ&eti=0&fs=true", + "sid": "f-AJFxwB2tI0yvlORzXoQASQ", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Huey Malone", + "price": 1.01, + "link": null, + "sid": "s-m-f-AJFxwB2tI0yvlORzXoQASQ-MW3W-home", + "bet_limit": null + }, + { + "name": "Jakub Laskowski", + "price": 17.5, + "link": null, + "sid": "s-m-f-AJFxwB2tI0yvlORzXoQASQ-MW3W-away", + "bet_limit": null + }, + { + "name": "Draw", + "price": 27.0, + "link": null, + "sid": "s-m-f-AJFxwB2tI0yvlORzXoQASQ-MW3W-draw", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "nordicbet", + "title": "Nordic Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.nordicbet.com/en/sportsbook/boxing/international/upcoming-fights/huey-malone-jakub-laskowski", + "sid": "f-AJFxwB2tI0yvlORzXoQASQ", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Huey Malone", + "price": 1.01, + "link": null, + "sid": "s-m-f-AJFxwB2tI0yvlORzXoQASQ-MW3W-home", + "bet_limit": null + }, + { + "name": "Jakub Laskowski", + "price": 17.5, + "link": null, + "sid": "s-m-f-AJFxwB2tI0yvlORzXoQASQ-MW3W-away", + "bet_limit": null + }, + { + "name": "Draw", + "price": 27.0, + "link": null, + "sid": "s-m-f-AJFxwB2tI0yvlORzXoQASQ-MW3W-draw", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/huey-malone-jakub-laskowski-202505101100", + "sid": "15263312", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Huey Malone", + "price": 1.0, + "link": null, + "sid": "1926186168", + "bet_limit": null + }, + { + "name": "Jakub Laskowski", + "price": 21.0, + "link": null, + "sid": "1926186169", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "a7d1355cb96f03073237303ff8208e3c", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-10T16:00:00Z", + "home_team": "Joe Tyers", + "away_team": "Mario Valenzuela", + "bookmakers": [ + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023593089", + "sid": "1023593089", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Joe Tyers", + "price": 1.06, + "link": null, + "sid": "3728737365", + "bet_limit": null + }, + { + "name": "Mario Valenzuela", + "price": 11.0, + "link": null, + "sid": "3728737368", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "3728737367", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023593089", + "sid": "1023593089", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Joe Tyers", + "price": 1.06, + "link": null, + "sid": "3728737365", + "bet_limit": null + }, + { + "name": "Mario Valenzuela", + "price": 11.0, + "link": null, + "sid": "3728737368", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "3728737367", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023593089", + "sid": "1023593089", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Joe Tyers", + "price": 1.04, + "link": null, + "sid": "3728737365", + "bet_limit": null + }, + { + "name": "Mario Valenzuela", + "price": 9.0, + "link": null, + "sid": "3728737368", + "bet_limit": null + }, + { + "name": "Draw", + "price": 18.0, + "link": null, + "sid": "3728737367", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/tyers%2C-joe-valenzuela%2C-mario/SBTE_2_1023593089", + "sid": "SBTE_2_1023593089", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Joe Tyers", + "price": 1.06, + "link": null, + "sid": "SBTS_2_3728737365", + "bet_limit": null + }, + { + "name": "Mario Valenzuela", + "price": 11.0, + "link": null, + "sid": "SBTS_2_3728737368", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "SBTS_2_3728737367", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/tyers%2C-joe-valenzuela%2C-mario/SBTE_2_1023593089", + "sid": "SBTE_2_1023593089", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Joe Tyers", + "price": 1.06, + "link": null, + "sid": "SBTS_2_3728737365", + "bet_limit": null + }, + { + "name": "Mario Valenzuela", + "price": 11.0, + "link": null, + "sid": "SBTS_2_3728737368", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "SBTS_2_3728737367", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Joe Tyers", + "price": 1.05, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Mario Valenzuela", + "price": 9.5, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/260633863-joe-tyers-mario-ramon-valenzuela-portillo", + "sid": "260633863", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Joe Tyers", + "price": 1.03, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Mario Valenzuela", + "price": 11.9, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 28.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490694736", + "sid": "490694736", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Joe Tyers", + "price": 1.05, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Mario Valenzuela", + "price": 11.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490694736", + "sid": "490694736", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Joe Tyers", + "price": 1.05, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Mario Valenzuela", + "price": 11.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "paddypower", + "title": "Paddy Power", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.paddypower.com/boxing/boxing-matches/joe-tyers-v-mario-valenzuela-portillo-34296894", + "sid": "34296894", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Joe Tyers", + "price": 1.04, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Mario Valenzuela", + "price": 11.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 26.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44423920/sport/boxing/international-matchups/2025/05/10/15-00/joe-tyers-vs-mario-valenzuela-portillo", + "sid": "44423920", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Joe Tyers", + "price": 1.02, + "link": null, + "sid": "282644255", + "bet_limit": 9003 + }, + { + "name": "Mario Valenzuela", + "price": 8.0, + "link": null, + "sid": "282644256", + "bet_limit": 25 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Joe Tyers", + "price": 1.15, + "link": null, + "sid": "282644255", + "bet_limit": 179 + }, + { + "name": "Mario Valenzuela", + "price": 42.02, + "link": null, + "sid": "282644256", + "bet_limit": 179 + } + ] + } + ] + }, + { + "key": "betsson", + "title": "Betsson", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betsson.com/en/sportsbook/boxing/international/upcoming-fights?tab=liveAndUpcoming&eventId=f-aZ7oXbhq4kS4kAwCBEwfJQ&eti=0&fs=true", + "sid": "f-aZ7oXbhq4kS4kAwCBEwfJQ", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Joe Tyers", + "price": 1.03, + "link": null, + "sid": "s-m-f-aZ7oXbhq4kS4kAwCBEwfJQ-MW2W-home", + "bet_limit": null + }, + { + "name": "Mario Valenzuela", + "price": 8.9, + "link": null, + "sid": "s-m-f-aZ7oXbhq4kS4kAwCBEwfJQ-MW2W-away", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "nordicbet", + "title": "Nordic Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.nordicbet.com/en/sportsbook/boxing/international/upcoming-fights/joe-tyers-mario-valenzuela-portillo", + "sid": "f-aZ7oXbhq4kS4kAwCBEwfJQ", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Joe Tyers", + "price": 1.03, + "link": null, + "sid": "s-m-f-aZ7oXbhq4kS4kAwCBEwfJQ-MW2W-home", + "bet_limit": null + }, + { + "name": "Mario Valenzuela", + "price": 8.9, + "link": null, + "sid": "s-m-f-aZ7oXbhq4kS4kAwCBEwfJQ-MW2W-away", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15360739", + "sid": "15360739", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Joe Tyers", + "price": 1.05, + "link": null, + "sid": "1760348766", + "bet_limit": null + }, + { + "name": "Mario Valenzuela", + "price": 11.0, + "link": null, + "sid": "1760348768", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "1760348767", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/joe-tyers-mario-ramon-valenzuela-portillo-202505101100", + "sid": "15263311", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Joe Tyers", + "price": 1.05, + "link": null, + "sid": "1926186148", + "bet_limit": null + }, + { + "name": "Mario Valenzuela", + "price": 10.0, + "link": null, + "sid": "1926186149", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "sport888", + "title": "888sport", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.888sport.com/boxing/boxing/boxing-bouts/joe-tyers-v-mario-valenzuela-portillo-e-5768884/", + "sid": "5768884", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Joe Tyers", + "price": 1.05, + "link": null, + "sid": "16387174965", + "bet_limit": null + }, + { + "name": "Mario Valenzuela", + "price": 9.5, + "link": null, + "sid": "16387174966", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "16387174964", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "ac3d3795b52ee8b23dd58be5e89b1e41", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-10T16:00:00Z", + "home_team": "Liam Davies", + "away_team": "Kurt Walker", + "bookmakers": [ + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15328480", + "sid": "15328480", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.33, + "link": null, + "sid": "1750375822", + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.22, + "link": null, + "sid": "1750375820", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "1750375821", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "paddypower", + "title": "Paddy Power", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.paddypower.com/boxing/boxing-matches/liam-davies-v-kurt-walker-34139383", + "sid": "34139383", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.5, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.2, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/253768030-liam-davies-kurt-walker", + "sid": "253768030", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.39, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.23, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 26.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023593083", + "sid": "1023593083", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.1, + "link": null, + "sid": "3728680103", + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.2, + "link": null, + "sid": "3728680099", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3728680101", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023593083", + "sid": "1023593083", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.5, + "link": null, + "sid": "3728680103", + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.22, + "link": null, + "sid": "3728680099", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3728680101", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/davies%2C-liam-walker%2C-kurt/SBTE_2_1023593083", + "sid": "SBTE_2_1023593083", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.5, + "link": null, + "sid": "SBTS_2_3728680103", + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.22, + "link": null, + "sid": "SBTS_2_3728680099", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3728680101", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/davies%2C-liam-walker%2C-kurt/SBTE_2_1023593083", + "sid": "SBTE_2_1023593083", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.5, + "link": null, + "sid": "SBTS_2_3728680103", + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.22, + "link": null, + "sid": "SBTS_2_3728680099", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3728680101", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023593083", + "sid": "1023593083", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.5, + "link": null, + "sid": "3728680103", + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.22, + "link": null, + "sid": "3728680099", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3728680101", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/liam-davies-v-kurt-walker-34139383", + "sid": "34139383", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.5, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.489885904&selectionId=28206499", + "sid": "28206499", + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.18, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.489885904&selectionId=36835808", + "sid": "36835808", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.25, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betfair_ex_uk", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34139383", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.241130483", + "sid": "1.241130483", + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.5, + "link": null, + "sid": "28206499", + "bet_limit": 52 + }, + { + "name": "Liam Davies", + "price": 1.28, + "link": null, + "sid": "36835809", + "bet_limit": 59 + }, + { + "name": "Draw", + "price": 4.1, + "link": null, + "sid": "31162", + "bet_limit": 53 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 1000.0, + "link": null, + "sid": "28206499", + "bet_limit": 8 + }, + { + "name": "Liam Davies", + "price": 1.32, + "link": null, + "sid": "36835809", + "bet_limit": 160 + }, + { + "name": "Draw", + "price": 40.0, + "link": null, + "sid": "31162", + "bet_limit": 53 + } + ] + } + ] + }, + { + "key": "betfair_ex_eu", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34139383", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.241130483", + "sid": "1.241130483", + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.5, + "link": null, + "sid": "28206499", + "bet_limit": 61 + }, + { + "name": "Liam Davies", + "price": 1.28, + "link": null, + "sid": "36835809", + "bet_limit": 70 + }, + { + "name": "Draw", + "price": 4.1, + "link": null, + "sid": "31162", + "bet_limit": 63 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 1000.0, + "link": null, + "sid": "28206499", + "bet_limit": 10 + }, + { + "name": "Liam Davies", + "price": 1.32, + "link": null, + "sid": "36835809", + "bet_limit": 189 + }, + { + "name": "Draw", + "price": 40.0, + "link": null, + "sid": "31162", + "bet_limit": 62 + } + ] + } + ] + }, + { + "key": "coral", + "title": "Coral", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.coral.co.uk/event/boxing/boxing/upcoming-fights/liam-davies-v-kurt-walker/37319820/main-markets", + "sid": "37319820", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.33, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.25, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490693585", + "sid": "490693585", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 3.84, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.25, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490693585", + "sid": "490693585", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 3.84, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.25, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betsson", + "title": "Betsson", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betsson.com/en/sportsbook/boxing/international/upcoming-fights?tab=liveAndUpcoming&eventId=f-NunBI3j5AkG2IdeU0g9hKg&eti=0&fs=true", + "sid": "f-NunBI3j5AkG2IdeU0g9hKg", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.4, + "link": null, + "sid": "s-m-f-NunBI3j5AkG2IdeU0g9hKg-MW2W-away", + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.17, + "link": null, + "sid": "s-m-f-NunBI3j5AkG2IdeU0g9hKg-MW2W-home", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "nordicbet", + "title": "Nordic Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.nordicbet.com/en/sportsbook/boxing/international/upcoming-fights/l-davies-kurt-anthony-walker", + "sid": "f-NunBI3j5AkG2IdeU0g9hKg", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.4, + "link": null, + "sid": "s-m-f-NunBI3j5AkG2IdeU0g9hKg-MW2W-away", + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.17, + "link": null, + "sid": "s-m-f-NunBI3j5AkG2IdeU0g9hKg-MW2W-home", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/liam-davies-kurt-walker-202505101600", + "sid": "15029045", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 3.9, + "link": null, + "sid": "1905099798", + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.23, + "link": null, + "sid": "1905099797", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32259974", + "sid": "32259974", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.0, + "link": "https://sportsbook.draftkings.com/event/32259974?outcomes=0ML79839584_3", + "sid": "0ML79839584_3", + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.25, + "link": "https://sportsbook.draftkings.com/event/32259974?outcomes=0ML79839584_1", + "sid": "0ML79839584_1", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betmgm", + "title": "BetMGM", + "last_update": "2025-05-09T12:30:50Z", + "link": "https://sports.{state}.betmgm.com/en/sports/events/liam-davies-eng---kurt-walker-irl-17501045", + "sid": "17501045", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:50Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.33, + "link": "https://sports.{state}.betmgm.com/en/sports?options=17501045-1295692949--616948112&type=Single", + "sid": "-616948112", + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.25, + "link": "https://sports.{state}.betmgm.com/en/sports?options=17501045-1295692949--616948114&type=Single", + "sid": "-616948114", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": "https://sports.{state}.betmgm.com/en/sports?options=17501045-1295692949--616948113&type=Single", + "sid": "-616948113", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "sport888", + "title": "888sport", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.888sport.com/boxing/boxing/boxing-bouts/liam-davies-v-kurt-anthony-walker-e-5761939/", + "sid": "5761939", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.6, + "link": null, + "sid": "16385846904", + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.22, + "link": null, + "sid": "16385846906", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "16385846905", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "everygame", + "title": "Everygame", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://sports.everygame.eu/en/Bets/Boxing-UFC/Boxing/Kurt-Walker-v-Liam-Davies/2648799", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Kurt Walker", + "price": 4.45, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Liam Davies", + "price": 1.22, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "f8df88ac720d06748fdc870ad470f332", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-10T16:00:00Z", + "home_team": "Lewis Williams", + "away_team": "Viktor Chvarkou", + "bookmakers": [ + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023593091", + "sid": "1023593091", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Lewis Williams", + "price": 1.03, + "link": null, + "sid": "3728705381", + "bet_limit": null + }, + { + "name": "Viktor Chvarkou", + "price": 19.0, + "link": null, + "sid": "3728705384", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "3728705383", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/williams%2C-lewis-chvarkou%2C-viktor/SBTE_2_1023593091", + "sid": "SBTE_2_1023593091", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Lewis Williams", + "price": 1.03, + "link": null, + "sid": "SBTS_2_3728705381", + "bet_limit": null + }, + { + "name": "Viktor Chvarkou", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3728705384", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "SBTS_2_3728705383", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023593091", + "sid": "1023593091", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Lewis Williams", + "price": 1.03, + "link": null, + "sid": "3728705381", + "bet_limit": null + }, + { + "name": "Viktor Chvarkou", + "price": 19.0, + "link": null, + "sid": "3728705384", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "3728705383", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023593091", + "sid": "1023593091", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Lewis Williams", + "price": 1.01, + "link": null, + "sid": "3728705381", + "bet_limit": null + }, + { + "name": "Viktor Chvarkou", + "price": 15.0, + "link": null, + "sid": "3728705384", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3728705383", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/williams%2C-lewis-chvarkou%2C-viktor/SBTE_2_1023593091", + "sid": "SBTE_2_1023593091", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Lewis Williams", + "price": 1.03, + "link": null, + "sid": "SBTS_2_3728705381", + "bet_limit": null + }, + { + "name": "Viktor Chvarkou", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3728705384", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "SBTS_2_3728705383", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "4b5862b283c9602153415f6059cf56ce", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-10T16:00:00Z", + "home_team": "Sam Noakes", + "away_team": "Patrik Bal\u00e1\u017e", + "bookmakers": [ + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023593093", + "sid": "1023593093", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Patrik Bal\u00e1\u017e", + "price": 18.0, + "link": null, + "sid": "3728736995", + "bet_limit": null + }, + { + "name": "Sam Noakes", + "price": 1.03, + "link": null, + "sid": "3728736991", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "3728736993", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/noakes%2C-sam-bal%C3%A1%C5%BE%2C-patrik/SBTE_2_1023593093", + "sid": "SBTE_2_1023593093", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Patrik Bal\u00e1\u017e", + "price": 18.0, + "link": null, + "sid": "SBTS_2_3728736995", + "bet_limit": null + }, + { + "name": "Sam Noakes", + "price": 1.03, + "link": null, + "sid": "SBTS_2_3728736991", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "SBTS_2_3728736993", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023593093", + "sid": "1023593093", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Patrik Bal\u00e1\u017e", + "price": 18.0, + "link": null, + "sid": "3728736995", + "bet_limit": null + }, + { + "name": "Sam Noakes", + "price": 1.03, + "link": null, + "sid": "3728736991", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "3728736993", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023593093", + "sid": "1023593093", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Patrik Bal\u00e1\u017e", + "price": 14.0, + "link": null, + "sid": "3728736995", + "bet_limit": null + }, + { + "name": "Sam Noakes", + "price": 1.01, + "link": null, + "sid": "3728736991", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "3728736993", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/noakes%2C-sam-bal%C3%A1%C5%BE%2C-patrik/SBTE_2_1023593093", + "sid": "SBTE_2_1023593093", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Patrik Bal\u00e1\u017e", + "price": 18.0, + "link": null, + "sid": "SBTS_2_3728736995", + "bet_limit": null + }, + { + "name": "Sam Noakes", + "price": 1.03, + "link": null, + "sid": "SBTS_2_3728736991", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "SBTS_2_3728736993", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "6f9847ba240abc26c2a4cd8e141d3bd3", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-10T19:34:00Z", + "home_team": "Anthony Cacace", + "away_team": "Leigh Wood", + "bookmakers": [ + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/cacace%2C-anthony-wood%2C-leigh/SBTE_2_1023572552", + "sid": "SBTE_2_1023572552", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.43, + "link": null, + "sid": "SBTS_2_3725444587", + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 2.95, + "link": null, + "sid": "SBTS_2_3725444590", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "SBTS_2_3725444589", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/cacace%2C-anthony-wood%2C-leigh/SBTE_2_1023572552", + "sid": "SBTE_2_1023572552", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.43, + "link": null, + "sid": "SBTS_2_3725444587", + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 2.95, + "link": null, + "sid": "SBTS_2_3725444590", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "SBTS_2_3725444589", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023572552", + "sid": "1023572552", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.41, + "link": null, + "sid": "3725444587", + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 2.8, + "link": null, + "sid": "3725444590", + "bet_limit": null + }, + { + "name": "Draw", + "price": 12.5, + "link": null, + "sid": "3725444589", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023572552", + "sid": "1023572552", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.43, + "link": null, + "sid": "3725444587", + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 2.95, + "link": null, + "sid": "3725444590", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "3725444589", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023572552", + "sid": "1023572552", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.43, + "link": null, + "sid": "3725444587", + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 2.95, + "link": null, + "sid": "3725444590", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "3725444589", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.38, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 3.1, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betrivers", + "title": "BetRivers", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023572552", + "sid": "1023572552", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.4, + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023572552?coupon={pickType}|3725444586|{wagerAmount}", + "sid": "3725444586", + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 2.85, + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023572552?coupon={pickType}|3725444588|{wagerAmount}", + "sid": "3725444588", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/248748493-anthony-cacace-leigh-wood", + "sid": "248748493", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.44, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 3.02, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.5, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betfair_ex_uk", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34007929", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.239492885", + "sid": "1.239492885", + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.52, + "link": null, + "sid": "13480221", + "bet_limit": 88 + }, + { + "name": "Leigh Wood", + "price": 2.82, + "link": null, + "sid": "10452858", + "bet_limit": 119 + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "31162", + "bet_limit": 20 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.69, + "link": null, + "sid": "13480221", + "bet_limit": 200 + }, + { + "name": "Leigh Wood", + "price": 3.6, + "link": null, + "sid": "10452858", + "bet_limit": 48 + }, + { + "name": "Draw", + "price": 18.0, + "link": null, + "sid": "31162", + "bet_limit": 12 + } + ] + } + ] + }, + { + "key": "betfair_ex_eu", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34007929", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.239492885", + "sid": "1.239492885", + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.52, + "link": null, + "sid": "13480221", + "bet_limit": 103 + }, + { + "name": "Leigh Wood", + "price": 2.82, + "link": null, + "sid": "10452858", + "bet_limit": 141 + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "31162", + "bet_limit": 23 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.69, + "link": null, + "sid": "13480221", + "bet_limit": 235 + }, + { + "name": "Leigh Wood", + "price": 3.6, + "link": null, + "sid": "10452858", + "bet_limit": 56 + }, + { + "name": "Draw", + "price": 18.0, + "link": null, + "sid": "31162", + "bet_limit": 14 + } + ] + } + ] + }, + { + "key": "paddypower", + "title": "Paddy Power", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.paddypower.com/boxing/boxing-matches/leigh-wood-v-anthony-cacace-34007929", + "sid": "34007929", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.53, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 2.5, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "coral", + "title": "Coral", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.coral.co.uk/event/boxing/boxing/upcoming-fights/anthony-cacace-v-leigh-wood/37004402/main-markets", + "sid": "37004402", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.5, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 2.75, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/anthony-cacace-leigh-wood-202505101700", + "sid": "14853035", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.4, + "link": null, + "sid": "1899997893", + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 2.85, + "link": null, + "sid": "1899997894", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15328456", + "sid": "15328456", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.44, + "link": null, + "sid": "1750372737", + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 2.75, + "link": null, + "sid": "1750372739", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "1750372738", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_eu", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": "1023572552", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.43, + "link": null, + "sid": "3725444587", + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 2.95, + "link": null, + "sid": "3725444590", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "3725444589", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490693586", + "sid": "490693586", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.38, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 2.95, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490693586", + "sid": "490693586", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.38, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 2.95, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betsson", + "title": "Betsson", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betsson.com/en/sportsbook/boxing/international/upcoming-fights?tab=liveAndUpcoming&eventId=f-n6uUnX3wg0qrmKD3ZXe7eg&eti=0&fs=true", + "sid": "f-n6uUnX3wg0qrmKD3ZXe7eg", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.41, + "link": null, + "sid": "s-m-f-n6uUnX3wg0qrmKD3ZXe7eg-MW2W-home", + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 2.68, + "link": null, + "sid": "s-m-f-n6uUnX3wg0qrmKD3ZXe7eg-MW2W-away", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "nordicbet", + "title": "Nordic Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.nordicbet.com/en/sportsbook/boxing/international/upcoming-fights/anthony-cacace-leigh-wood", + "sid": "f-n6uUnX3wg0qrmKD3ZXe7eg", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.41, + "link": null, + "sid": "s-m-f-n6uUnX3wg0qrmKD3ZXe7eg-MW2W-home", + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 2.68, + "link": null, + "sid": "s-m-f-n6uUnX3wg0qrmKD3ZXe7eg-MW2W-away", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32259973", + "sid": "32259973", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.45, + "link": "https://sportsbook.draftkings.com/event/32259973?outcomes=0ML79839583_1", + "sid": "0ML79839583_1", + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 2.75, + "link": "https://sportsbook.draftkings.com/event/32259973?outcomes=0ML79839583_3", + "sid": "0ML79839583_3", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "pinnacle", + "title": "Pinnacle", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.pinnacle.com/en/boxing/boxing-matches/leigh-wood-vs-anthony-cacace/1609294529/", + "sid": "1609294529", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.43, + "link": null, + "sid": null, + "bet_limit": 500 + }, + { + "name": "Leigh Wood", + "price": 3.01, + "link": null, + "sid": null, + "bet_limit": 500 + } + ] + } + ] + }, + { + "key": "sport888", + "title": "888sport", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.888sport.com/boxing/boxing/boxing-bouts/anthony-cacace-v-leigh-wood-e-5761940/", + "sid": "5761940", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.44, + "link": null, + "sid": "16385846955", + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 2.88, + "link": null, + "sid": "16385846954", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "16385846956", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "everygame", + "title": "Everygame", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://sports.everygame.eu/en/Bets/Boxing-UFC/Boxing/Leigh-Wood-v-Anthony-Cacace/2648795", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Cacace", + "price": 1.4, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Leigh Wood", + "price": 3.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "ece51507812a70e7e958557111333cbf", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-10T22:00:00Z", + "home_team": "Albert Gonzalez", + "away_team": "Jose Ortiz", + "bookmakers": [ + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023593536", + "sid": "1023593536", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.01, + "link": null, + "sid": "3733960689", + "bet_limit": null + }, + { + "name": "Jose Ortiz", + "price": 14.0, + "link": null, + "sid": "3733960691", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "3733960690", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023593536", + "sid": "1023593536", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.03, + "link": null, + "sid": "3733960689", + "bet_limit": null + }, + { + "name": "Jose Ortiz", + "price": 18.0, + "link": null, + "sid": "3733960691", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "3733960690", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/gonzalez%2C-albert-ortiz%2C-jose/SBTE_2_1023593536", + "sid": "SBTE_2_1023593536", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.03, + "link": null, + "sid": "SBTS_2_3733960689", + "bet_limit": null + }, + { + "name": "Jose Ortiz", + "price": 18.0, + "link": null, + "sid": "SBTS_2_3733960691", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "SBTS_2_3733960690", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/gonzalez%2C-albert-ortiz%2C-jose/SBTE_2_1023593536", + "sid": "SBTE_2_1023593536", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.03, + "link": null, + "sid": "SBTS_2_3733960689", + "bet_limit": null + }, + { + "name": "Jose Ortiz", + "price": 18.0, + "link": null, + "sid": "SBTS_2_3733960691", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "SBTS_2_3733960690", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023593536", + "sid": "1023593536", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.03, + "link": null, + "sid": "3733960689", + "bet_limit": null + }, + { + "name": "Jose Ortiz", + "price": 18.0, + "link": null, + "sid": "3733960691", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "3733960690", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "0eced8921b605353f7d79d08d92decdf", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-10T23:00:00Z", + "home_team": "Albert Gonzalez", + "away_team": "Jose Ivan Guardado", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263141", + "sid": "32263141", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.02, + "link": "https://sportsbook.draftkings.com/event/32263141?outcomes=0ML79848703_1", + "sid": "0ML79848703_1", + "bet_limit": null + }, + { + "name": "Jose Ivan Guardado", + "price": 15.0, + "link": "https://sportsbook.draftkings.com/event/32263141?outcomes=0ML79848703_3", + "sid": "0ML79848703_3", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.02, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Jose Ivan Guardado", + "price": 13.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/albert-gonzalez-jose-ivan-guardado-ortiz-202505101700", + "sid": "15263404", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.02, + "link": null, + "sid": "1926192916", + "bet_limit": null + }, + { + "name": "Jose Ivan Guardado", + "price": 16.0, + "link": null, + "sid": "1926192917", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490694745", + "sid": "490694745", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.02, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Jose Ivan Guardado", + "price": 17.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490694745", + "sid": "490694745", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.02, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Jose Ivan Guardado", + "price": 17.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "paddypower", + "title": "Paddy Power", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.paddypower.com/boxing/boxing-matches/albert-gonzalez-v-jose-ivan-guardado-ortiz-34296501", + "sid": "34296501", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.02, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Jose Ivan Guardado", + "price": 17.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 41.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/260634715-albert-gonzalez-jose-ivan-guardado-ortiz", + "sid": "260634715", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Jose Ivan Guardado", + "price": 13.1, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 44.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44423968/sport/boxing/international-matchups/2025/05/10/21-30/albert-gonzalez-vs-jose-ivan-guardado-ortiz", + "sid": "44423968", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.01, + "link": null, + "sid": "282646262", + "bet_limit": 18001 + }, + { + "name": "Jose Ivan Guardado", + "price": 9.0, + "link": null, + "sid": "282646263", + "bet_limit": 22 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.13, + "link": null, + "sid": "282646262", + "bet_limit": 179 + }, + { + "name": "Jose Ivan Guardado", + "price": 109.89, + "link": null, + "sid": "282646263", + "bet_limit": 179 + } + ] + } + ] + }, + { + "key": "sport888", + "title": "888sport", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.888sport.com/boxing/boxing/boxing-bouts/albert-gonzalez-v-jose-ivan-guardado-ortiz-e-5763014/", + "sid": "5763014", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.02, + "link": null, + "sid": "16386037391", + "bet_limit": null + }, + { + "name": "Jose Ivan Guardado", + "price": 12.0, + "link": null, + "sid": "16386037392", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "16386037393", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betsson", + "title": "Betsson", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betsson.com/en/sportsbook/boxing/international/upcoming-fights?tab=liveAndUpcoming&eventId=f-vfDKCLNJ6EOqwcwJ1oqavQ&eti=0&fs=true", + "sid": "f-vfDKCLNJ6EOqwcwJ1oqavQ", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.01, + "link": null, + "sid": "s-m-f-vfDKCLNJ6EOqwcwJ1oqavQ-MW2W-home", + "bet_limit": null + }, + { + "name": "Jose Ivan Guardado", + "price": 10.5, + "link": null, + "sid": "s-m-f-vfDKCLNJ6EOqwcwJ1oqavQ-MW2W-away", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "nordicbet", + "title": "Nordic Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.nordicbet.com/en/sportsbook/boxing/international/upcoming-fights/albert-gonzalez-jose-ivan-guardado-ortiz", + "sid": "f-vfDKCLNJ6EOqwcwJ1oqavQ", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.01, + "link": null, + "sid": "s-m-f-vfDKCLNJ6EOqwcwJ1oqavQ-MW2W-home", + "bet_limit": null + }, + { + "name": "Jose Ivan Guardado", + "price": 10.5, + "link": null, + "sid": "s-m-f-vfDKCLNJ6EOqwcwJ1oqavQ-MW2W-away", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/albert-gonzalez-v-jose-ivan-guardado-ortiz-34296501", + "sid": "34296501", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.02, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.503081695&selectionId=72422653", + "sid": "72422653", + "bet_limit": null + }, + { + "name": "Jose Ivan Guardado", + "price": 11.8, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.503081695&selectionId=68135521", + "sid": "68135521", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15360746", + "sid": "15360746", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Albert Gonzalez", + "price": 1.02, + "link": null, + "sid": "1760349227", + "bet_limit": null + }, + { + "name": "Jose Ivan Guardado", + "price": 15.0, + "link": null, + "sid": "1760349229", + "bet_limit": null + }, + { + "name": "Draw", + "price": 21.0, + "link": null, + "sid": "1760349228", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "fb0520c12da65a7e2215b10853f25488", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-10T23:30:00Z", + "home_team": "Nicklaus Flaz", + "away_team": "Alan Sanchez", + "bookmakers": [ + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/260892183-nicklaus-flaz-alan-sanchez", + "sid": "260892183", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alan Sanchez", + "price": 8.35, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Nicklaus Flaz", + "price": 1.06, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 41.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/flaz%2C-nicklaus-sanchez%2C-alan/SBTE_2_1023657075", + "sid": "SBTE_2_1023657075", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alan Sanchez", + "price": 10.0, + "link": null, + "sid": "SBTS_2_3735166706", + "bet_limit": null + }, + { + "name": "Nicklaus Flaz", + "price": 1.07, + "link": null, + "sid": "SBTS_2_3735166704", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "SBTS_2_3735166705", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023657075", + "sid": "1023657075", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alan Sanchez", + "price": 8.5, + "link": null, + "sid": "3735166706", + "bet_limit": null + }, + { + "name": "Nicklaus Flaz", + "price": 1.05, + "link": null, + "sid": "3735166704", + "bet_limit": null + }, + { + "name": "Draw", + "price": 18.0, + "link": null, + "sid": "3735166705", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023657075", + "sid": "1023657075", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alan Sanchez", + "price": 10.0, + "link": null, + "sid": "3735166706", + "bet_limit": null + }, + { + "name": "Nicklaus Flaz", + "price": 1.07, + "link": null, + "sid": "3735166704", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "3735166705", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/flaz%2C-nicklaus-sanchez%2C-alan/SBTE_2_1023657075", + "sid": "SBTE_2_1023657075", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alan Sanchez", + "price": 10.0, + "link": null, + "sid": "SBTS_2_3735166706", + "bet_limit": null + }, + { + "name": "Nicklaus Flaz", + "price": 1.07, + "link": null, + "sid": "SBTS_2_3735166704", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "SBTS_2_3735166705", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023657075", + "sid": "1023657075", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alan Sanchez", + "price": 10.0, + "link": null, + "sid": "3735166706", + "bet_limit": null + }, + { + "name": "Nicklaus Flaz", + "price": 1.07, + "link": null, + "sid": "3735166704", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "3735166705", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "paddypower", + "title": "Paddy Power", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.paddypower.com/boxing/boxing-matches/nicklaus-flaz-v-alan-sanchez-34300255", + "sid": "34300255", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alan Sanchez", + "price": 7.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Nicklaus Flaz", + "price": 1.1, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 21.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490696679", + "sid": "490696679", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alan Sanchez", + "price": 7.86, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Nicklaus Flaz", + "price": 1.07, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490696679", + "sid": "490696679", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alan Sanchez", + "price": 7.86, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Nicklaus Flaz", + "price": 1.07, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alan Sanchez", + "price": 8.3, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Nicklaus Flaz", + "price": 1.07, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32273445", + "sid": "32273445", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alan Sanchez", + "price": 8.5, + "link": "https://sportsbook.draftkings.com/event/32273445?outcomes=0ML79876909_3", + "sid": "0ML79876909_3", + "bet_limit": null + }, + { + "name": "Nicklaus Flaz", + "price": 1.06, + "link": "https://sportsbook.draftkings.com/event/32273445?outcomes=0ML79876909_1", + "sid": "0ML79876909_1", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "0303d656a9438a7305d32afe4d780afa", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-10T23:30:00Z", + "home_team": "Nazarena Romero", + "away_team": "Mayeli Flores", + "bookmakers": [ + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/260897478-nazarena-romero-mayeli-flores", + "sid": "260897478", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Mayeli Flores", + "price": 4.92, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Nazarena Romero", + "price": 1.25, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 18.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023657076", + "sid": "1023657076", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Mayeli Flores", + "price": 4.3, + "link": null, + "sid": "3735205329", + "bet_limit": null + }, + { + "name": "Nazarena Romero", + "price": 1.19, + "link": null, + "sid": "3735205327", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "3735205328", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023657076", + "sid": "1023657076", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Mayeli Flores", + "price": 4.7, + "link": null, + "sid": "3735205329", + "bet_limit": null + }, + { + "name": "Nazarena Romero", + "price": 1.21, + "link": null, + "sid": "3735205327", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3735205328", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023657076", + "sid": "1023657076", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Mayeli Flores", + "price": 4.7, + "link": null, + "sid": "3735205329", + "bet_limit": null + }, + { + "name": "Nazarena Romero", + "price": 1.21, + "link": null, + "sid": "3735205327", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3735205328", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/romero%2C-nazarena-flores%2C-mayeli/SBTE_2_1023657076", + "sid": "SBTE_2_1023657076", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Mayeli Flores", + "price": 4.7, + "link": null, + "sid": "SBTS_2_3735205329", + "bet_limit": null + }, + { + "name": "Nazarena Romero", + "price": 1.21, + "link": null, + "sid": "SBTS_2_3735205327", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3735205328", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/romero%2C-nazarena-flores%2C-mayeli/SBTE_2_1023657076", + "sid": "SBTE_2_1023657076", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Mayeli Flores", + "price": 4.7, + "link": null, + "sid": "SBTS_2_3735205329", + "bet_limit": null + }, + { + "name": "Nazarena Romero", + "price": 1.21, + "link": null, + "sid": "SBTS_2_3735205327", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3735205328", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Mayeli Flores", + "price": 4.3, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Nazarena Romero", + "price": 1.22, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betclic", + "title": "Betclic", + "last_update": "2025-05-09T12:31:06Z", + "link": "https://www.betclic.fr/boxe-sboxing/combats-pour-le-titre-mondial-c15872/nazarena-romero-mayeli-flores-m778075403370496", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:31:06Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Mayeli Flores", + "price": 4.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Nazarena Romero", + "price": 1.16, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "d2db1ec2be3302c4c923e4987d37756a", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-11T00:00:00Z", + "home_team": "Andres Cortes", + "away_team": "Salvador Jimenez", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263492", + "sid": "32263492", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.02, + "link": "https://sportsbook.draftkings.com/event/32263492?outcomes=0ML79849277_1", + "sid": "0ML79849277_1", + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 14.0, + "link": "https://sportsbook.draftkings.com/event/32263492?outcomes=0ML79849277_3", + "sid": "0ML79849277_3", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.02, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 13.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490694750", + "sid": "490694750", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.02, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 17.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490694750", + "sid": "490694750", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.02, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 17.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "paddypower", + "title": "Paddy Power", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.paddypower.com/boxing/boxing-matches/andres-cortes-v-salvador-jimenez-34296416", + "sid": "34296416", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.02, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 21.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 46.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/260636311-andres-cortes-salvador-jimenez", + "sid": "260636311", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 12.7, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 43.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44423826/sport/boxing/international-matchups/2025/05/10/21-30/andres-cortes-vs-salvador-jimenez", + "sid": "44423826", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.01, + "link": null, + "sid": "282635392", + "bet_limit": 18001 + }, + { + "name": "Salvador Jimenez", + "price": 8.8, + "link": null, + "sid": "282635393", + "bet_limit": 23 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.13, + "link": null, + "sid": "282635392", + "bet_limit": 179 + }, + { + "name": "Salvador Jimenez", + "price": 80.0, + "link": null, + "sid": "282635393", + "bet_limit": 180 + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/cortes%2C-andres-jimenez%2C-salvador/SBTE_2_1023593533", + "sid": "SBTE_2_1023593533", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.03, + "link": null, + "sid": "SBTS_2_3733931308", + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 17.0, + "link": null, + "sid": "SBTS_2_3733931310", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "SBTS_2_3733931309", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023593533", + "sid": "1023593533", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.03, + "link": null, + "sid": "3733931308", + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 17.0, + "link": null, + "sid": "3733931310", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "3733931309", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/cortes%2C-andres-jimenez%2C-salvador/SBTE_2_1023593533", + "sid": "SBTE_2_1023593533", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.03, + "link": null, + "sid": "SBTS_2_3733931308", + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 17.0, + "link": null, + "sid": "SBTS_2_3733931310", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "SBTS_2_3733931309", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023593533", + "sid": "1023593533", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.03, + "link": null, + "sid": "3733931308", + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 17.0, + "link": null, + "sid": "3733931310", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "3733931309", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023593533", + "sid": "1023593533", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.01, + "link": null, + "sid": "3733931308", + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 14.0, + "link": null, + "sid": "3733931310", + "bet_limit": null + }, + { + "name": "Draw", + "price": 18.0, + "link": null, + "sid": "3733931309", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/andres-cortes-v-salvador-jimenez-34296416", + "sid": "34296416", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.02, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.503075513&selectionId=23589988", + "sid": "23589988", + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 15.0, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.503075513&selectionId=80590240", + "sid": "80590240", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15360749", + "sid": "15360749", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.02, + "link": null, + "sid": "1760349426", + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 15.0, + "link": null, + "sid": "1760349428", + "bet_limit": null + }, + { + "name": "Draw", + "price": 21.0, + "link": null, + "sid": "1760349427", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/andres-cortes-salvador-jimenez-202505102000", + "sid": "15263570", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.02, + "link": null, + "sid": "1926204840", + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 15.0, + "link": null, + "sid": "1926204841", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "coral", + "title": "Coral", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.coral.co.uk/event/boxing/boxing/upcoming-fights/andres-cortes-v-rafael-salvador-jimenez/37367562/main-markets", + "sid": "37367562", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.03, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 13.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 26.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "sport888", + "title": "888sport", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.888sport.com/boxing/boxing/boxing-bouts/andres-cortes-v-salvador-jimenez-e-5768891/", + "sid": "5768891", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.01, + "link": null, + "sid": "16387174994", + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 12.0, + "link": null, + "sid": "16387174993", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "16387174995", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betsson", + "title": "Betsson", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betsson.com/en/sportsbook/boxing/international/upcoming-fights?tab=liveAndUpcoming&eventId=f-6Y68GJbvN0WBrKF3PDcnQQ&eti=0&fs=true", + "sid": "f-6Y68GJbvN0WBrKF3PDcnQQ", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.01, + "link": null, + "sid": "s-m-f-6Y68GJbvN0WBrKF3PDcnQQ-MW2W-home", + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 12.0, + "link": null, + "sid": "s-m-f-6Y68GJbvN0WBrKF3PDcnQQ-MW2W-away", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "nordicbet", + "title": "Nordic Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.nordicbet.com/en/sportsbook/boxing/international/upcoming-fights/andres-cortes-salvador-jimenez", + "sid": "f-6Y68GJbvN0WBrKF3PDcnQQ", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Andres Cortes", + "price": 1.01, + "link": null, + "sid": "s-m-f-6Y68GJbvN0WBrKF3PDcnQQ-MW2W-home", + "bet_limit": null + }, + { + "name": "Salvador Jimenez", + "price": 12.0, + "link": null, + "sid": "s-m-f-6Y68GJbvN0WBrKF3PDcnQQ-MW2W-away", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "4320c5a7a14e07587979c5c2efe501ba", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-11T00:00:00Z", + "home_team": "Giovani Santillan", + "away_team": "Angel Beltran", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263139", + "sid": "32263139", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 11.0, + "link": "https://sportsbook.draftkings.com/event/32263139?outcomes=0ML79848701_3", + "sid": "0ML79848701_3", + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.04, + "link": "https://sportsbook.draftkings.com/event/32263139?outcomes=0ML79848701_1", + "sid": "0ML79848701_1", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 9.5, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.05, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/giovanni-santillan-angel-beltran-villa-202505102000", + "sid": "15263403", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 10.0, + "link": null, + "sid": "1926192913", + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.05, + "link": null, + "sid": "1926192912", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490694748", + "sid": "490694748", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 10.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.06, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490694748", + "sid": "490694748", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 10.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.06, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "paddypower", + "title": "Paddy Power", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.paddypower.com/boxing/boxing-matches/giovani-santillan-v-angel-beltran-villa-34296503", + "sid": "34296503", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 10.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.05, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 26.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/260634714-giovanni-santillan-angel-beltran-villa", + "sid": "260634714", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 10.1, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.03, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 40.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44423981/sport/boxing/international-matchups/2025/05/10/21-30/giovanni-santillan-vs-angel-villa-beltran", + "sid": "44423981", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 7.8, + "link": null, + "sid": "282646418", + "bet_limit": 26 + }, + { + "name": "Giovani Santillan", + "price": 1.02, + "link": null, + "sid": "282646417", + "bet_limit": 9003 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 42.02, + "link": null, + "sid": "282646418", + "bet_limit": 179 + }, + { + "name": "Giovani Santillan", + "price": 1.15, + "link": null, + "sid": "282646417", + "bet_limit": 179 + } + ] + } + ] + }, + { + "key": "sport888", + "title": "888sport", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.888sport.com/boxing/boxing/boxing-bouts/giovani-santillan-v-angel-beltran-villa-e-5763015/", + "sid": "5763015", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 9.0, + "link": null, + "sid": "16386037399", + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.04, + "link": null, + "sid": "16386037400", + "bet_limit": null + }, + { + "name": "Draw", + "price": 21.0, + "link": null, + "sid": "16386037401", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023593532", + "sid": "1023593532", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 9.0, + "link": null, + "sid": "3733946554", + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.04, + "link": null, + "sid": "3733946552", + "bet_limit": null + }, + { + "name": "Draw", + "price": 18.0, + "link": null, + "sid": "3733946553", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/santillan%2C-giovani-beltran%2C-angel/SBTE_2_1023593532", + "sid": "SBTE_2_1023593532", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 11.0, + "link": null, + "sid": "SBTS_2_3733946554", + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.06, + "link": null, + "sid": "SBTS_2_3733946552", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "SBTS_2_3733946553", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/santillan%2C-giovani-beltran%2C-angel/SBTE_2_1023593532", + "sid": "SBTE_2_1023593532", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 11.0, + "link": null, + "sid": "SBTS_2_3733946554", + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.06, + "link": null, + "sid": "SBTS_2_3733946552", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "SBTS_2_3733946553", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023593532", + "sid": "1023593532", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 11.0, + "link": null, + "sid": "3733946554", + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.06, + "link": null, + "sid": "3733946552", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "3733946553", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023593532", + "sid": "1023593532", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 11.0, + "link": null, + "sid": "3733946554", + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.06, + "link": null, + "sid": "3733946552", + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": "3733946553", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betsson", + "title": "Betsson", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betsson.com/en/sportsbook/boxing/international/upcoming-fights?tab=liveAndUpcoming&eventId=f-EVgnLxICOEi_Ko7jcRnr0g&eti=0&fs=true", + "sid": "f-EVgnLxICOEi_Ko7jcRnr0g", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 8.9, + "link": null, + "sid": "s-m-f-EVgnLxICOEi_Ko7jcRnr0g-MW2W-away", + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.03, + "link": null, + "sid": "s-m-f-EVgnLxICOEi_Ko7jcRnr0g-MW2W-home", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "nordicbet", + "title": "Nordic Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.nordicbet.com/en/sportsbook/boxing/international/upcoming-fights/giovani-santillan-angel-beltran-villa", + "sid": "f-EVgnLxICOEi_Ko7jcRnr0g", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 8.9, + "link": null, + "sid": "s-m-f-EVgnLxICOEi_Ko7jcRnr0g-MW2W-away", + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.03, + "link": null, + "sid": "s-m-f-EVgnLxICOEi_Ko7jcRnr0g-MW2W-home", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/giovani-santillan-v-angel-beltran-villa-34296503", + "sid": "34296503", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 8.3, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.503081738&selectionId=83391963", + "sid": "83391963", + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.05, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.503081738&selectionId=28673366", + "sid": "28673366", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15360748", + "sid": "15360748", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 10.0, + "link": null, + "sid": "1760349359", + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.05, + "link": null, + "sid": "1760349357", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "1760349358", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "coral", + "title": "Coral", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.coral.co.uk/event/boxing/boxing/upcoming-fights/giovani-santillan-v-angel-beltran-villa/37367553/main-markets", + "sid": "37367553", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Angel Beltran", + "price": 10.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Giovani Santillan", + "price": 1.05, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 26.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "5f904ff474b715827fa678db7a1d8381", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-11T00:00:00Z", + "home_team": "Darrelle Valsaint", + "away_team": "Rodolfo Orozco", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32267636", + "sid": "32267636", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darrelle Valsaint", + "price": 1.03, + "link": "https://sportsbook.draftkings.com/event/32267636?outcomes=0ML79860957_1", + "sid": "0ML79860957_1", + "bet_limit": null + }, + { + "name": "Rodolfo Orozco", + "price": 12.0, + "link": "https://sportsbook.draftkings.com/event/32267636?outcomes=0ML79860957_3", + "sid": "0ML79860957_3", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/260780094-darrelle-valsaint-jr-german-rodolfo-orozco", + "sid": "260780094", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darrelle Valsaint", + "price": 1.03, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Rodolfo Orozco", + "price": 10.2, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 45.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490696381", + "sid": "490696381", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darrelle Valsaint", + "price": 1.04, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Rodolfo Orozco", + "price": 10.1, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/darrelle-valsaint-jr-rodolfo-orozco-202505101700", + "sid": "15268455", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darrelle Valsaint", + "price": 1.04, + "link": null, + "sid": "1927201682", + "bet_limit": null + }, + { + "name": "Rodolfo Orozco", + "price": 11.0, + "link": null, + "sid": "1927201683", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darrelle Valsaint", + "price": 1.04, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Rodolfo Orozco", + "price": 10.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "paddypower", + "title": "Paddy Power", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.paddypower.com/boxing/boxing-matches/darrelle-valsaint-v-rodolfo-orozco-34300256", + "sid": "34300256", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darrelle Valsaint", + "price": 1.06, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Rodolfo Orozco", + "price": 9.5, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 26.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490696381", + "sid": "490696381", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Darrelle Valsaint", + "price": 1.04, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Rodolfo Orozco", + "price": 10.1, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "011876238182a4c73a2ac064eed3479e", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-11T01:00:00Z", + "home_team": "Erickson Lubin", + "away_team": "Ardreal Holmes", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32260032", + "sid": "32260032", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.5, + "link": "https://sportsbook.draftkings.com/event/32260032?outcomes=0ML79839851_3", + "sid": "0ML79839851_3", + "bet_limit": null + }, + { + "name": "Erickson Lubin", + "price": 1.3, + "link": "https://sportsbook.draftkings.com/event/32260032?outcomes=0ML79839851_1", + "sid": "0ML79839851_1", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490693588", + "sid": "490693588", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.09, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Erickson Lubin", + "price": 1.36, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490693588", + "sid": "490693588", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.09, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Erickson Lubin", + "price": 1.36, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/254226660-erickson-lubin-ardreal-holmes", + "sid": "254226660", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.35, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Erickson Lubin", + "price": 1.35, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 22.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.45, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Erickson Lubin", + "price": 1.3, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betfair_ex_uk", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34148994", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.241314094", + "sid": "1.241314094", + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.6, + "link": null, + "sid": "73729560", + "bet_limit": 12 + }, + { + "name": "Erickson Lubin", + "price": 1.44, + "link": null, + "sid": "12601897", + "bet_limit": 47 + }, + { + "name": "Draw", + "price": 1.01, + "link": null, + "sid": "31162", + "bet_limit": 12 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.9, + "link": null, + "sid": "73729560", + "bet_limit": 10 + }, + { + "name": "Erickson Lubin", + "price": 1.49, + "link": null, + "sid": "12601897", + "bet_limit": 28 + }, + { + "name": "Draw", + "price": 1000.0, + "link": null, + "sid": "31162", + "bet_limit": 9 + } + ] + } + ] + }, + { + "key": "coral", + "title": "Coral", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.coral.co.uk/event/boxing/boxing/upcoming-fights/erickson-lubin-v-ardreal-holmes-jr/37320289/main-markets", + "sid": "37320289", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.5, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Erickson Lubin", + "price": 1.33, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betfair_ex_eu", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34148994", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.241314094", + "sid": "1.241314094", + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.6, + "link": null, + "sid": "73729560", + "bet_limit": 14 + }, + { + "name": "Erickson Lubin", + "price": 1.44, + "link": null, + "sid": "12601897", + "bet_limit": 56 + }, + { + "name": "Draw", + "price": 1.01, + "link": null, + "sid": "31162", + "bet_limit": 14 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.9, + "link": null, + "sid": "73729560", + "bet_limit": 12 + }, + { + "name": "Erickson Lubin", + "price": 1.49, + "link": null, + "sid": "12601897", + "bet_limit": 33 + }, + { + "name": "Draw", + "price": 1000.0, + "link": null, + "sid": "31162", + "bet_limit": 10 + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/erickson-lubin-v-ardreal-holmes-jr-34148994", + "sid": "34148994", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.2, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.490929736&selectionId=73729560", + "sid": "73729560", + "bet_limit": null + }, + { + "name": "Erickson Lubin", + "price": 1.32, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.490929736&selectionId=12601897", + "sid": "12601897", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15353008", + "sid": "15353008", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.25, + "link": null, + "sid": "1758036499", + "bet_limit": null + }, + { + "name": "Erickson Lubin", + "price": 1.33, + "link": null, + "sid": "1758036497", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "1758036498", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/erickson-lubin-ardreal-holmes-202505102100", + "sid": "15044776", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.55, + "link": null, + "sid": "1905099785", + "bet_limit": null + }, + { + "name": "Erickson Lubin", + "price": 1.28, + "link": null, + "sid": "1905099783", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "pinnacle", + "title": "Pinnacle", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.pinnacle.com/en/boxing/boxing-matches/ardreal-holmes-vs-erickson-lubin/1609291609/", + "sid": "1609291609", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.57, + "link": null, + "sid": null, + "bet_limit": 500 + }, + { + "name": "Erickson Lubin", + "price": 1.33, + "link": null, + "sid": null, + "bet_limit": 500 + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023657077", + "sid": "1023657077", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.25, + "link": null, + "sid": "3735205276", + "bet_limit": null + }, + { + "name": "Erickson Lubin", + "price": 1.3, + "link": null, + "sid": "3735205273", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3735205275", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023657077", + "sid": "1023657077", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.45, + "link": null, + "sid": "3735205276", + "bet_limit": null + }, + { + "name": "Erickson Lubin", + "price": 1.32, + "link": null, + "sid": "3735205273", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3735205275", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/lubin%2C-erickson-holmes%2C-ardreal/SBTE_2_1023657077", + "sid": "SBTE_2_1023657077", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.45, + "link": null, + "sid": "SBTS_2_3735205276", + "bet_limit": null + }, + { + "name": "Erickson Lubin", + "price": 1.32, + "link": null, + "sid": "SBTS_2_3735205273", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3735205275", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/lubin%2C-erickson-holmes%2C-ardreal/SBTE_2_1023657077", + "sid": "SBTE_2_1023657077", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.45, + "link": null, + "sid": "SBTS_2_3735205276", + "bet_limit": null + }, + { + "name": "Erickson Lubin", + "price": 1.32, + "link": null, + "sid": "SBTS_2_3735205273", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3735205275", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023657077", + "sid": "1023657077", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ardreal Holmes", + "price": 3.45, + "link": null, + "sid": "3735205276", + "bet_limit": null + }, + { + "name": "Erickson Lubin", + "price": 1.32, + "link": null, + "sid": "3735205273", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3735205275", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "cafbf2438b61540da54b8ebc1d158cf3", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-11T02:00:00Z", + "home_team": "Raymond Muratalla", + "away_team": "Zaur Abdullaev", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32102988", + "sid": "32102988", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.18, + "link": "https://sportsbook.draftkings.com/event/32102988?outcomes=0ML79412747_1", + "sid": "0ML79412747_1", + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 4.9, + "link": "https://sportsbook.draftkings.com/event/32102988?outcomes=0ML79412747_3", + "sid": "0ML79412747_3", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/254792694-raymond-muratalla-zaur-abdullaev", + "sid": "254792694", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.17, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 5.43, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 24.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490686648", + "sid": "490686648", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.15, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 5.16, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/raymond-muratalla-abdullaev-zaur-202505102200", + "sid": "15065570", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.11, + "link": null, + "sid": "1905099791", + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 6.0, + "link": null, + "sid": "1905099792", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490686648", + "sid": "490686648", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.15, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 5.16, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betanysports", + "title": "BetAnySports", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.15, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 4.85, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023593531", + "sid": "1023593531", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.17, + "link": null, + "sid": "3732185110", + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 5.6, + "link": null, + "sid": "3732185112", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3732185111", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/muratalla%2C-raymond-abdullaev%2C-zaur/SBTE_2_1023593531", + "sid": "SBTE_2_1023593531", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.17, + "link": null, + "sid": "SBTS_2_3732185110", + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 5.6, + "link": null, + "sid": "SBTS_2_3732185112", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3732185111", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.15, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 5.25, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "nordicbet", + "title": "Nordic Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.nordicbet.com/en/sportsbook/boxing/international/upcoming-fights/raymond-muratalla-zaur-abdullaev", + "sid": "f-LBio9q1QJ06TX66hmbXbww", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.14, + "link": null, + "sid": "s-m-f-LBio9q1QJ06TX66hmbXbww-MW2W-home", + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 5.0, + "link": null, + "sid": "s-m-f-LBio9q1QJ06TX66hmbXbww-MW2W-away", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betsson", + "title": "Betsson", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betsson.com/en/sportsbook/boxing/international/upcoming-fights?tab=liveAndUpcoming&eventId=f-LBio9q1QJ06TX66hmbXbww&eti=0&fs=true", + "sid": "f-LBio9q1QJ06TX66hmbXbww", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.14, + "link": null, + "sid": "s-m-f-LBio9q1QJ06TX66hmbXbww-MW2W-home", + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 5.0, + "link": null, + "sid": "s-m-f-LBio9q1QJ06TX66hmbXbww-MW2W-away", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/muratalla%2C-raymond-abdullaev%2C-zaur/SBTE_2_1023593531", + "sid": "SBTE_2_1023593531", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.17, + "link": null, + "sid": "SBTS_2_3732185110", + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 5.6, + "link": null, + "sid": "SBTS_2_3732185112", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3732185111", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023593531", + "sid": "1023593531", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.17, + "link": null, + "sid": "3732185110", + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 5.6, + "link": null, + "sid": "3732185112", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3732185111", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15328454", + "sid": "15328454", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.17, + "link": null, + "sid": "1750372776", + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 5.0, + "link": null, + "sid": "1750372779", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "1750372778", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betfair_ex_uk", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34161017", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.241442735", + "sid": "1.241442735", + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.17, + "link": null, + "sid": "36775757", + "bet_limit": 99 + }, + { + "name": "Zaur Abdullaev", + "price": 4.8, + "link": null, + "sid": "20507366", + "bet_limit": 56 + }, + { + "name": "Draw", + "price": 4.8, + "link": null, + "sid": "31162", + "bet_limit": 55 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.26, + "link": null, + "sid": "36775757", + "bet_limit": 197 + }, + { + "name": "Zaur Abdullaev", + "price": 1000.0, + "link": null, + "sid": "20507366", + "bet_limit": 9 + }, + { + "name": "Draw", + "price": 1000.0, + "link": null, + "sid": "31162", + "bet_limit": 4 + } + ] + } + ] + }, + { + "key": "winamax_fr", + "title": "Winamax (FR)", + "last_update": "2025-05-09T12:32:15Z", + "link": "https://www.winamax.fr/en/sports-betting/match/59314641", + "sid": "59314641", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:15Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.14, + "link": null, + "sid": "1384061871", + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 3.6, + "link": null, + "sid": "1384061872", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023593531", + "sid": "1023593531", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.15, + "link": null, + "sid": "3732185110", + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 5.0, + "link": null, + "sid": "3732185112", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "3732185111", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "coral", + "title": "Coral", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.coral.co.uk/event/boxing/boxing/upcoming-fights/raymond-muratalla-v-zaur-abdullaev/37320284/main-markets", + "sid": "37320284", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.2, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 5.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "everygame", + "title": "Everygame", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://sports.everygame.eu/en/Bets/Boxing-UFC/Boxing/Zaur-Abdullaev-v-Raymond-Muratalla/2642836", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.18, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 5.25, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betfair_ex_eu", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34161017", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.241442735", + "sid": "1.241442735", + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.17, + "link": null, + "sid": "36775757", + "bet_limit": 116 + }, + { + "name": "Zaur Abdullaev", + "price": 4.8, + "link": null, + "sid": "20507366", + "bet_limit": 66 + }, + { + "name": "Draw", + "price": 4.8, + "link": null, + "sid": "31162", + "bet_limit": 65 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.26, + "link": null, + "sid": "36775757", + "bet_limit": 232 + }, + { + "name": "Zaur Abdullaev", + "price": 1000.0, + "link": null, + "sid": "20507366", + "bet_limit": 11 + }, + { + "name": "Draw", + "price": 1000.0, + "link": null, + "sid": "31162", + "bet_limit": 5 + } + ] + } + ] + }, + { + "key": "betclic", + "title": "Betclic", + "last_update": "2025-05-09T12:31:06Z", + "link": "https://www.betclic.fr/boxe-sboxing/combats-pour-le-titre-mondial-c15872/raymond-muratalla-zaur-abdullaev-m740021298835457", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:31:06Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.09, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 5.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/raymond-muratalla-v-zaur-abdullaev-34161017", + "sid": "34161017", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.15, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.492379006&selectionId=36775757", + "sid": "36775757", + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 5.1, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.492379006&selectionId=20507366", + "sid": "20507366", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "pinnacle", + "title": "Pinnacle", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.pinnacle.com/en/boxing/boxing-matches/raymond-muratalla-vs-zaur-abdullaev/1609285452/", + "sid": "1609285452", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.14, + "link": null, + "sid": null, + "bet_limit": 500 + }, + { + "name": "Zaur Abdullaev", + "price": 6.3, + "link": null, + "sid": null, + "bet_limit": 500 + } + ] + } + ] + }, + { + "key": "sport888", + "title": "888sport", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.888sport.com/boxing/boxing/boxing-bouts/raymond-muratalla-v-zaur-abdullaev-e-5761941/", + "sid": "5761941", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Raymond Muratalla", + "price": 1.18, + "link": null, + "sid": "16385847019", + "bet_limit": null + }, + { + "name": "Zaur Abdullaev", + "price": 5.4, + "link": null, + "sid": "16385847018", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "16385847017", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "5e7d6683e1e83a5ebcf7e52c55ab80ee", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-11T03:00:00Z", + "home_team": "Emanuel Navarrete", + "away_team": "Charley Suarez", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32102989", + "sid": "32102989", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 4.6, + "link": "https://sportsbook.draftkings.com/event/32102989?outcomes=0ML79412748_3", + "sid": "0ML79412748_3", + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.2, + "link": "https://sportsbook.draftkings.com/event/32102989?outcomes=0ML79412748_1", + "sid": "0ML79412748_1", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/254788521-emanuel-navarrete-charly-suarez", + "sid": "254788521", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 4.05, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.27, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 22.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 4.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.25, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betclic", + "title": "Betclic", + "last_update": "2025-05-09T12:31:06Z", + "link": "https://www.betclic.fr/boxe-sboxing/combats-pour-le-titre-mondial-c15872/emanuel-navarrete-charly-suarez-m740020868804608", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:31:06Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 3.7, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.19, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/emanuel-navarrete-v-charly-suarez-34161013", + "sid": "34161013", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 4.3, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.492378544&selectionId=11424281", + "sid": "11424281", + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.21, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.492378544&selectionId=21757859", + "sid": "21757859", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/emanuel-navarrete-charly-suarez-202505102300", + "sid": "15065467", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 3.55, + "link": null, + "sid": "1904815975", + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.28, + "link": null, + "sid": "1904815974", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490686647", + "sid": "490686647", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 3.84, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.25, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490686647", + "sid": "490686647", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 3.84, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.25, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "coral", + "title": "Coral", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.coral.co.uk/event/boxing/boxing/upcoming-fights/emanuel-navarrete-v-charly-suarez/37195077/main-markets", + "sid": "37195077", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 4.5, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.22, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 21.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "nordicbet", + "title": "Nordic Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.nordicbet.com/en/sportsbook/boxing/international/upcoming-fights/emanuel-navarrete-charly-suarez", + "sid": "f-H_pljyjUvkmBhYtvIK6lgQ", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 4.15, + "link": null, + "sid": "s-m-f-H_pljyjUvkmBhYtvIK6lgQ-MW2W-away", + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.19, + "link": null, + "sid": "s-m-f-H_pljyjUvkmBhYtvIK6lgQ-MW2W-home", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "parionssport_fr", + "title": "Parions Sport (FR)", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.enligne.parionssport.fdj.fr/paris-boxe/international/combats/3205825/e.navarrete-vs-c.suarez", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 3.6, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.26, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15328457", + "sid": "15328457", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 4.0, + "link": null, + "sid": "1750372403", + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.25, + "link": null, + "sid": "1750372400", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "1750372401", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "winamax_fr", + "title": "Winamax (FR)", + "last_update": "2025-05-09T12:32:15Z", + "link": "https://www.winamax.fr/en/sports-betting/match/59314643", + "sid": "59314643", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:15Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 3.15, + "link": null, + "sid": "1384068771", + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.19, + "link": null, + "sid": "1384068770", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "sport888", + "title": "888sport", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.888sport.com/boxing/boxing/boxing-bouts/emanuel-navarrete-v-charly-suarez-e-5718209/", + "sid": "5718209", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 4.1, + "link": null, + "sid": "16377693646", + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.25, + "link": null, + "sid": "16377693645", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "16377693647", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betsson", + "title": "Betsson", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betsson.com/en/sportsbook/boxing/international/upcoming-fights?tab=liveAndUpcoming&eventId=f-H_pljyjUvkmBhYtvIK6lgQ&eti=0&fs=true", + "sid": "f-H_pljyjUvkmBhYtvIK6lgQ", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 4.15, + "link": null, + "sid": "s-m-f-H_pljyjUvkmBhYtvIK6lgQ-MW2W-away", + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.19, + "link": null, + "sid": "s-m-f-H_pljyjUvkmBhYtvIK6lgQ-MW2W-home", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023593530", + "sid": "1023593530", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 4.0, + "link": null, + "sid": "3732156140", + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.25, + "link": null, + "sid": "3732156137", + "bet_limit": null + }, + { + "name": "Draw", + "price": 21.0, + "link": null, + "sid": "3732156138", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023593530", + "sid": "1023593530", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 3.7, + "link": null, + "sid": "3732156140", + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.23, + "link": null, + "sid": "3732156137", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "3732156138", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023593530", + "sid": "1023593530", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 4.0, + "link": null, + "sid": "3732156140", + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.25, + "link": null, + "sid": "3732156137", + "bet_limit": null + }, + { + "name": "Draw", + "price": 21.0, + "link": null, + "sid": "3732156138", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betfair_ex_eu", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34161013", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.241442760", + "sid": "1.241442760", + "outcomes": [ + { + "name": "Charley Suarez", + "price": 3.1, + "link": null, + "sid": "11424281", + "bet_limit": 35 + }, + { + "name": "Emanuel Navarrete", + "price": 1.3, + "link": null, + "sid": "21757859", + "bet_limit": 663 + }, + { + "name": "Draw", + "price": 7.4, + "link": null, + "sid": "31162", + "bet_limit": 32 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 4.4, + "link": null, + "sid": "11424281", + "bet_limit": 71 + }, + { + "name": "Emanuel Navarrete", + "price": 1.55, + "link": null, + "sid": "21757859", + "bet_limit": 15 + }, + { + "name": "Draw", + "price": 1000.0, + "link": null, + "sid": "31162", + "bet_limit": 4 + } + ] + } + ] + }, + { + "key": "betfair_ex_uk", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34161013", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.241442760", + "sid": "1.241442760", + "outcomes": [ + { + "name": "Charley Suarez", + "price": 3.1, + "link": null, + "sid": "11424281", + "bet_limit": 29 + }, + { + "name": "Emanuel Navarrete", + "price": 1.3, + "link": null, + "sid": "21757859", + "bet_limit": 562 + }, + { + "name": "Draw", + "price": 7.4, + "link": null, + "sid": "31162", + "bet_limit": 27 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 4.4, + "link": null, + "sid": "11424281", + "bet_limit": 60 + }, + { + "name": "Emanuel Navarrete", + "price": 1.55, + "link": null, + "sid": "21757859", + "bet_limit": 12 + }, + { + "name": "Draw", + "price": 1000.0, + "link": null, + "sid": "31162", + "bet_limit": 3 + } + ] + } + ] + }, + { + "key": "pinnacle", + "title": "Pinnacle", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.pinnacle.com/en/boxing/boxing-matches/emanuel-navarrete-vs-charly-suarez/1609285543/", + "sid": "1609285543", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 3.92, + "link": null, + "sid": null, + "bet_limit": 500 + }, + { + "name": "Emanuel Navarrete", + "price": 1.28, + "link": null, + "sid": null, + "bet_limit": 500 + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/navarrete%2C-emanuel-suarez%2C-charly/SBTE_2_1023593530", + "sid": "SBTE_2_1023593530", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 4.0, + "link": null, + "sid": "SBTS_2_3732156140", + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.25, + "link": null, + "sid": "SBTS_2_3732156137", + "bet_limit": null + }, + { + "name": "Draw", + "price": 21.0, + "link": null, + "sid": "SBTS_2_3732156138", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/navarrete%2C-emanuel-suarez%2C-charly/SBTE_2_1023593530", + "sid": "SBTE_2_1023593530", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 4.0, + "link": null, + "sid": "SBTS_2_3732156140", + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.25, + "link": null, + "sid": "SBTS_2_3732156137", + "bet_limit": null + }, + { + "name": "Draw", + "price": 21.0, + "link": null, + "sid": "SBTS_2_3732156138", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betanysports", + "title": "BetAnySports", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 3.65, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.25, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "everygame", + "title": "Everygame", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://sports.everygame.eu/en/Bets/Boxing-UFC/Boxing/Charly-Suarez-v-Emanuel-Navarrete/2642835", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Charley Suarez", + "price": 4.1, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Emanuel Navarrete", + "price": 1.25, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "3a7f660c8f7baa1c3781d3dbeb3782e4", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-11T06:00:00Z", + "home_team": "Fernando Daniel Martinez", + "away_team": "Kazuto Ioka", + "bookmakers": [ + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15328494", + "sid": "15328494", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.25, + "link": null, + "sid": "1750377520", + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 4.0, + "link": null, + "sid": "1750377522", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "1750377521", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "winamax_fr", + "title": "Winamax (FR)", + "last_update": "2025-05-09T12:32:15Z", + "link": "https://www.winamax.fr/en/sports-betting/match/59291247", + "sid": "59291247", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:15Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.21, + "link": null, + "sid": "1401357897", + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 3.05, + "link": null, + "sid": "1401357898", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betclic", + "title": "Betclic", + "last_update": "2025-05-09T12:31:06Z", + "link": "https://www.betclic.fr/boxe-sboxing/combats-pour-le-titre-mondial-c15872/fernando-martinez-kazuto-ioka-m739155740299264", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:31:06Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.19, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 3.7, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490693589", + "sid": "490693589", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.25, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 4.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/fernando-daniel-martinez-kazuto-ioka-202505110600", + "sid": "15064746", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.2, + "link": null, + "sid": "1905099784", + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 4.25, + "link": null, + "sid": "1905099786", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/254782157-fernando-daniel-martinez-kazuto-ioka", + "sid": "254782157", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.31, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 3.88, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.5, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/mart%C3%ADnez%2C-fernando-ioka%2C-kazuto/SBTE_2_1023593548", + "sid": "SBTE_2_1023593548", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.28, + "link": null, + "sid": "SBTS_2_3732156070", + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 3.9, + "link": null, + "sid": "SBTS_2_3732156073", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "SBTS_2_3732156071", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023593548", + "sid": "1023593548", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.28, + "link": null, + "sid": "3732156070", + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 3.9, + "link": null, + "sid": "3732156073", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "3732156071", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/mart%C3%ADnez%2C-fernando-ioka%2C-kazuto/SBTE_2_1023593548", + "sid": "SBTE_2_1023593548", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.28, + "link": null, + "sid": "SBTS_2_3732156070", + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 3.9, + "link": null, + "sid": "SBTS_2_3732156073", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "SBTS_2_3732156071", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023593548", + "sid": "1023593548", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.26, + "link": null, + "sid": "3732156070", + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 3.6, + "link": null, + "sid": "3732156073", + "bet_limit": null + }, + { + "name": "Draw", + "price": 12.0, + "link": null, + "sid": "3732156071", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.26, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 3.8, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490693589", + "sid": "490693589", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.25, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 4.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023593548", + "sid": "1023593548", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.28, + "link": null, + "sid": "3732156070", + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 3.9, + "link": null, + "sid": "3732156073", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "3732156071", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "parionssport_fr", + "title": "Parions Sport (FR)", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.enligne.parionssport.fdj.fr/paris-boxe/international/combats/3205826/f.martinez-vs-k.ioka", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.27, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 3.55, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 25.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/fernando-daniel-martinez-v-kazuto-ioka-34161026", + "sid": "34161026", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.24, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.492379925&selectionId=11593317", + "sid": "11593317", + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 3.8, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.492379925&selectionId=12239920", + "sid": "12239920", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betfair_ex_eu", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34161026", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.241442761", + "sid": "1.241442761", + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.23, + "link": null, + "sid": "11593317", + "bet_limit": 195 + }, + { + "name": "Kazuto Ioka", + "price": 3.6, + "link": null, + "sid": "12239920", + "bet_limit": 12 + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "31162", + "bet_limit": 18 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.38, + "link": null, + "sid": "11593317", + "bet_limit": 11 + }, + { + "name": "Kazuto Ioka", + "price": 8.2, + "link": null, + "sid": "12239920", + "bet_limit": 30 + }, + { + "name": "Draw", + "price": 1000.0, + "link": null, + "sid": "31162", + "bet_limit": 4 + } + ] + } + ] + }, + { + "key": "betfair_ex_uk", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34161026", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.241442761", + "sid": "1.241442761", + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.23, + "link": null, + "sid": "11593317", + "bet_limit": 165 + }, + { + "name": "Kazuto Ioka", + "price": 3.6, + "link": null, + "sid": "12239920", + "bet_limit": 10 + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "31162", + "bet_limit": 15 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.38, + "link": null, + "sid": "11593317", + "bet_limit": 10 + }, + { + "name": "Kazuto Ioka", + "price": 8.2, + "link": null, + "sid": "12239920", + "bet_limit": 26 + }, + { + "name": "Draw", + "price": 1000.0, + "link": null, + "sid": "31162", + "bet_limit": 4 + } + ] + } + ] + }, + { + "key": "pinnacle", + "title": "Pinnacle", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.pinnacle.com/en/boxing/boxing-matches/kazuto-ioka-vs-fernando-martinez/1609291610/", + "sid": "1609291610", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.24, + "link": null, + "sid": null, + "bet_limit": 250 + }, + { + "name": "Kazuto Ioka", + "price": 4.41, + "link": null, + "sid": null, + "bet_limit": 250 + } + ] + } + ] + }, + { + "key": "coral", + "title": "Coral", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.coral.co.uk/event/boxing/boxing/upcoming-fights/fernando-daniel-martinez-v-kazuto-ioka/37351963/main-markets", + "sid": "37351963", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.33, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 3.5, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "sport888", + "title": "888sport", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.888sport.com/boxing/boxing/boxing-bouts/fernando-daniel-martinez-v-kazuto-ioka-e-5768893/", + "sid": "5768893", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.25, + "link": null, + "sid": "16387175003", + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 3.8, + "link": null, + "sid": "16387175002", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "16387175004", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betsson", + "title": "Betsson", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betsson.com/en/sportsbook/boxing/international/upcoming-fights?tab=liveAndUpcoming&eventId=f-OY4JTa4MfUqTmnA28W_HXg&eti=0&fs=true", + "sid": "f-OY4JTa4MfUqTmnA28W_HXg", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.22, + "link": null, + "sid": "s-m-f-OY4JTa4MfUqTmnA28W_HXg-MW2W-home", + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 3.8, + "link": null, + "sid": "s-m-f-OY4JTa4MfUqTmnA28W_HXg-MW2W-away", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "nordicbet", + "title": "Nordic Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.nordicbet.com/en/sportsbook/boxing/international/upcoming-fights/fernando-daniel-martinez-kazuto-ioka", + "sid": "f-OY4JTa4MfUqTmnA28W_HXg", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.22, + "link": null, + "sid": "s-m-f-OY4JTa4MfUqTmnA28W_HXg-MW2W-home", + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 3.8, + "link": null, + "sid": "s-m-f-OY4JTa4MfUqTmnA28W_HXg-MW2W-away", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "everygame", + "title": "Everygame", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://sports.everygame.eu/en/Bets/Boxing-UFC/Boxing/Kazuto-Ioka-v-Fernando-Martinez/2648802", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fernando Daniel Martinez", + "price": 1.28, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Kazuto Ioka", + "price": 3.9, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "afd8a94d40265bfb6654523ae0cca986", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-17T21:00:00Z", + "home_team": "Johnny Fisher", + "away_team": "David Allen", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32102992", + "sid": "32102992", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Allen", + "price": 3.15, + "link": "https://sportsbook.draftkings.com/event/32102992?outcomes=0ML79412761_3", + "sid": "0ML79412761_3", + "bet_limit": null + }, + { + "name": "Johnny Fisher", + "price": 1.36, + "link": "https://sportsbook.draftkings.com/event/32102992?outcomes=0ML79412761_1", + "sid": "0ML79412761_1", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "sport888", + "title": "888sport", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.888sport.com/boxing/boxing/boxing-bouts/johnny-fisher-v-david-allen-e-5605435/", + "sid": "5605435", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Allen", + "price": 3.0, + "link": null, + "sid": "16360498038", + "bet_limit": null + }, + { + "name": "Johnny Fisher", + "price": 1.44, + "link": null, + "sid": "16360498037", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "16360498036", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/252116271-johnny-fisher-david-allen", + "sid": "252116271", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Allen", + "price": 3.46, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Johnny Fisher", + "price": 1.37, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.5, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Allen", + "price": 3.2, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Johnny Fisher", + "price": 1.36, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44344204/sport/boxing/international-matchups/2025/05/17/21-00/johnny-fisher-vs-david-allen", + "sid": "44344204", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Allen", + "price": 2.92, + "link": null, + "sid": "270163992", + "bet_limit": 93 + }, + { + "name": "Johnny Fisher", + "price": 1.32, + "link": null, + "sid": "270163991", + "bet_limit": 562 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Allen", + "price": 4.1, + "link": null, + "sid": "270163992", + "bet_limit": 179 + }, + { + "name": "Johnny Fisher", + "price": 1.52, + "link": null, + "sid": "270163991", + "bet_limit": 179 + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/johnny-fisher-v-david-allen-34103676", + "sid": "34103676", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Allen", + "price": 2.92, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.485575496&selectionId=10966865", + "sid": "10966865", + "bet_limit": null + }, + { + "name": "Johnny Fisher", + "price": 1.38, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.485575496&selectionId=38222634", + "sid": "38222634", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betfair_ex_uk", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34103676", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.240585435", + "sid": "1.240585435", + "outcomes": [ + { + "name": "David Allen", + "price": 3.05, + "link": null, + "sid": "10966865", + "bet_limit": 307 + }, + { + "name": "Johnny Fisher", + "price": 1.48, + "link": null, + "sid": "38222635", + "bet_limit": 10 + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "31162", + "bet_limit": 10 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Allen", + "price": 3.7, + "link": null, + "sid": "10966865", + "bet_limit": 20 + }, + { + "name": "Johnny Fisher", + "price": 1.51, + "link": null, + "sid": "38222635", + "bet_limit": 600 + }, + { + "name": "Draw", + "price": 100.0, + "link": null, + "sid": "31162", + "bet_limit": 10 + } + ] + } + ] + }, + { + "key": "betfair_ex_eu", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34103676", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.240585435", + "sid": "1.240585435", + "outcomes": [ + { + "name": "David Allen", + "price": 3.05, + "link": null, + "sid": "10966865", + "bet_limit": 362 + }, + { + "name": "Johnny Fisher", + "price": 1.48, + "link": null, + "sid": "38222635", + "bet_limit": 12 + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "31162", + "bet_limit": 12 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Allen", + "price": 3.7, + "link": null, + "sid": "10966865", + "bet_limit": 24 + }, + { + "name": "Johnny Fisher", + "price": 1.51, + "link": null, + "sid": "38222635", + "bet_limit": 708 + }, + { + "name": "Draw", + "price": 100.0, + "link": null, + "sid": "31162", + "bet_limit": 12 + } + ] + } + ] + }, + { + "key": "betsson", + "title": "Betsson", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betsson.com/en/sportsbook/boxing/international/upcoming-fights?tab=liveAndUpcoming&eventId=f-omEk6UQXEkC2oVFGDGOgVQ&eti=0&fs=true", + "sid": "f-omEk6UQXEkC2oVFGDGOgVQ", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Allen", + "price": 2.88, + "link": null, + "sid": "s-m-f-omEk6UQXEkC2oVFGDGOgVQ-MW2W-away", + "bet_limit": null + }, + { + "name": "Johnny Fisher", + "price": 1.37, + "link": null, + "sid": "s-m-f-omEk6UQXEkC2oVFGDGOgVQ-MW2W-home", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "nordicbet", + "title": "Nordic Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.nordicbet.com/en/sportsbook/boxing/international/upcoming-fights/johnny-fisher-david-allen", + "sid": "f-omEk6UQXEkC2oVFGDGOgVQ", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Allen", + "price": 2.88, + "link": null, + "sid": "s-m-f-omEk6UQXEkC2oVFGDGOgVQ-MW2W-away", + "bet_limit": null + }, + { + "name": "Johnny Fisher", + "price": 1.37, + "link": null, + "sid": "s-m-f-omEk6UQXEkC2oVFGDGOgVQ-MW2W-home", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "coral", + "title": "Coral", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.coral.co.uk/event/boxing/boxing/upcoming-fights/johnny-fisher-v-david-allen/37195084/main-markets", + "sid": "37195084", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Allen", + "price": 3.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Johnny Fisher", + "price": 1.4, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/johnny-fisher-david-allen-202505171700", + "sid": "14971738", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Allen", + "price": 3.1, + "link": null, + "sid": "1906412636", + "bet_limit": null + }, + { + "name": "Johnny Fisher", + "price": 1.35, + "link": null, + "sid": "1906412635", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15353011", + "sid": "15353011", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Allen", + "price": 3.0, + "link": null, + "sid": "1758036694", + "bet_limit": null + }, + { + "name": "Johnny Fisher", + "price": 1.4, + "link": null, + "sid": "1758036692", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "1758036693", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "45d7ed379a18719f9880bb06bbee094b", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-05-24T19:34:00Z", + "home_team": "Josh Taylor", + "away_team": "Ekow Essuman", + "bookmakers": [ + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023572551", + "sid": "1023572551", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.1, + "link": null, + "sid": "3725419090", + "bet_limit": null + }, + { + "name": "Josh Taylor", + "price": 1.36, + "link": null, + "sid": "3725419088", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3725419089", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "onexbet", + "title": "1xBet", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://1xbet.com/en/line/football/318137-fights/251814687-josh-taylor-ekow-essuman", + "sid": "251814687", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.27, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Josh Taylor", + "price": 1.37, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 18.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023572551", + "sid": "1023572551", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 2.9, + "link": null, + "sid": "3725419090", + "bet_limit": null + }, + { + "name": "Josh Taylor", + "price": 1.35, + "link": null, + "sid": "3725419088", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3725419089", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/taylor%2C-josh-essuman%2C-ekow/SBTE_2_1023572551", + "sid": "SBTE_2_1023572551", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.1, + "link": null, + "sid": "SBTS_2_3725419090", + "bet_limit": null + }, + { + "name": "Josh Taylor", + "price": 1.37, + "link": null, + "sid": "SBTS_2_3725419088", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3725419089", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023572551", + "sid": "1023572551", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.1, + "link": null, + "sid": "3725419090", + "bet_limit": null + }, + { + "name": "Josh Taylor", + "price": 1.36, + "link": null, + "sid": "3725419088", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3725419089", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/taylor%2C-josh-essuman%2C-ekow/SBTE_2_1023572551", + "sid": "SBTE_2_1023572551", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.1, + "link": null, + "sid": "SBTS_2_3725419090", + "bet_limit": null + }, + { + "name": "Josh Taylor", + "price": 1.37, + "link": null, + "sid": "SBTS_2_3725419088", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3725419089", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.35, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Josh Taylor", + "price": 1.34, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/josh-taylor-v-ekow-essuman-34025848", + "sid": "34025848", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.4, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.479186198&selectionId=35829145", + "sid": "35829145", + "bet_limit": null + }, + { + "name": "Josh Taylor", + "price": 1.3, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.479186198&selectionId=10848620", + "sid": "10848620", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44376131/sport/boxing/international-matchups/2025/05/24/21-00/josh-taylor-vs-ekow-essuman", + "sid": "44376131", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.05, + "link": null, + "sid": "275636546", + "bet_limit": 87 + }, + { + "name": "Josh Taylor", + "price": 1.28, + "link": null, + "sid": "275636545", + "bet_limit": 642 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 4.5, + "link": null, + "sid": "275636546", + "bet_limit": 179 + }, + { + "name": "Josh Taylor", + "price": 1.49, + "link": null, + "sid": "275636545", + "bet_limit": 179 + } + ] + } + ] + }, + { + "key": "coral", + "title": "Coral", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.coral.co.uk/event/boxing/boxing/upcoming-fights/josh-taylor-v-ekow-essuman/37195104/main-markets", + "sid": "37195104", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.5, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Josh Taylor", + "price": 1.33, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betfair_ex_eu", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34025848", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.240485354", + "sid": "1.240485354", + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.15, + "link": null, + "sid": "35829145", + "bet_limit": 13 + }, + { + "name": "Josh Taylor", + "price": 1.3, + "link": null, + "sid": "10848620", + "bet_limit": 116 + }, + { + "name": "Draw", + "price": 1.01, + "link": null, + "sid": "31162", + "bet_limit": 18 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 990.0, + "link": null, + "sid": "35829145", + "bet_limit": 17 + }, + { + "name": "Josh Taylor", + "price": 1.47, + "link": null, + "sid": "10848620", + "bet_limit": 32 + }, + { + "name": "Draw", + "price": 1000.0, + "link": null, + "sid": "31162", + "bet_limit": 11 + } + ] + } + ] + }, + { + "key": "betfair_ex_uk", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34025848", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.240485354", + "sid": "1.240485354", + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.15, + "link": null, + "sid": "35829145", + "bet_limit": 11 + }, + { + "name": "Josh Taylor", + "price": 1.3, + "link": null, + "sid": "10848620", + "bet_limit": 99 + }, + { + "name": "Draw", + "price": 1.01, + "link": null, + "sid": "31162", + "bet_limit": 15 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 990.0, + "link": null, + "sid": "35829145", + "bet_limit": 15 + }, + { + "name": "Josh Taylor", + "price": 1.47, + "link": null, + "sid": "10848620", + "bet_limit": 27 + }, + { + "name": "Draw", + "price": 1000.0, + "link": null, + "sid": "31162", + "bet_limit": 9 + } + ] + } + ] + }, + { + "key": "nordicbet", + "title": "Nordic Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.nordicbet.com/en/sportsbook/boxing/international/upcoming-fights/josh-taylor-ekow-essuman", + "sid": "f-_G0Lm4I0dkewejmCGv4Msw", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.4, + "link": null, + "sid": "s-m-f-_G0Lm4I0dkewejmCGv4Msw-MW2W-away", + "bet_limit": null + }, + { + "name": "Josh Taylor", + "price": 1.27, + "link": null, + "sid": "s-m-f-_G0Lm4I0dkewejmCGv4Msw-MW2W-home", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "sport888", + "title": "888sport", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.888sport.com/boxing/boxing/boxing-bouts/josh-taylor-v-ekow-essuman-e-5718212/", + "sid": "5718212", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.6, + "link": null, + "sid": "16377694178", + "bet_limit": null + }, + { + "name": "Josh Taylor", + "price": 1.33, + "link": null, + "sid": "16377694176", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "16377694177", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/josh-taylor-ekow-essuman-202505241700", + "sid": "14960765", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.25, + "link": null, + "sid": "1913984452", + "bet_limit": null + }, + { + "name": "Josh Taylor", + "price": 1.32, + "link": null, + "sid": "1913984451", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_eu", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": "1023572551", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.1, + "link": null, + "sid": "3725419090", + "bet_limit": null + }, + { + "name": "Josh Taylor", + "price": 1.36, + "link": null, + "sid": "3725419088", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3725419089", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betrivers", + "title": "BetRivers", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023572551", + "sid": "1023572551", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.05, + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023572551?coupon={pickType}|3725419092|{wagerAmount}", + "sid": "3725419092", + "bet_limit": null + }, + { + "name": "Josh Taylor", + "price": 1.35, + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023572551?coupon={pickType}|3725419091|{wagerAmount}", + "sid": "3725419091", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betsson", + "title": "Betsson", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betsson.com/en/sportsbook/boxing/international/upcoming-fights?tab=liveAndUpcoming&eventId=f-_G0Lm4I0dkewejmCGv4Msw&eti=0&fs=true", + "sid": "f-_G0Lm4I0dkewejmCGv4Msw", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.4, + "link": null, + "sid": "s-m-f-_G0Lm4I0dkewejmCGv4Msw-MW2W-away", + "bet_limit": null + }, + { + "name": "Josh Taylor", + "price": 1.27, + "link": null, + "sid": "s-m-f-_G0Lm4I0dkewejmCGv4Msw-MW2W-home", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betway", + "title": "Betway", + "last_update": "2025-05-09T12:32:14Z", + "link": "https://betway.com/en/sports/evt/15353019", + "sid": "15353019", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:14Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.4, + "link": null, + "sid": "1758037231", + "bet_limit": null + }, + { + "name": "Josh Taylor", + "price": 1.33, + "link": null, + "sid": "1758037229", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "1758037230", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263493", + "sid": "32263493", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ekow Essuman", + "price": 3.2, + "link": "https://sportsbook.draftkings.com/event/32263493?outcomes=0ML79849278_3", + "sid": "0ML79849278_3", + "bet_limit": null + }, + { + "name": "Josh Taylor", + "price": 1.34, + "link": "https://sportsbook.draftkings.com/event/32263493?outcomes=0ML79849278_1", + "sid": "0ML79849278_1", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "4bafa99acd7cf602a8582f76432d0950", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-06-01T02:00:00Z", + "home_team": "Jermell Charlo", + "away_team": "Thomas LaManna", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32215386", + "sid": "32215386", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jermell Charlo", + "price": 1.07, + "link": "https://sportsbook.draftkings.com/event/32215386?outcomes=0ML79713722_1", + "sid": "0ML79713722_1", + "bet_limit": null + }, + { + "name": "Thomas LaManna", + "price": 8.5, + "link": "https://sportsbook.draftkings.com/event/32215386?outcomes=0ML79713722_3", + "sid": "0ML79713722_3", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490672583", + "sid": "490672583", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jermell Charlo", + "price": 1.07, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Thomas LaManna", + "price": 9.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490672583", + "sid": "490672583", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jermell Charlo", + "price": 1.07, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Thomas LaManna", + "price": 9.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44393832/sport/boxing/international-matchups/2025/06/01/02-00/jermall-charlo-vs-thomas-lamanna", + "sid": "44393832", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jermell Charlo", + "price": 1.05, + "link": null, + "sid": "278230173", + "bet_limit": 3601 + }, + { + "name": "Thomas LaManna", + "price": 6.4, + "link": null, + "sid": "278230174", + "bet_limit": 33 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jermell Charlo", + "price": 1.19, + "link": null, + "sid": "278230173", + "bet_limit": 179 + }, + { + "name": "Thomas LaManna", + "price": 17.99, + "link": null, + "sid": "278230174", + "bet_limit": 179 + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jermell Charlo", + "price": 1.06, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Thomas LaManna", + "price": 8.5, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/jermall-charlo-v-thomas-lamanna-34186481", + "sid": "34186481", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jermell Charlo", + "price": 1.09, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.495322948&selectionId=8351188", + "sid": "8351188", + "bet_limit": null + }, + { + "name": "Thomas LaManna", + "price": 7.2, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.495322948&selectionId=70149289", + "sid": "70149289", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "73623e3bb77fef1abc09170f623c14e6", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-06-01T03:00:00Z", + "home_team": "Caleb Plant", + "away_team": "Jose Armando Resendiz", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32215385", + "sid": "32215385", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Caleb Plant", + "price": 1.05, + "link": "https://sportsbook.draftkings.com/event/32215385?outcomes=0ML79713721_1", + "sid": "0ML79713721_1", + "bet_limit": null + }, + { + "name": "Jose Armando Resendiz", + "price": 10.0, + "link": "https://sportsbook.draftkings.com/event/32215385?outcomes=0ML79713721_3", + "sid": "0ML79713721_3", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490672584", + "sid": "490672584", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Caleb Plant", + "price": 1.04, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Jose Armando Resendiz", + "price": 11.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490672584", + "sid": "490672584", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Caleb Plant", + "price": 1.04, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Jose Armando Resendiz", + "price": 11.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44393833/sport/boxing/international-matchups/2025/06/01/03-00/caleb-plant-vs-jose-armando-resendiz", + "sid": "44393833", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Caleb Plant", + "price": 1.03, + "link": null, + "sid": "278230339", + "bet_limit": 6005 + }, + { + "name": "Jose Armando Resendiz", + "price": 7.4, + "link": null, + "sid": "278230340", + "bet_limit": 28 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Caleb Plant", + "price": 1.16, + "link": null, + "sid": "278230339", + "bet_limit": 179 + }, + { + "name": "Jose Armando Resendiz", + "price": 32.05, + "link": null, + "sid": "278230340", + "bet_limit": 179 + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/caleb-plant-v-jose-armando-resendiz-34186480", + "sid": "34186480", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Caleb Plant", + "price": 1.05, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.495322946&selectionId=17253398", + "sid": "17253398", + "bet_limit": null + }, + { + "name": "Jose Armando Resendiz", + "price": 11.0, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.495322946&selectionId=53163606", + "sid": "53163606", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "5631678f8814e4bca05432180315d058", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-06-07T21:00:00Z", + "home_team": "Fabio Wardley", + "away_team": "Justis Huni", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263494", + "sid": "32263494", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fabio Wardley", + "price": 1.28, + "link": "https://sportsbook.draftkings.com/event/32263494?outcomes=0ML79849279_1", + "sid": "0ML79849279_1", + "bet_limit": null + }, + { + "name": "Justis Huni", + "price": 3.65, + "link": "https://sportsbook.draftkings.com/event/32263494?outcomes=0ML79849279_3", + "sid": "0ML79849279_3", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fabio Wardley", + "price": 1.27, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Justis Huni", + "price": 3.7, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44425533/sport/boxing/international-matchups/2025/06/07/23-00/fabio-wardley-vs-justis-huni", + "sid": "44425533", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fabio Wardley", + "price": 1.24, + "link": null, + "sid": "282831180", + "bet_limit": 750 + }, + { + "name": "Justis Huni", + "price": 3.35, + "link": null, + "sid": "282831181", + "bet_limit": 76 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Fabio Wardley", + "price": 1.43, + "link": null, + "sid": "282831180", + "bet_limit": 179 + }, + { + "name": "Justis Huni", + "price": 5.1, + "link": null, + "sid": "282831181", + "bet_limit": 179 + } + ] + } + ] + } + ] + }, + { + "id": "614b9f014530b578a056f22bdf906c9e", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-06-08T02:00:00Z", + "home_team": "Abdullah Mason", + "away_team": "Jeremia Nakathila", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32215388", + "sid": "32215388", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Abdullah Mason", + "price": 1.05, + "link": "https://sportsbook.draftkings.com/event/32215388?outcomes=0ML79713724_1", + "sid": "0ML79713724_1", + "bet_limit": null + }, + { + "name": "Jeremia Nakathila", + "price": 10.0, + "link": "https://sportsbook.draftkings.com/event/32215388?outcomes=0ML79713724_3", + "sid": "0ML79713724_3", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44399005/sport/boxing/international-matchups/2025/06/08/02-00/abdullah-mason-vs-jeremiah-nakathila", + "sid": "44399005", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Abdullah Mason", + "price": 1.03, + "link": null, + "sid": "279247904", + "bet_limit": 6005 + }, + { + "name": "Jeremia Nakathila", + "price": 7.4, + "link": null, + "sid": "279247905", + "bet_limit": 28 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Abdullah Mason", + "price": 1.16, + "link": null, + "sid": "279247904", + "bet_limit": 179 + }, + { + "name": "Jeremia Nakathila", + "price": 32.05, + "link": null, + "sid": "279247905", + "bet_limit": 179 + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Abdullah Mason", + "price": 1.05, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Jeremia Nakathila", + "price": 9.5, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/abdullah-mason-v-jeremia-nakathila-34230585", + "sid": "34230585", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Abdullah Mason", + "price": 1.05, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.499012989&selectionId=56066340", + "sid": "56066340", + "bet_limit": null + }, + { + "name": "Jeremia Nakathila", + "price": 8.3, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.499012989&selectionId=43672604", + "sid": "43672604", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "e36bce3bd3ef72781f1497917ba3e0b0", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-06-08T03:00:00Z", + "home_team": "Keyshawn Davis", + "away_team": "Edwin De Los Santos", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32215387", + "sid": "32215387", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Edwin De Los Santos", + "price": 6.0, + "link": "https://sportsbook.draftkings.com/event/32215387?outcomes=0ML79713723_3", + "sid": "0ML79713723_3", + "bet_limit": null + }, + { + "name": "Keyshawn Davis", + "price": 1.11, + "link": "https://sportsbook.draftkings.com/event/32215387?outcomes=0ML79713723_1", + "sid": "0ML79713723_1", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44399004/sport/boxing/international-matchups/2025/06/08/03-00/keyshawn-davis-vs-edwin-de-los-santos", + "sid": "44399004", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Edwin De Los Santos", + "price": 5.0, + "link": null, + "sid": "279247899", + "bet_limit": 45 + }, + { + "name": "Keyshawn Davis", + "price": 1.11, + "link": null, + "sid": "279247898", + "bet_limit": 1636 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Edwin De Los Santos", + "price": 10.5, + "link": null, + "sid": "279247899", + "bet_limit": 179 + }, + { + "name": "Keyshawn Davis", + "price": 1.25, + "link": null, + "sid": "279247898", + "bet_limit": 180 + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Edwin De Los Santos", + "price": 5.75, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Keyshawn Davis", + "price": 1.13, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betclic", + "title": "Betclic", + "last_update": "2025-05-09T12:31:06Z", + "link": "https://www.betclic.fr/boxe-sboxing/combats-pour-le-titre-mondial-c15872/keyshawn-davis-edwin-de-los-santos-m759033873448960", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:31:06Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Edwin De Los Santos", + "price": 6.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Keyshawn Davis", + "price": 1.05, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/keyshawn-davis-v-edwin-de-los-santos-34227349", + "sid": "34227349", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Edwin De Los Santos", + "price": 7.2, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.498771972&selectionId=42272153", + "sid": "42272153", + "bet_limit": null + }, + { + "name": "Keyshawn Davis", + "price": 1.09, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.498771972&selectionId=39371847", + "sid": "39371847", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "coral", + "title": "Coral", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.coral.co.uk/event/boxing/boxing/upcoming-fights/keyshawn-davis-v-edwin-de-los-santos/37195113/main-markets", + "sid": "37195113", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Edwin De Los Santos", + "price": 7.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Keyshawn Davis", + "price": 1.1, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 26.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "25fa49e760af20c2f4ebf9192484f503", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-06-09T10:00:00Z", + "home_team": "Junto Nakatani", + "away_team": "Ryosuke Nishida", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32215391", + "sid": "32215391", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Junto Nakatani", + "price": 1.15, + "link": "https://sportsbook.draftkings.com/event/32215391?outcomes=0ML79713727_1", + "sid": "0ML79713727_1", + "bet_limit": null + }, + { + "name": "Ryosuke Nishida", + "price": 5.25, + "link": "https://sportsbook.draftkings.com/event/32215391?outcomes=0ML79713727_3", + "sid": "0ML79713727_3", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44399928/sport/boxing/international-matchups/2025/06/09/10-00/junto-nakatani-vs-ryosuke-nishida", + "sid": "44399928", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Junto Nakatani", + "price": 1.13, + "link": null, + "sid": "279350952", + "bet_limit": 1385 + }, + { + "name": "Ryosuke Nishida", + "price": 4.6, + "link": null, + "sid": "279350953", + "bet_limit": 50 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Junto Nakatani", + "price": 1.28, + "link": null, + "sid": "279350952", + "bet_limit": 179 + }, + { + "name": "Ryosuke Nishida", + "price": 8.6, + "link": null, + "sid": "279350953", + "bet_limit": 179 + } + ] + } + ] + }, + { + "key": "winamax_fr", + "title": "Winamax (FR)", + "last_update": "2025-05-09T12:32:15Z", + "link": "https://www.winamax.fr/en/sports-betting/match/59994135", + "sid": "59994135", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:15Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Junto Nakatani", + "price": 1.1, + "link": null, + "sid": "1403423813", + "bet_limit": null + }, + { + "name": "Ryosuke Nishida", + "price": 4.0, + "link": null, + "sid": "1403423814", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "12ec9c60fc42d64a87ab61eb2a46c412", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-06-15T03:00:00Z", + "home_team": "Richardson Hitchins", + "away_team": "George Kambosos Jr", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263495", + "sid": "32263495", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "George Kambosos Jr", + "price": 8.0, + "link": "https://sportsbook.draftkings.com/event/32263495?outcomes=0ML79849280_3", + "sid": "0ML79849280_3", + "bet_limit": null + }, + { + "name": "Richardson Hitchins", + "price": 1.07, + "link": "https://sportsbook.draftkings.com/event/32263495?outcomes=0ML79849280_1", + "sid": "0ML79849280_1", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44399906/sport/boxing/international-matchups/2025/06/15/02-00/richardson-hitchins-vs-george-kambosos-jr", + "sid": "44399906", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "George Kambosos Jr", + "price": 6.2, + "link": null, + "sid": "279350440", + "bet_limit": 34 + }, + { + "name": "Richardson Hitchins", + "price": 1.05, + "link": null, + "sid": "279350439", + "bet_limit": 3601 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "George Kambosos Jr", + "price": 17.99, + "link": null, + "sid": "279350440", + "bet_limit": 179 + }, + { + "name": "Richardson Hitchins", + "price": 1.19, + "link": null, + "sid": "279350439", + "bet_limit": 179 + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "George Kambosos Jr", + "price": 8.3, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Richardson Hitchins", + "price": 1.07, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betclic", + "title": "Betclic", + "last_update": "2025-05-09T12:31:06Z", + "link": "https://www.betclic.fr/boxe-sboxing/combats-pour-le-titre-mondial-c15872/richardson-hitchins-george-kambosos-jr-m770790538874890", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:31:06Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "George Kambosos Jr", + "price": 7.5, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Richardson Hitchins", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/richardson-hitchins-v-george-kambosos-jr-34151868", + "sid": "34151868", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "George Kambosos Jr", + "price": 7.2, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.491344786&selectionId=56615692", + "sid": "56615692", + "bet_limit": null + }, + { + "name": "Richardson Hitchins", + "price": 1.09, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.491344786&selectionId=11424341", + "sid": "11424341", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "da95e398be13e45b9ba9f59acc3a5e6e", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-06-19T11:00:00Z", + "home_team": "Brian Norman Jr", + "away_team": "Jin Sasaki", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263496", + "sid": "32263496", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Brian Norman Jr", + "price": 1.28, + "link": "https://sportsbook.draftkings.com/event/32263496?outcomes=0ML79849281_1", + "sid": "0ML79849281_1", + "bet_limit": null + }, + { + "name": "Jin Sasaki", + "price": 3.7, + "link": "https://sportsbook.draftkings.com/event/32263496?outcomes=0ML79849281_3", + "sid": "0ML79849281_3", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Brian Norman Jr", + "price": 1.27, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Jin Sasaki", + "price": 3.7, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betclic", + "title": "Betclic", + "last_update": "2025-05-09T12:31:06Z", + "link": "https://www.betclic.fr/boxe-sboxing/combats-pour-le-titre-mondial-c15872/brian-norman-jr-jin-sasaki-m776436855521280", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:31:06Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Brian Norman Jr", + "price": 1.2, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Jin Sasaki", + "price": 3.5, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "0fb22f110c8532f32f952b3052efd50d", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-06-29T00:00:00Z", + "home_team": "Jake Paul", + "away_team": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "bookmakers": [ + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023472097", + "sid": "1023472097", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.16, + "link": null, + "sid": "3716531602", + "bet_limit": null + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 5.4, + "link": null, + "sid": "3716531605", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "3716531604", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023472097", + "sid": "1023472097", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.15, + "link": null, + "sid": "3716531602", + "bet_limit": null + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 4.8, + "link": null, + "sid": "3716531605", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "3716531604", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023472097", + "sid": "1023472097", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.16, + "link": null, + "sid": "3716531602", + "bet_limit": null + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 5.4, + "link": null, + "sid": "3716531605", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "3716531604", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/paul%2C-jake-ch%C3%A1vez-jr.%2C-julio-c%C3%A9sar/SBTE_2_1023472097", + "sid": "SBTE_2_1023472097", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.16, + "link": null, + "sid": "SBTS_2_3716531602", + "bet_limit": null + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 5.4, + "link": null, + "sid": "SBTS_2_3716531605", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "SBTS_2_3716531604", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/paul%2C-jake-ch%C3%A1vez-jr.%2C-julio-c%C3%A9sar/SBTE_2_1023472097", + "sid": "SBTE_2_1023472097", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.16, + "link": null, + "sid": "SBTS_2_3716531602", + "bet_limit": null + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 5.4, + "link": null, + "sid": "SBTS_2_3716531605", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "SBTS_2_3716531604", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490678150", + "sid": "490678150", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.12, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 6.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490678150", + "sid": "490678150", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.12, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 6.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/jake-paul-julio-cesar-chavez-jr-202506282300", + "sid": "15177958", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.14, + "link": null, + "sid": "1908550560", + "bet_limit": null + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 5.25, + "link": null, + "sid": "1908550561", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betanysports", + "title": "BetAnySports", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.12, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 5.5, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.13, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 5.75, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betfair_ex_uk", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34233729", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.242595682", + "sid": "1.242595682", + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.18, + "link": null, + "sid": "20270543", + "bet_limit": 116 + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 5.1, + "link": null, + "sid": "2826902", + "bet_limit": 16 + }, + { + "name": "Draw", + "price": 20.0, + "link": null, + "sid": "31162", + "bet_limit": 18 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.23, + "link": null, + "sid": "20270543", + "bet_limit": 19 + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 9.8, + "link": null, + "sid": "2826902", + "bet_limit": 14 + }, + { + "name": "Draw", + "price": 60.0, + "link": null, + "sid": "31162", + "bet_limit": 22 + } + ] + } + ] + }, + { + "key": "betfair_ex_eu", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34233729", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.242595682", + "sid": "1.242595682", + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.18, + "link": null, + "sid": "20270543", + "bet_limit": 137 + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 5.1, + "link": null, + "sid": "2826902", + "bet_limit": 20 + }, + { + "name": "Draw", + "price": 20.0, + "link": null, + "sid": "31162", + "bet_limit": 22 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.23, + "link": null, + "sid": "20270543", + "bet_limit": 23 + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 9.8, + "link": null, + "sid": "2826902", + "bet_limit": 16 + }, + { + "name": "Draw", + "price": 60.0, + "link": null, + "sid": "31162", + "bet_limit": 26 + } + ] + } + ] + }, + { + "key": "coral", + "title": "Coral", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.coral.co.uk/event/boxing/boxing/upcoming-fights/jake-paul-v-julio-cesar-chavez-jr/37195119/main-markets", + "sid": "37195119", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.17, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 5.5, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_eu", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": "1023472097", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.16, + "link": null, + "sid": "3716531602", + "bet_limit": null + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 5.4, + "link": null, + "sid": "3716531605", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "3716531604", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betrivers", + "title": "BetRivers", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023472097", + "sid": "1023472097", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.15, + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023472097?coupon={pickType}|3716531601|{wagerAmount}", + "sid": "3716531601", + "bet_limit": null + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 5.3, + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023472097?coupon={pickType}|3716531603|{wagerAmount}", + "sid": "3716531603", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "smarkets", + "title": "Smarkets", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://smarkets.com/event/44410766/sport/boxing/international-matchups/2025/06/28/20-00/jake-paul-vs-julio-cesar-chavez-jr", + "sid": "44410766", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.11, + "link": null, + "sid": "281041862", + "bet_limit": 1636 + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 4.8, + "link": null, + "sid": "281041863", + "bet_limit": 47 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Jake Paul", + "price": 1.25, + "link": null, + "sid": "281041862", + "bet_limit": 200 + }, + { + "name": "Julio C\u00e9sar Ch\u00e1vez Jr.", + "price": 9.6, + "link": null, + "sid": "281041863", + "bet_limit": 179 + } + ] + } + ] + } + ] + }, + { + "id": "d776e0f16e0ac2daeeae2b5651b41915", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-06-29T02:00:00Z", + "home_team": "Gilberto Ramirez", + "away_team": "Yuniel Dorticos", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32215396", + "sid": "32215396", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Gilberto Ramirez", + "price": 1.15, + "link": "https://sportsbook.draftkings.com/event/32215396?outcomes=0ML79713733_1", + "sid": "0ML79713733_1", + "bet_limit": null + }, + { + "name": "Yuniel Dorticos", + "price": 5.25, + "link": "https://sportsbook.draftkings.com/event/32215396?outcomes=0ML79713733_3", + "sid": "0ML79713733_3", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betclic", + "title": "Betclic", + "last_update": "2025-05-09T12:31:06Z", + "link": "https://www.betclic.fr/boxe-sboxing/combats-pour-le-titre-mondial-c15872/gilberto-ramirez-yuniel-dorticos-m762623798145024", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:31:06Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Gilberto Ramirez", + "price": 1.05, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Yuniel Dorticos", + "price": 6.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/gilberto-ramirez-v-yuniel-dorticos-34029517", + "sid": "34029517", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Gilberto Ramirez", + "price": 1.13, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.479420738&selectionId=10836412", + "sid": "10836412", + "bet_limit": null + }, + { + "name": "Yuniel Dorticos", + "price": 5.7, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.479420738&selectionId=27635759", + "sid": "27635759", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "parionssport_fr", + "title": "Parions Sport (FR)", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.enligne.parionssport.fdj.fr/paris-boxe/international/combats/3204819/g.ramirez-vs-y.dorticos", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Gilberto Ramirez", + "price": 1.15, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Yuniel Dorticos", + "price": 5.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "winamax_fr", + "title": "Winamax (FR)", + "last_update": "2025-05-09T12:32:15Z", + "link": "https://www.winamax.fr/en/sports-betting/match/59996219", + "sid": "59996219", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:15Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Gilberto Ramirez", + "price": 1.1, + "link": null, + "sid": "1403409359", + "bet_limit": null + }, + { + "name": "Yuniel Dorticos", + "price": 4.0, + "link": null, + "sid": "1403409360", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Gilberto Ramirez", + "price": 1.13, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Yuniel Dorticos", + "price": 5.75, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "3d3d5d07b58d340589d27488946081ce", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-07-12T01:04:00Z", + "home_team": "Alycia Baumgardner", + "away_team": "Jennifer Miranda", + "bookmakers": [ + { + "key": "winamax_fr", + "title": "Winamax (FR)", + "last_update": "2025-05-09T12:32:15Z", + "link": "https://www.winamax.fr/en/sports-betting/match/59721122", + "sid": "59721122", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:15Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alycia Baumgardner", + "price": 1.02, + "link": null, + "sid": "1398287835", + "bet_limit": null + }, + { + "name": "Jennifer Miranda", + "price": 5.7, + "link": null, + "sid": "1398287836", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/baumgardner%2C-alycia-miranda%2C-jennifer/SBTE_2_1023572560", + "sid": "SBTE_2_1023572560", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alycia Baumgardner", + "price": 1.05, + "link": null, + "sid": "SBTS_2_3725344865", + "bet_limit": null + }, + { + "name": "Jennifer Miranda", + "price": 13.0, + "link": null, + "sid": "SBTS_2_3725344867", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "SBTS_2_3725344866", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023572560", + "sid": "1023572560", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alycia Baumgardner", + "price": 1.03, + "link": null, + "sid": "3725344865", + "bet_limit": null + }, + { + "name": "Jennifer Miranda", + "price": 10.5, + "link": null, + "sid": "3725344867", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "3725344866", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alycia Baumgardner", + "price": 1.05, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Jennifer Miranda", + "price": 9.5, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023572560", + "sid": "1023572560", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alycia Baumgardner", + "price": 1.05, + "link": null, + "sid": "3725344865", + "bet_limit": null + }, + { + "name": "Jennifer Miranda", + "price": 13.0, + "link": null, + "sid": "3725344867", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "3725344866", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_eu", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": "1023572560", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alycia Baumgardner", + "price": 1.05, + "link": null, + "sid": "3725344865", + "bet_limit": null + }, + { + "name": "Jennifer Miranda", + "price": 13.0, + "link": null, + "sid": "3725344867", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "3725344866", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betrivers", + "title": "BetRivers", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023572560", + "sid": "1023572560", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alycia Baumgardner", + "price": 1.03, + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023572560?coupon={pickType}|3725344863|{wagerAmount}", + "sid": "3725344863", + "bet_limit": null + }, + { + "name": "Jennifer Miranda", + "price": 12.5, + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023572560?coupon={pickType}|3725344864|{wagerAmount}", + "sid": "3725344864", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023572560", + "sid": "1023572560", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alycia Baumgardner", + "price": 1.05, + "link": null, + "sid": "3725344865", + "bet_limit": null + }, + { + "name": "Jennifer Miranda", + "price": 13.0, + "link": null, + "sid": "3725344867", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "3725344866", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/baumgardner%2C-alycia-miranda%2C-jennifer/SBTE_2_1023572560", + "sid": "SBTE_2_1023572560", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alycia Baumgardner", + "price": 1.05, + "link": null, + "sid": "SBTS_2_3725344865", + "bet_limit": null + }, + { + "name": "Jennifer Miranda", + "price": 13.0, + "link": null, + "sid": "SBTS_2_3725344867", + "bet_limit": null + }, + { + "name": "Draw", + "price": 23.0, + "link": null, + "sid": "SBTS_2_3725344866", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betclic", + "title": "Betclic", + "last_update": "2025-05-09T12:31:06Z", + "link": "https://www.betclic.fr/boxe-sboxing/combats-pour-le-titre-mondial-c15872/alycia-baumgardner-jennifer-miranda-m750941907329024", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:31:06Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alycia Baumgardner", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Jennifer Miranda", + "price": 10.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/alycia-baumgardner-v-jennifer-miranda-34183912", + "sid": "34183912", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alycia Baumgardner", + "price": 1.06, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.495019938&selectionId=28225284", + "sid": "28225284", + "bet_limit": null + }, + { + "name": "Jennifer Miranda", + "price": 8.2, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.495019938&selectionId=82097164", + "sid": "82097164", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263226", + "sid": "32263226", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alycia Baumgardner", + "price": 1.05, + "link": "https://sportsbook.draftkings.com/event/32263226?outcomes=0ML79848946_1", + "sid": "0ML79848946_1", + "bet_limit": null + }, + { + "name": "Jennifer Miranda", + "price": 10.0, + "link": "https://sportsbook.draftkings.com/event/32263226?outcomes=0ML79848946_3", + "sid": "0ML79848946_3", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "708d6a2fbd6020d537c9d1ce1081bd0f", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-07-12T01:04:00Z", + "home_team": "Dina Thorslund", + "away_team": "Shurretta Metcalf", + "bookmakers": [ + { + "key": "parionssport_fr", + "title": "Parions Sport (FR)", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.enligne.parionssport.fdj.fr/paris-boxe/international/combats/3205838/d.thorslund-vs-s.metcalf", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dina Thorslund", + "price": 1.13, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Shurretta Metcalf", + "price": 5.4, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 20.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betclic", + "title": "Betclic", + "last_update": "2025-05-09T12:31:06Z", + "link": "https://www.betclic.fr/boxe-sboxing/combats-pour-le-titre-mondial-c15872/dina-thorslund-shurretta-metcalf-m757369991983104", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:31:06Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dina Thorslund", + "price": 1.07, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Shurretta Metcalf", + "price": 5.5, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023575020", + "sid": "1023575020", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dina Thorslund", + "price": 1.13, + "link": null, + "sid": "3726290405", + "bet_limit": null + }, + { + "name": "Shurretta Metcalf", + "price": 5.3, + "link": null, + "sid": "3726290409", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "3726290407", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/thorslund%2C-dina-metcalf%2C-shuretta/SBTE_2_1023575020", + "sid": "SBTE_2_1023575020", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dina Thorslund", + "price": 1.15, + "link": null, + "sid": "SBTS_2_3726290405", + "bet_limit": null + }, + { + "name": "Shurretta Metcalf", + "price": 6.0, + "link": null, + "sid": "SBTS_2_3726290409", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3726290407", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/thorslund%2C-dina-metcalf%2C-shuretta/SBTE_2_1023575020", + "sid": "SBTE_2_1023575020", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dina Thorslund", + "price": 1.15, + "link": null, + "sid": "SBTS_2_3726290405", + "bet_limit": null + }, + { + "name": "Shurretta Metcalf", + "price": 6.0, + "link": null, + "sid": "SBTS_2_3726290409", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3726290407", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023575020", + "sid": "1023575020", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dina Thorslund", + "price": 1.15, + "link": null, + "sid": "3726290405", + "bet_limit": null + }, + { + "name": "Shurretta Metcalf", + "price": 6.0, + "link": null, + "sid": "3726290409", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3726290407", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023575020", + "sid": "1023575020", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dina Thorslund", + "price": 1.15, + "link": null, + "sid": "3726290405", + "bet_limit": null + }, + { + "name": "Shurretta Metcalf", + "price": 6.0, + "link": null, + "sid": "3726290409", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3726290407", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dina Thorslund", + "price": 1.13, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Shurretta Metcalf", + "price": 5.75, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/dina-thorslund-v-shurretta-metcalf-34207854", + "sid": "34207854", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dina Thorslund", + "price": 1.17, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.497394332&selectionId=20266323", + "sid": "20266323", + "bet_limit": null + }, + { + "name": "Shurretta Metcalf", + "price": 4.6, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.497394332&selectionId=62598130", + "sid": "62598130", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_eu", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": "1023575020", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dina Thorslund", + "price": 1.15, + "link": null, + "sid": "3726290405", + "bet_limit": null + }, + { + "name": "Shurretta Metcalf", + "price": 6.0, + "link": null, + "sid": "3726290409", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3726290407", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betrivers", + "title": "BetRivers", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023575020", + "sid": "1023575020", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dina Thorslund", + "price": 1.13, + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023575020?coupon={pickType}|3726290406|{wagerAmount}", + "sid": "3726290406", + "bet_limit": null + }, + { + "name": "Shurretta Metcalf", + "price": 5.8, + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023575020?coupon={pickType}|3726290408|{wagerAmount}", + "sid": "3726290408", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263225", + "sid": "32263225", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Dina Thorslund", + "price": 1.13, + "link": "https://sportsbook.draftkings.com/event/32263225?outcomes=0ML79848945_1", + "sid": "0ML79848945_1", + "bet_limit": null + }, + { + "name": "Shurretta Metcalf", + "price": 5.75, + "link": "https://sportsbook.draftkings.com/event/32263225?outcomes=0ML79848945_3", + "sid": "0ML79848945_3", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "51fef7b3575c2fc55b1f5e1148905ca1", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-07-12T01:04:00Z", + "home_team": "Ellie Scotney", + "away_team": "Yamileth Mercado", + "bookmakers": [ + { + "key": "parionssport_fr", + "title": "Parions Sport (FR)", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.enligne.parionssport.fdj.fr/paris-boxe/international/combats/3205840/e.scotney-vs-y.mercado", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ellie Scotney", + "price": 1.11, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Yamileth Mercado", + "price": 5.75, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 20.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betclic", + "title": "Betclic", + "last_update": "2025-05-09T12:31:06Z", + "link": "https://www.betclic.fr/boxe-sboxing/combats-pour-le-titre-mondial-c15872/ellie-scotney-yamileth-mercado-m757370951159808", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:31:06Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ellie Scotney", + "price": 1.05, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Yamileth Mercado", + "price": 6.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023575022", + "sid": "1023575022", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ellie Scotney", + "price": 1.08, + "link": null, + "sid": "3726250185", + "bet_limit": null + }, + { + "name": "Yamileth Mercado", + "price": 7.5, + "link": null, + "sid": "3726250187", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "3726250186", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023575022", + "sid": "1023575022", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ellie Scotney", + "price": 1.1, + "link": null, + "sid": "3726250185", + "bet_limit": null + }, + { + "name": "Yamileth Mercado", + "price": 8.5, + "link": null, + "sid": "3726250187", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3726250186", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023575022", + "sid": "1023575022", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ellie Scotney", + "price": 1.1, + "link": null, + "sid": "3726250185", + "bet_limit": null + }, + { + "name": "Yamileth Mercado", + "price": 8.5, + "link": null, + "sid": "3726250187", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3726250186", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ellie Scotney", + "price": 1.11, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Yamileth Mercado", + "price": 6.5, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/ellie-scotney-v-yamileth-mercado-34207853", + "sid": "34207853", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ellie Scotney", + "price": 1.13, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.497394330&selectionId=36390382", + "sid": "36390382", + "bet_limit": null + }, + { + "name": "Yamileth Mercado", + "price": 5.3, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.497394330&selectionId=40449251", + "sid": "40449251", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_eu", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": "1023575022", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ellie Scotney", + "price": 1.1, + "link": null, + "sid": "3726250185", + "bet_limit": null + }, + { + "name": "Yamileth Mercado", + "price": 8.5, + "link": null, + "sid": "3726250187", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3726250186", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betrivers", + "title": "BetRivers", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023575022", + "sid": "1023575022", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ellie Scotney", + "price": 1.07, + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023575022?coupon={pickType}|3726250183|{wagerAmount}", + "sid": "3726250183", + "bet_limit": null + }, + { + "name": "Yamileth Mercado", + "price": 8.5, + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023575022?coupon={pickType}|3726250184|{wagerAmount}", + "sid": "3726250184", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263227", + "sid": "32263227", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Ellie Scotney", + "price": 1.11, + "link": "https://sportsbook.draftkings.com/event/32263227?outcomes=0ML79848947_1", + "sid": "0ML79848947_1", + "bet_limit": null + }, + { + "name": "Yamileth Mercado", + "price": 6.0, + "link": "https://sportsbook.draftkings.com/event/32263227?outcomes=0ML79848947_3", + "sid": "0ML79848947_3", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "b6d465bf87341ed0bc056aad5933d4fa", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-07-12T03:00:00Z", + "home_team": "Katie Taylor", + "away_team": "Amanda Serrano", + "bookmakers": [ + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023572553", + "sid": "1023572553", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.5, + "link": null, + "sid": "3725403979", + "bet_limit": null + }, + { + "name": "Katie Taylor", + "price": 2.43, + "link": null, + "sid": "3725403972", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3725403976", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023572553", + "sid": "1023572553", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.53, + "link": null, + "sid": "3725403979", + "bet_limit": null + }, + { + "name": "Katie Taylor", + "price": 2.55, + "link": null, + "sid": "3725403972", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3725403976", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/katie-taylor-v-amanda-serrano-34100199", + "sid": "34100199", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.7, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.485198335&selectionId=20510399", + "sid": "20510399", + "bet_limit": null + }, + { + "name": "Katie Taylor", + "price": 2.12, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.485198335&selectionId=11225782", + "sid": "11225782", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/taylor%2C-katie-serrano%2C-amanda/SBTE_2_1023572553", + "sid": "SBTE_2_1023572553", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.53, + "link": null, + "sid": "SBTS_2_3725403979", + "bet_limit": null + }, + { + "name": "Katie Taylor", + "price": 2.55, + "link": null, + "sid": "SBTS_2_3725403972", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3725403976", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023572553", + "sid": "1023572553", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.53, + "link": null, + "sid": "3725403979", + "bet_limit": null + }, + { + "name": "Katie Taylor", + "price": 2.55, + "link": null, + "sid": "3725403972", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3725403976", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/taylor%2C-katie-serrano%2C-amanda/SBTE_2_1023572553", + "sid": "SBTE_2_1023572553", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.53, + "link": null, + "sid": "SBTS_2_3725403979", + "bet_limit": null + }, + { + "name": "Katie Taylor", + "price": 2.55, + "link": null, + "sid": "SBTS_2_3725403972", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3725403976", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "bovada", + "title": "Bovada", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.bovada.lv/sports/boxing/boxing-lines/katie-taylor-amanda-serrano-202507112200", + "sid": "14966456", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.61, + "link": null, + "sid": "1863741899", + "bet_limit": null + }, + { + "name": "Katie Taylor", + "price": 2.25, + "link": null, + "sid": "1863741898", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betrivers", + "title": "BetRivers", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023572553", + "sid": "1023572553", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.5, + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023572553?coupon={pickType}|3725403974|{wagerAmount}", + "sid": "3725403974", + "bet_limit": null + }, + { + "name": "Katie Taylor", + "price": 2.5, + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023572553?coupon={pickType}|3725403970|{wagerAmount}", + "sid": "3725403970", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betclic", + "title": "Betclic", + "last_update": "2025-05-09T12:31:06Z", + "link": "https://www.betclic.fr/boxe-sboxing/combats-pour-le-titre-mondial-c15872/katie-taylor-amanda-serrano-m722048148140032", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:31:06Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.46, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Katie Taylor", + "price": 2.32, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.61, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Katie Taylor", + "price": 2.35, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betfair_ex_uk", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34100199", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.240527253", + "sid": "1.240527253", + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.61, + "link": null, + "sid": "20510399", + "bet_limit": 50 + }, + { + "name": "Katie Taylor", + "price": 2.38, + "link": null, + "sid": "11225782", + "bet_limit": 226 + }, + { + "name": "Draw", + "price": 5.1, + "link": null, + "sid": "31162", + "bet_limit": 32 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.83, + "link": null, + "sid": "20510399", + "bet_limit": 22 + }, + { + "name": "Katie Taylor", + "price": 3.15, + "link": null, + "sid": "11225782", + "bet_limit": 10 + }, + { + "name": "Draw", + "price": 990.0, + "link": null, + "sid": "31162", + "bet_limit": 21 + } + ] + } + ] + }, + { + "key": "betfair_ex_eu", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34100199", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.240527253", + "sid": "1.240527253", + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.61, + "link": null, + "sid": "20510399", + "bet_limit": 58 + }, + { + "name": "Katie Taylor", + "price": 2.38, + "link": null, + "sid": "11225782", + "bet_limit": 266 + }, + { + "name": "Draw", + "price": 5.1, + "link": null, + "sid": "31162", + "bet_limit": 37 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.83, + "link": null, + "sid": "20510399", + "bet_limit": 26 + }, + { + "name": "Katie Taylor", + "price": 3.15, + "link": null, + "sid": "11225782", + "bet_limit": 12 + }, + { + "name": "Draw", + "price": 990.0, + "link": null, + "sid": "31162", + "bet_limit": 25 + } + ] + } + ] + }, + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/31984626", + "sid": "31984626", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.57, + "link": "https://sportsbook.draftkings.com/event/31984626?outcomes=0ML79100593_3", + "sid": "0ML79100593_3", + "bet_limit": null + }, + { + "name": "Katie Taylor", + "price": 2.4, + "link": "https://sportsbook.draftkings.com/event/31984626?outcomes=0ML79100593_1", + "sid": "0ML79100593_1", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "winamax_fr", + "title": "Winamax (FR)", + "last_update": "2025-05-09T12:32:15Z", + "link": "https://www.winamax.fr/en/sports-betting/match/58759203", + "sid": "58759203", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:15Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.46, + "link": null, + "sid": "1351371855", + "bet_limit": null + }, + { + "name": "Katie Taylor", + "price": 2.1, + "link": null, + "sid": "1351371854", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "coral", + "title": "Coral", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.coral.co.uk/event/boxing/boxing/upcoming-fights/amanda-serrano-v-katie-taylor/37004478/main-markets", + "sid": "37004478", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.73, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Katie Taylor", + "price": 2.25, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 13.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_eu", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": "1023572553", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Amanda Serrano", + "price": 1.53, + "link": null, + "sid": "3725403979", + "bet_limit": null + }, + { + "name": "Katie Taylor", + "price": 2.55, + "link": null, + "sid": "3725403972", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3725403976", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "0744dd972ac0ec030cb0728760ead3f3", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-07-12T23:00:00Z", + "home_team": "Subriel Matias", + "away_team": "Alberto Puello", + "bookmakers": [ + { + "key": "winamax_fr", + "title": "Winamax (FR)", + "last_update": "2025-05-09T12:32:15Z", + "link": "https://www.winamax.fr/en/sports-betting/match/60084085", + "sid": "60084085", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:15Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alberto Puello", + "price": 1.86, + "link": null, + "sid": "1403406450", + "bet_limit": null + }, + { + "name": "Subriel Matias", + "price": 1.62, + "link": null, + "sid": "1403406451", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023499228", + "sid": "1023499228", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alberto Puello", + "price": 2.1, + "link": null, + "sid": "3725029296", + "bet_limit": null + }, + { + "name": "Subriel Matias", + "price": 1.78, + "link": null, + "sid": "3725029293", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "3725029295", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023499228", + "sid": "1023499228", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alberto Puello", + "price": 2.02, + "link": null, + "sid": "3725029296", + "bet_limit": null + }, + { + "name": "Subriel Matias", + "price": 1.73, + "link": null, + "sid": "3725029293", + "bet_limit": null + }, + { + "name": "Draw", + "price": 12.5, + "link": null, + "sid": "3725029295", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "parionssport_fr", + "title": "Parions Sport (FR)", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.enligne.parionssport.fdj.fr/paris-boxe/international/combats/3204816/a.puello-vs-s.matias", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alberto Puello", + "price": 2.05, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Subriel Matias", + "price": 1.78, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 11.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023499228", + "sid": "1023499228", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alberto Puello", + "price": 2.1, + "link": null, + "sid": "3725029296", + "bet_limit": null + }, + { + "name": "Subriel Matias", + "price": 1.78, + "link": null, + "sid": "3725029293", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "3725029295", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alberto Puello", + "price": 2.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Subriel Matias", + "price": 1.77, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betclic", + "title": "Betclic", + "last_update": "2025-05-09T12:31:06Z", + "link": "https://www.betclic.fr/boxe-sboxing/combats-pour-le-titre-mondial-c15872/alberto-puello-subriel-matias-m763562664783872", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:31:06Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alberto Puello", + "price": 1.9, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Subriel Matias", + "price": 1.68, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/alberto-puello-v-subriel-matias-34249178", + "sid": "34249178", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alberto Puello", + "price": 2.08, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.500260947&selectionId=37562495", + "sid": "37562495", + "bet_limit": null + }, + { + "name": "Subriel Matias", + "price": 1.74, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.500260947&selectionId=27925118", + "sid": "27925118", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betfair_ex_eu", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34249178", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.243311942", + "sid": "1.243311942", + "outcomes": [ + { + "name": "Alberto Puello", + "price": 2.26, + "link": null, + "sid": "37562496", + "bet_limit": 19 + }, + { + "name": "Subriel Matias", + "price": 1.89, + "link": null, + "sid": "27925118", + "bet_limit": 27 + }, + { + "name": "Draw", + "price": 22.0, + "link": null, + "sid": "31162", + "bet_limit": 2 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alberto Puello", + "price": 2.36, + "link": null, + "sid": "37562496", + "bet_limit": 21 + }, + { + "name": "Subriel Matias", + "price": 1.96, + "link": null, + "sid": "27925118", + "bet_limit": 22 + }, + { + "name": "Draw", + "price": 36.0, + "link": null, + "sid": "31162", + "bet_limit": 1 + } + ] + } + ] + }, + { + "key": "betfair_ex_uk", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34249178", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.243311942", + "sid": "1.243311942", + "outcomes": [ + { + "name": "Alberto Puello", + "price": 2.26, + "link": null, + "sid": "37562496", + "bet_limit": 16 + }, + { + "name": "Subriel Matias", + "price": 1.89, + "link": null, + "sid": "27925118", + "bet_limit": 23 + }, + { + "name": "Draw", + "price": 22.0, + "link": null, + "sid": "31162", + "bet_limit": 2 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alberto Puello", + "price": 2.36, + "link": null, + "sid": "37562496", + "bet_limit": 18 + }, + { + "name": "Subriel Matias", + "price": 1.96, + "link": null, + "sid": "27925118", + "bet_limit": 19 + }, + { + "name": "Draw", + "price": 36.0, + "link": null, + "sid": "31162", + "bet_limit": 1 + } + ] + } + ] + }, + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263499", + "sid": "32263499", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Alberto Puello", + "price": 2.0, + "link": "https://sportsbook.draftkings.com/event/32263499?outcomes=0ML79849284_1", + "sid": "0ML79849284_1", + "bet_limit": null + }, + { + "name": "Subriel Matias", + "price": 1.8, + "link": "https://sportsbook.draftkings.com/event/32263499?outcomes=0ML79849284_3", + "sid": "0ML79849284_3", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "25a014d78e25eb85efc320722d6ac9e5", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-07-12T23:00:00Z", + "home_team": "David Morrell", + "away_team": "Imam Khatev", + "bookmakers": [ + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/morrell%2C-david-khataev%2C-imam/SBTE_2_1023499227", + "sid": "SBTE_2_1023499227", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Morrell", + "price": 1.18, + "link": null, + "sid": "SBTS_2_3725029363", + "bet_limit": null + }, + { + "name": "Imam Khatev", + "price": 5.2, + "link": null, + "sid": "SBTS_2_3725029366", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3725029364", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023499227", + "sid": "1023499227", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Morrell", + "price": 1.18, + "link": null, + "sid": "3725029363", + "bet_limit": null + }, + { + "name": "Imam Khatev", + "price": 5.2, + "link": null, + "sid": "3725029366", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3725029364", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Morrell", + "price": 1.2, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Imam Khatev", + "price": 4.5, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023499227", + "sid": "1023499227", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Morrell", + "price": 1.16, + "link": null, + "sid": "3725029363", + "bet_limit": null + }, + { + "name": "Imam Khatev", + "price": 4.7, + "link": null, + "sid": "3725029366", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3725029364", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/morrell%2C-david-khataev%2C-imam/SBTE_2_1023499227", + "sid": "SBTE_2_1023499227", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Morrell", + "price": 1.18, + "link": null, + "sid": "SBTS_2_3725029363", + "bet_limit": null + }, + { + "name": "Imam Khatev", + "price": 5.2, + "link": null, + "sid": "SBTS_2_3725029366", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3725029364", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023499227", + "sid": "1023499227", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Morrell", + "price": 1.18, + "link": null, + "sid": "3725029363", + "bet_limit": null + }, + { + "name": "Imam Khatev", + "price": 5.2, + "link": null, + "sid": "3725029366", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3725029364", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/david-morrell-v-imam-khataev-34249177", + "sid": "34249177", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Morrell", + "price": 1.13, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.500260941&selectionId=35448919", + "sid": "35448919", + "bet_limit": null + }, + { + "name": "Imam Khatev", + "price": 5.3, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.500260941&selectionId=40409514", + "sid": "40409514", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263500", + "sid": "32263500", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Morrell", + "price": 1.21, + "link": "https://sportsbook.draftkings.com/event/32263500?outcomes=0ML79849285_1", + "sid": "0ML79849285_1", + "bet_limit": null + }, + { + "name": "Imam Khatev", + "price": 4.4, + "link": "https://sportsbook.draftkings.com/event/32263500?outcomes=0ML79849285_3", + "sid": "0ML79849285_3", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "345fa20fde140a197ccb376d1f6b0dd5", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-07-12T23:00:00Z", + "home_team": "Edgar Berlanga", + "away_team": "Hamzah Sheeraz", + "bookmakers": [ + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/berlanga%2C-edgar-sheeraz%2C-hamzah/SBTE_2_1023499230", + "sid": "SBTE_2_1023499230", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Edgar Berlanga", + "price": 1.67, + "link": null, + "sid": "SBTS_2_3725068485", + "bet_limit": null + }, + { + "name": "Hamzah Sheeraz", + "price": 2.23, + "link": null, + "sid": "SBTS_2_3725068487", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3725068486", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023499230", + "sid": "1023499230", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Edgar Berlanga", + "price": 1.67, + "link": null, + "sid": "3725068485", + "bet_limit": null + }, + { + "name": "Hamzah Sheeraz", + "price": 2.23, + "link": null, + "sid": "3725068487", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3725068486", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023499230", + "sid": "1023499230", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Edgar Berlanga", + "price": 1.63, + "link": null, + "sid": "3725068485", + "bet_limit": null + }, + { + "name": "Hamzah Sheeraz", + "price": 2.14, + "link": null, + "sid": "3725068487", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3725068486", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/berlanga%2C-edgar-sheeraz%2C-hamzah/SBTE_2_1023499230", + "sid": "SBTE_2_1023499230", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Edgar Berlanga", + "price": 1.67, + "link": null, + "sid": "SBTS_2_3725068485", + "bet_limit": null + }, + { + "name": "Hamzah Sheeraz", + "price": 2.23, + "link": null, + "sid": "SBTS_2_3725068487", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3725068486", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023499230", + "sid": "1023499230", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Edgar Berlanga", + "price": 1.67, + "link": null, + "sid": "3725068485", + "bet_limit": null + }, + { + "name": "Hamzah Sheeraz", + "price": 2.23, + "link": null, + "sid": "3725068487", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3725068486", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Edgar Berlanga", + "price": 1.69, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Hamzah Sheeraz", + "price": 2.15, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/edgar-berlanga-v-hamzah-sheeraz-34238797", + "sid": "34238797", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Edgar Berlanga", + "price": 1.65, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.499606171&selectionId=24386594", + "sid": "24386594", + "bet_limit": null + }, + { + "name": "Hamzah Sheeraz", + "price": 2.2, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.499606171&selectionId=24993601", + "sid": "24993601", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263498", + "sid": "32263498", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Edgar Berlanga", + "price": 1.71, + "link": "https://sportsbook.draftkings.com/event/32263498?outcomes=0ML79849283_1", + "sid": "0ML79849283_1", + "bet_limit": null + }, + { + "name": "Hamzah Sheeraz", + "price": 2.1, + "link": "https://sportsbook.draftkings.com/event/32263498?outcomes=0ML79849283_3", + "sid": "0ML79849283_3", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "bdeffe4e8ef8372a8b8873497207bbbd", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-07-12T23:00:00Z", + "home_team": "Shakur Stevenson", + "away_team": "William Zepeda", + "bookmakers": [ + { + "key": "winamax_fr", + "title": "Winamax (FR)", + "last_update": "2025-05-09T12:32:15Z", + "link": "https://www.winamax.fr/en/sports-betting/match/59994137", + "sid": "59994137", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:15Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Shakur Stevenson", + "price": 1.06, + "link": null, + "sid": "1403407710", + "bet_limit": null + }, + { + "name": "William Zepeda", + "price": 4.7, + "link": null, + "sid": "1403407711", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betclic", + "title": "Betclic", + "last_update": "2025-05-09T12:31:06Z", + "link": "https://www.betclic.fr/boxe-sboxing/combats-pour-le-titre-mondial-c15872/shakur-stevenson-william-zepeda-m762627500666880", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:31:06Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Shakur Stevenson", + "price": 1.01, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "William Zepeda", + "price": 7.5, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023499229", + "sid": "1023499229", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Shakur Stevenson", + "price": 1.08, + "link": null, + "sid": "3725029268", + "bet_limit": null + }, + { + "name": "William Zepeda", + "price": 7.5, + "link": null, + "sid": "3725029270", + "bet_limit": null + }, + { + "name": "Draw", + "price": 15.0, + "link": null, + "sid": "3725029269", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023499229", + "sid": "1023499229", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Shakur Stevenson", + "price": 1.1, + "link": null, + "sid": "3725029268", + "bet_limit": null + }, + { + "name": "William Zepeda", + "price": 8.5, + "link": null, + "sid": "3725029270", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3725029269", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/stevenson%2C-shakur-zepeda%2C-william/SBTE_2_1023499229", + "sid": "SBTE_2_1023499229", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Shakur Stevenson", + "price": 1.1, + "link": null, + "sid": "SBTS_2_3725029268", + "bet_limit": null + }, + { + "name": "William Zepeda", + "price": 8.5, + "link": null, + "sid": "SBTS_2_3725029270", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3725029269", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023499229", + "sid": "1023499229", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Shakur Stevenson", + "price": 1.1, + "link": null, + "sid": "3725029268", + "bet_limit": null + }, + { + "name": "William Zepeda", + "price": 8.5, + "link": null, + "sid": "3725029270", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3725029269", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Shakur Stevenson", + "price": 1.08, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "William Zepeda", + "price": 7.5, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "parionssport_fr", + "title": "Parions Sport (FR)", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.enligne.parionssport.fdj.fr/paris-boxe/international/combats/3204818/s.stevenson-vs-w.zepeda", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Shakur Stevenson", + "price": 1.1, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "William Zepeda", + "price": 6.0, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 20.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/stevenson%2C-shakur-zepeda%2C-william/SBTE_2_1023499229", + "sid": "SBTE_2_1023499229", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Shakur Stevenson", + "price": 1.1, + "link": null, + "sid": "SBTS_2_3725029268", + "bet_limit": null + }, + { + "name": "William Zepeda", + "price": 8.5, + "link": null, + "sid": "SBTS_2_3725029270", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3725029269", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/shakur-stevenson-v-william-zepeda-segura-34232953", + "sid": "34232953", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Shakur Stevenson", + "price": 1.07, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.499180687&selectionId=11424316", + "sid": "11424316", + "bet_limit": null + }, + { + "name": "William Zepeda", + "price": 8.7, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.499180687&selectionId=44954991", + "sid": "44954991", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263497", + "sid": "32263497", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Shakur Stevenson", + "price": 1.09, + "link": "https://sportsbook.draftkings.com/event/32263497?outcomes=0ML79849282_1", + "sid": "0ML79849282_1", + "bet_limit": null + }, + { + "name": "William Zepeda", + "price": 7.0, + "link": "https://sportsbook.draftkings.com/event/32263497?outcomes=0ML79849282_3", + "sid": "0ML79849282_3", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "55116528004cfc44a95b79fb10ec32f8", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-07-19T21:00:00Z", + "home_team": "Oleksandr Usyk", + "away_team": "Daniel Dubois", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32226562", + "sid": "32226562", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 3.6, + "link": "https://sportsbook.draftkings.com/event/32226562?outcomes=0ML79744769_3", + "sid": "0ML79744769_3", + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.29, + "link": "https://sportsbook.draftkings.com/event/32226562?outcomes=0ML79744769_1", + "sid": "0ML79744769_1", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490675584", + "sid": "490675584", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 4.4, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.2, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 4.5, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.2, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betfair_ex_uk", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34227345", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.243065038", + "sid": "1.243065038", + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 3.75, + "link": null, + "sid": "12839770", + "bet_limit": 10 + }, + { + "name": "Oleksandr Usyk", + "price": 1.36, + "link": null, + "sid": "11783471", + "bet_limit": 408 + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "31162", + "bet_limit": 31 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 4.3, + "link": null, + "sid": "12839770", + "bet_limit": 48 + }, + { + "name": "Oleksandr Usyk", + "price": 1.4, + "link": null, + "sid": "11783471", + "bet_limit": 28 + }, + { + "name": "Draw", + "price": 50.0, + "link": null, + "sid": "31162", + "bet_limit": 13 + } + ] + } + ] + }, + { + "key": "betfair_ex_eu", + "title": "Betfair", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": "34227345", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:13Z", + "link": "https://www.betfair.com/exchange/plus/boxing/market/1.243065038", + "sid": "1.243065038", + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 3.75, + "link": null, + "sid": "12839770", + "bet_limit": 12 + }, + { + "name": "Oleksandr Usyk", + "price": 1.36, + "link": null, + "sid": "11783471", + "bet_limit": 481 + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "31162", + "bet_limit": 37 + } + ] + }, + { + "key": "h2h_lay", + "last_update": "2025-05-09T12:32:13Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 4.3, + "link": null, + "sid": "12839770", + "bet_limit": 57 + }, + { + "name": "Oleksandr Usyk", + "price": 1.4, + "link": null, + "sid": "11783471", + "bet_limit": 33 + }, + { + "name": "Draw", + "price": 50.0, + "link": null, + "sid": "31162", + "bet_limit": 16 + } + ] + } + ] + }, + { + "key": "sport888", + "title": "888sport", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://www.888sport.com/boxing/boxing/boxing-bouts/oleksandr-usyk-v-daniel-dubois-e-5718399/", + "sid": "5718399", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 3.75, + "link": null, + "sid": "16377738157", + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.29, + "link": null, + "sid": "16377738159", + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": "16377738158", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490675584", + "sid": "490675584", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 4.4, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.2, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betclic", + "title": "Betclic", + "last_update": "2025-05-09T12:31:06Z", + "link": "https://www.betclic.fr/boxe-sboxing/combats-pour-le-titre-mondial-c15872/oleksandr-usyk-daniel-dubois-m768178099855360", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:31:06Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 3.5, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.2, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "winamax_fr", + "title": "Winamax (FR)", + "last_update": "2025-05-09T12:32:15Z", + "link": "https://www.winamax.fr/en/sports-betting/match/60206565", + "sid": "60206565", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:15Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 3.0, + "link": null, + "sid": "1411892483", + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.22, + "link": null, + "sid": "1411892482", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "coral", + "title": "Coral", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.coral.co.uk/event/boxing/boxing/upcoming-fights/oleksandr-usyk-v-daniel-dubois/37225260/main-markets", + "sid": "37225260", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 3.5, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.3, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 21.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023441554", + "sid": "1023441554", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 3.95, + "link": null, + "sid": "3725068027", + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.26, + "link": null, + "sid": "3725068024", + "bet_limit": null + }, + { + "name": "Draw", + "price": 21.0, + "link": null, + "sid": "3725068026", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023441554", + "sid": "1023441554", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 3.65, + "link": null, + "sid": "3725068027", + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.24, + "link": null, + "sid": "3725068024", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "3725068026", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023441554", + "sid": "1023441554", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 3.95, + "link": null, + "sid": "3725068027", + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.26, + "link": null, + "sid": "3725068024", + "bet_limit": null + }, + { + "name": "Draw", + "price": 21.0, + "link": null, + "sid": "3725068026", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/oleksandr-usyk-v-daniel-dubois-34227345", + "sid": "34227345", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 4.3, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.498771937&selectionId=12839770", + "sid": "12839770", + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.18, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.498771937&selectionId=11783471", + "sid": "11783471", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_eu", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": "1023441554", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 3.95, + "link": null, + "sid": "3725068027", + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.26, + "link": null, + "sid": "3725068024", + "bet_limit": null + }, + { + "name": "Draw", + "price": 21.0, + "link": null, + "sid": "3725068026", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betrivers", + "title": "BetRivers", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023441554", + "sid": "1023441554", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 3.9, + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023441554?coupon={pickType}|3725068025|{wagerAmount}", + "sid": "3725068025", + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.24, + "link": "https://{state}.betrivers.com/?page=sportsbook#event/1023441554?coupon={pickType}|3725068023|{wagerAmount}", + "sid": "3725068023", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "nordicbet", + "title": "Nordic Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.nordicbet.com/en/sportsbook/boxing/international/upcoming-fights/oleksandr-usyk-daniel-dubois", + "sid": "f-wCP_jQtQqUeIZpLPopi3Cg", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 4.15, + "link": null, + "sid": "s-m-f-wCP_jQtQqUeIZpLPopi3Cg-MW2W-away", + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.19, + "link": null, + "sid": "s-m-f-wCP_jQtQqUeIZpLPopi3Cg-MW2W-home", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betsson", + "title": "Betsson", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.betsson.com/en/sportsbook/boxing/international/upcoming-fights?tab=liveAndUpcoming&eventId=f-wCP_jQtQqUeIZpLPopi3Cg&eti=0&fs=true", + "sid": "f-wCP_jQtQqUeIZpLPopi3Cg", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 4.15, + "link": null, + "sid": "s-m-f-wCP_jQtQqUeIZpLPopi3Cg-MW2W-away", + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.19, + "link": null, + "sid": "s-m-f-wCP_jQtQqUeIZpLPopi3Cg-MW2W-home", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "cabe9dfb206df705219d6ed4469e38e0", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-07-20T02:00:00Z", + "home_team": "Diego Pacheco", + "away_team": "Trevor McCrumby", + "bookmakers": [ + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32240725", + "sid": "32240725", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Diego Pacheco", + "price": 1.05, + "link": "https://sportsbook.draftkings.com/event/32240725?outcomes=0ML79784577_1", + "sid": "0ML79784577_1", + "bet_limit": null + }, + { + "name": "Trevor McCrumby", + "price": 10.0, + "link": "https://sportsbook.draftkings.com/event/32240725?outcomes=0ML79784577_3", + "sid": "0ML79784577_3", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Diego Pacheco", + "price": 1.06, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Trevor McCrumby", + "price": 8.5, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/diego-pacheco-v-trevor-mccumby-34280253", + "sid": "34280253", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Diego Pacheco", + "price": 1.07, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.502181017&selectionId=26793932", + "sid": "26793932", + "bet_limit": null + }, + { + "name": "Trevor McCrumby", + "price": 8.7, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.502181017&selectionId=72424008", + "sid": "72424008", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "0b45cf01ecff128b3ae5adb0b81cb034", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-09-13T01:34:00Z", + "home_team": "Canelo \u00c1lvarez", + "away_team": "Terence Crawford", + "bookmakers": [ + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/alvarez%2C-canelo-crawford%2C-terence/SBTE_2_1023572554", + "sid": "SBTE_2_1023572554", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 1.54, + "link": null, + "sid": "SBTS_2_3725465055", + "bet_limit": null + }, + { + "name": "Terence Crawford", + "price": 2.55, + "link": null, + "sid": "SBTS_2_3725465057", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "SBTS_2_3725465056", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023572554", + "sid": "1023572554", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 1.5, + "link": null, + "sid": "3725465055", + "bet_limit": null + }, + { + "name": "Terence Crawford", + "price": 2.43, + "link": null, + "sid": "3725465057", + "bet_limit": null + }, + { + "name": "Draw", + "price": 12.5, + "link": null, + "sid": "3725465056", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023572554", + "sid": "1023572554", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 1.54, + "link": null, + "sid": "3725465055", + "bet_limit": null + }, + { + "name": "Terence Crawford", + "price": 2.55, + "link": null, + "sid": "3725465057", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "3725465056", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/alvarez%2C-canelo-crawford%2C-terence/SBTE_2_1023572554", + "sid": "SBTE_2_1023572554", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 1.54, + "link": null, + "sid": "SBTS_2_3725465055", + "bet_limit": null + }, + { + "name": "Terence Crawford", + "price": 2.55, + "link": null, + "sid": "SBTS_2_3725465057", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "SBTS_2_3725465056", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023572554", + "sid": "1023572554", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 1.54, + "link": null, + "sid": "3725465055", + "bet_limit": null + }, + { + "name": "Terence Crawford", + "price": 2.55, + "link": null, + "sid": "3725465057", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "3725465056", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betclic", + "title": "Betclic", + "last_update": "2025-05-09T12:31:06Z", + "link": "https://www.betclic.fr/boxe-sboxing/combats-pour-le-titre-mondial-c15872/saul-alvarez-terence-crawford-m694762295304192", + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:31:06Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 1.4, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Terence Crawford", + "price": 2.47, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "coral", + "title": "Coral", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.coral.co.uk/event/boxing/boxing/upcoming-fights/saul-alvarez-v-terence-crawford/37319889/main-markets", + "sid": "37319889", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 1.53, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Terence Crawford", + "price": 2.62, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Draw", + "price": 17.0, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "fanduel", + "title": "FanDuel", + "last_update": "2025-05-09T12:26:59Z", + "link": "https://sportsbook.fanduel.com/boxing/boxing-matches/saul-alvarez-v-terence-crawford-33847864", + "sid": "33847864", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:26:59Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 1.48, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.468189345&selectionId=4686417", + "sid": "4686417", + "bet_limit": null + }, + { + "name": "Terence Crawford", + "price": 2.62, + "link": "https://sportsbook.fanduel.com/addToBetslip?marketId=42.468189345&selectionId=8217458", + "sid": "8217458", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "draftkings", + "title": "DraftKings", + "last_update": "2025-05-09T12:32:11Z", + "link": "https://sportsbook.draftkings.com/event/32263503", + "sid": "32263503", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:11Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 1.47, + "link": "https://sportsbook.draftkings.com/event/32263503?outcomes=0ML79849298_1", + "sid": "0ML79849298_1", + "bet_limit": null + }, + { + "name": "Terence Crawford", + "price": 2.65, + "link": "https://sportsbook.draftkings.com/event/32263503?outcomes=0ML79849298_3", + "sid": "0ML79849298_3", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betus", + "title": "BetUS", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:30:51Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 1.59, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Terence Crawford", + "price": 2.4, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "c0c24a3113fef315005671c62d3dddf7", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Daniel Dubois", + "away_team": "Agit Kabayel", + "bookmakers": [ + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/dubois%2C-daniel-kabayel%2C-agit/SBTE_2_1022233907", + "sid": "SBTE_2_1022233907", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Agit Kabayel", + "price": 2.38, + "link": null, + "sid": "SBTS_2_3616777305", + "bet_limit": null + }, + { + "name": "Daniel Dubois", + "price": 1.57, + "link": null, + "sid": "SBTS_2_3616777303", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3616777304", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022233907", + "sid": "1022233907", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Agit Kabayel", + "price": 2.38, + "link": null, + "sid": "3616777305", + "bet_limit": null + }, + { + "name": "Daniel Dubois", + "price": 1.56, + "link": null, + "sid": "3616777303", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3616777304", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/dubois%2C-daniel-kabayel%2C-agit/SBTE_2_1022233907", + "sid": "SBTE_2_1022233907", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Agit Kabayel", + "price": 2.38, + "link": null, + "sid": "SBTS_2_3616777305", + "bet_limit": null + }, + { + "name": "Daniel Dubois", + "price": 1.57, + "link": null, + "sid": "SBTS_2_3616777303", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3616777304", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022233907", + "sid": "1022233907", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Agit Kabayel", + "price": 2.38, + "link": null, + "sid": "3616777305", + "bet_limit": null + }, + { + "name": "Daniel Dubois", + "price": 1.56, + "link": null, + "sid": "3616777303", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3616777304", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022233907", + "sid": "1022233907", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Agit Kabayel", + "price": 2.28, + "link": null, + "sid": "3616777305", + "bet_limit": null + }, + { + "name": "Daniel Dubois", + "price": 1.54, + "link": null, + "sid": "3616777303", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3616777304", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "53d52bd37584d64ed86d35669de71078", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Daniel Dubois", + "away_team": "Anthony Joshua", + "bookmakers": [ + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1021885461", + "sid": "1021885461", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 2.28, + "link": null, + "sid": "3545281268", + "bet_limit": null + }, + { + "name": "Daniel Dubois", + "price": 1.54, + "link": null, + "sid": "3545281266", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3545281267", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1021885461", + "sid": "1021885461", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 2.38, + "link": null, + "sid": "3545281268", + "bet_limit": null + }, + { + "name": "Daniel Dubois", + "price": 1.56, + "link": null, + "sid": "3545281266", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3545281267", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/dubois%2C-daniel-joshua%2C-anthony/SBTE_2_1021885461", + "sid": "SBTE_2_1021885461", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 2.38, + "link": null, + "sid": "SBTS_2_3545281268", + "bet_limit": null + }, + { + "name": "Daniel Dubois", + "price": 1.57, + "link": null, + "sid": "SBTS_2_3545281266", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3545281267", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1021885461", + "sid": "1021885461", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 2.38, + "link": null, + "sid": "3545281268", + "bet_limit": null + }, + { + "name": "Daniel Dubois", + "price": 1.56, + "link": null, + "sid": "3545281266", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3545281267", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/dubois%2C-daniel-joshua%2C-anthony/SBTE_2_1021885461", + "sid": "SBTE_2_1021885461", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 2.38, + "link": null, + "sid": "SBTS_2_3545281268", + "bet_limit": null + }, + { + "name": "Daniel Dubois", + "price": 1.57, + "link": null, + "sid": "SBTS_2_3545281266", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3545281267", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "0172e2c972bb49ef4068cb3159412ee1", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Anthony Joshua", + "away_team": "Deontay Wilder", + "bookmakers": [ + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022233882", + "sid": "1022233882", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 1.42, + "link": null, + "sid": "3589024604", + "bet_limit": null + }, + { + "name": "Deontay Wilder", + "price": 2.8, + "link": null, + "sid": "3589024607", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024605", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/joshua%2C-anthony-wilder%2C-deontay/SBTE_2_1022233882", + "sid": "SBTE_2_1022233882", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 1.42, + "link": null, + "sid": "SBTS_2_3589024604", + "bet_limit": null + }, + { + "name": "Deontay Wilder", + "price": 2.8, + "link": null, + "sid": "SBTS_2_3589024607", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024605", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022233882", + "sid": "1022233882", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 1.42, + "link": null, + "sid": "3589024604", + "bet_limit": null + }, + { + "name": "Deontay Wilder", + "price": 2.8, + "link": null, + "sid": "3589024607", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024605", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022233882", + "sid": "1022233882", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 1.4, + "link": null, + "sid": "3589024604", + "bet_limit": null + }, + { + "name": "Deontay Wilder", + "price": 2.65, + "link": null, + "sid": "3589024607", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3589024605", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/joshua%2C-anthony-wilder%2C-deontay/SBTE_2_1022233882", + "sid": "SBTE_2_1022233882", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 1.42, + "link": null, + "sid": "SBTS_2_3589024604", + "bet_limit": null + }, + { + "name": "Deontay Wilder", + "price": 2.8, + "link": null, + "sid": "SBTS_2_3589024607", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024605", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "41c2dedf80eaa2b5b51af910cb1a675e", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Anthony Joshua", + "away_team": "Filip Hrgovi\u0107", + "bookmakers": [ + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022233908", + "sid": "1022233908", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 1.09, + "link": null, + "sid": "3589028118", + "bet_limit": null + }, + { + "name": "Filip Hrgovi\u0107", + "price": 6.5, + "link": null, + "sid": "3589028120", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3589028119", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022233908", + "sid": "1022233908", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 1.1, + "link": null, + "sid": "3589028118", + "bet_limit": null + }, + { + "name": "Filip Hrgovi\u0107", + "price": 7.5, + "link": null, + "sid": "3589028120", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589028119", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/joshua%2C-anthony-hrgovi%C4%87%2C-filip/SBTE_2_1022233908", + "sid": "SBTE_2_1022233908", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 1.1, + "link": null, + "sid": "SBTS_2_3589028118", + "bet_limit": null + }, + { + "name": "Filip Hrgovi\u0107", + "price": 7.5, + "link": null, + "sid": "SBTS_2_3589028120", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589028119", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022233908", + "sid": "1022233908", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 1.1, + "link": null, + "sid": "3589028118", + "bet_limit": null + }, + { + "name": "Filip Hrgovi\u0107", + "price": 7.5, + "link": null, + "sid": "3589028120", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589028119", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/joshua%2C-anthony-hrgovi%C4%87%2C-filip/SBTE_2_1022233908", + "sid": "SBTE_2_1022233908", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 1.1, + "link": null, + "sid": "SBTS_2_3589028118", + "bet_limit": null + }, + { + "name": "Filip Hrgovi\u0107", + "price": 7.5, + "link": null, + "sid": "SBTS_2_3589028120", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589028119", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "a9957cb775d4c5c1f4946aae821c4b39", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Anthony Joshua", + "away_team": "Joseph Parker", + "bookmakers": [ + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022233876", + "sid": "1022233876", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 2.1, + "link": null, + "sid": "3589024803", + "bet_limit": null + }, + { + "name": "Joseph Parker", + "price": 1.71, + "link": null, + "sid": "3589024806", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024804", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/joshua%2C-anthony-parker%2C-joseph/SBTE_2_1022233876", + "sid": "SBTE_2_1022233876", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 2.1, + "link": null, + "sid": "SBTS_2_3589024803", + "bet_limit": null + }, + { + "name": "Joseph Parker", + "price": 1.71, + "link": null, + "sid": "SBTS_2_3589024806", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024804", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022233876", + "sid": "1022233876", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 2.02, + "link": null, + "sid": "3589024803", + "bet_limit": null + }, + { + "name": "Joseph Parker", + "price": 1.67, + "link": null, + "sid": "3589024806", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3589024804", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022233876", + "sid": "1022233876", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 2.1, + "link": null, + "sid": "3589024803", + "bet_limit": null + }, + { + "name": "Joseph Parker", + "price": 1.71, + "link": null, + "sid": "3589024806", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024804", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/joshua%2C-anthony-parker%2C-joseph/SBTE_2_1022233876", + "sid": "SBTE_2_1022233876", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 2.1, + "link": null, + "sid": "SBTS_2_3589024803", + "bet_limit": null + }, + { + "name": "Joseph Parker", + "price": 1.71, + "link": null, + "sid": "SBTS_2_3589024806", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024804", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "04521dbc5e6a8a36f586526be54dfa71", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Oleksandr Usyk", + "away_team": "Anthony Joshua", + "bookmakers": [ + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022233878", + "sid": "1022233878", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 5.8, + "link": null, + "sid": "3589024467", + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.15, + "link": null, + "sid": "3589024465", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024466", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/usyk%2C-oleksandr-joshua%2C-anthony/SBTE_2_1022233878", + "sid": "SBTE_2_1022233878", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 5.8, + "link": null, + "sid": "SBTS_2_3589024467", + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.15, + "link": null, + "sid": "SBTS_2_3589024465", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024466", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022233878", + "sid": "1022233878", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 5.8, + "link": null, + "sid": "3589024467", + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.15, + "link": null, + "sid": "3589024465", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024466", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022233878", + "sid": "1022233878", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 5.1, + "link": null, + "sid": "3589024467", + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.13, + "link": null, + "sid": "3589024465", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3589024466", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/usyk%2C-oleksandr-joshua%2C-anthony/SBTE_2_1022233878", + "sid": "SBTE_2_1022233878", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 5.8, + "link": null, + "sid": "SBTS_2_3589024467", + "bet_limit": null + }, + { + "name": "Oleksandr Usyk", + "price": 1.15, + "link": null, + "sid": "SBTS_2_3589024465", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024466", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "2f3264a4c1a674d266bc395aec28500f", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Tyson Fury", + "away_team": "Anthony Joshua", + "bookmakers": [ + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022233875", + "sid": "1022233875", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 4.0, + "link": null, + "sid": "3589024887", + "bet_limit": null + }, + { + "name": "Tyson Fury", + "price": 1.25, + "link": null, + "sid": "3589024885", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024886", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/fury%2C-tyson-joshua%2C-anthony/SBTE_2_1022233875", + "sid": "SBTE_2_1022233875", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 4.0, + "link": null, + "sid": "SBTS_2_3589024887", + "bet_limit": null + }, + { + "name": "Tyson Fury", + "price": 1.25, + "link": null, + "sid": "SBTS_2_3589024885", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024886", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/fury%2C-tyson-joshua%2C-anthony/SBTE_2_1022233875", + "sid": "SBTE_2_1022233875", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 4.0, + "link": null, + "sid": "SBTS_2_3589024887", + "bet_limit": null + }, + { + "name": "Tyson Fury", + "price": 1.25, + "link": null, + "sid": "SBTS_2_3589024885", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024886", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022233875", + "sid": "1022233875", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 3.7, + "link": null, + "sid": "3589024887", + "bet_limit": null + }, + { + "name": "Tyson Fury", + "price": 1.23, + "link": null, + "sid": "3589024885", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3589024886", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022233875", + "sid": "1022233875", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 4.0, + "link": null, + "sid": "3589024887", + "bet_limit": null + }, + { + "name": "Tyson Fury", + "price": 1.25, + "link": null, + "sid": "3589024885", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024886", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "2e41a4e3d9858f72efb06a92e8b7de1c", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Anthony Joshua", + "away_team": "Zhilei Zhang", + "bookmakers": [ + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022233877", + "sid": "1022233877", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 1.93, + "link": null, + "sid": "3589024527", + "bet_limit": null + }, + { + "name": "Zhilei Zhang", + "price": 1.85, + "link": null, + "sid": "3589024530", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024529", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/joshua%2C-anthony-zhilei-zhang/SBTE_2_1022233877", + "sid": "SBTE_2_1022233877", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 1.93, + "link": null, + "sid": "SBTS_2_3589024527", + "bet_limit": null + }, + { + "name": "Zhilei Zhang", + "price": 1.85, + "link": null, + "sid": "SBTS_2_3589024530", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024529", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022233877", + "sid": "1022233877", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 1.93, + "link": null, + "sid": "3589024527", + "bet_limit": null + }, + { + "name": "Zhilei Zhang", + "price": 1.85, + "link": null, + "sid": "3589024530", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024529", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022233877", + "sid": "1022233877", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 1.87, + "link": null, + "sid": "3589024527", + "bet_limit": null + }, + { + "name": "Zhilei Zhang", + "price": 1.8, + "link": null, + "sid": "3589024530", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3589024529", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/joshua%2C-anthony-zhilei-zhang/SBTE_2_1022233877", + "sid": "SBTE_2_1022233877", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Anthony Joshua", + "price": 1.93, + "link": null, + "sid": "SBTS_2_3589024527", + "bet_limit": null + }, + { + "name": "Zhilei Zhang", + "price": 1.85, + "link": null, + "sid": "SBTS_2_3589024530", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024529", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "98abaa78a6b9a3135556fd9d9850160d", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Artur Beterbiev", + "away_team": "Canelo \u00c1lvarez", + "bookmakers": [ + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022233885", + "sid": "1022233885", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Artur Beterbiev", + "price": 1.26, + "link": null, + "sid": "3589024927", + "bet_limit": null + }, + { + "name": "Canelo \u00c1lvarez", + "price": 3.85, + "link": null, + "sid": "3589024929", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024928", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/beterbiev%2C-artur-canelo-%C3%A1lvarez/SBTE_2_1022233885", + "sid": "SBTE_2_1022233885", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Artur Beterbiev", + "price": 1.26, + "link": null, + "sid": "SBTS_2_3589024927", + "bet_limit": null + }, + { + "name": "Canelo \u00c1lvarez", + "price": 3.85, + "link": null, + "sid": "SBTS_2_3589024929", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024928", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/beterbiev%2C-artur-canelo-%C3%A1lvarez/SBTE_2_1022233885", + "sid": "SBTE_2_1022233885", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Artur Beterbiev", + "price": 1.26, + "link": null, + "sid": "SBTS_2_3589024927", + "bet_limit": null + }, + { + "name": "Canelo \u00c1lvarez", + "price": 3.85, + "link": null, + "sid": "SBTS_2_3589024929", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024928", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022233885", + "sid": "1022233885", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Artur Beterbiev", + "price": 1.24, + "link": null, + "sid": "3589024927", + "bet_limit": null + }, + { + "name": "Canelo \u00c1lvarez", + "price": 3.55, + "link": null, + "sid": "3589024929", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3589024928", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022233885", + "sid": "1022233885", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Artur Beterbiev", + "price": 1.26, + "link": null, + "sid": "3589024927", + "bet_limit": null + }, + { + "name": "Canelo \u00c1lvarez", + "price": 3.85, + "link": null, + "sid": "3589024929", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024928", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "742c8f2f1d27698f6a807216832fb499", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Artur Beterbiev", + "away_team": "David Benavidez", + "bookmakers": [ + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/beterbiev%2C-artur-benavidez%2C-david/SBTE_2_1022233888", + "sid": "SBTE_2_1022233888", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Artur Beterbiev", + "price": 1.34, + "link": null, + "sid": "SBTS_2_3616779061", + "bet_limit": null + }, + { + "name": "David Benavidez", + "price": 3.2, + "link": null, + "sid": "SBTS_2_3616779063", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3616779062", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/beterbiev%2C-artur-benavidez%2C-david/SBTE_2_1022233888", + "sid": "SBTE_2_1022233888", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Artur Beterbiev", + "price": 1.34, + "link": null, + "sid": "SBTS_2_3616779061", + "bet_limit": null + }, + { + "name": "David Benavidez", + "price": 3.2, + "link": null, + "sid": "SBTS_2_3616779063", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3616779062", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022233888", + "sid": "1022233888", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Artur Beterbiev", + "price": 1.34, + "link": null, + "sid": "3616779061", + "bet_limit": null + }, + { + "name": "David Benavidez", + "price": 3.2, + "link": null, + "sid": "3616779063", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3616779062", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022233888", + "sid": "1022233888", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Artur Beterbiev", + "price": 1.34, + "link": null, + "sid": "3616779061", + "bet_limit": null + }, + { + "name": "David Benavidez", + "price": 3.2, + "link": null, + "sid": "3616779063", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3616779062", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022233888", + "sid": "1022233888", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Artur Beterbiev", + "price": 1.32, + "link": null, + "sid": "3616779061", + "bet_limit": null + }, + { + "name": "David Benavidez", + "price": 3.0, + "link": null, + "sid": "3616779063", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3616779062", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "ee90266a10584d6a30a2382b0cf4b090", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Dmitry Bivol", + "away_team": "Artur Beterbiev", + "bookmakers": [ + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022945833", + "sid": "1022945833", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Artur Beterbiev", + "price": 2.23, + "link": null, + "sid": "3653898929", + "bet_limit": null + }, + { + "name": "Dmitry Bivol", + "price": 1.56, + "link": null, + "sid": "3653898927", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3653898928", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022945833", + "sid": "1022945833", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Artur Beterbiev", + "price": 2.33, + "link": null, + "sid": "3653898929", + "bet_limit": null + }, + { + "name": "Dmitry Bivol", + "price": 1.61, + "link": null, + "sid": "3653898927", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3653898928", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/bivol%2C-dmitry-beterbiev%2C-artur/SBTE_2_1022945833", + "sid": "SBTE_2_1022945833", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Artur Beterbiev", + "price": 2.33, + "link": null, + "sid": "SBTS_2_3653898929", + "bet_limit": null + }, + { + "name": "Dmitry Bivol", + "price": 1.61, + "link": null, + "sid": "SBTS_2_3653898927", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3653898928", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022945833", + "sid": "1022945833", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Artur Beterbiev", + "price": 2.33, + "link": null, + "sid": "3653898929", + "bet_limit": null + }, + { + "name": "Dmitry Bivol", + "price": 1.61, + "link": null, + "sid": "3653898927", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3653898928", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/bivol%2C-dmitry-beterbiev%2C-artur/SBTE_2_1022945833", + "sid": "SBTE_2_1022945833", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Artur Beterbiev", + "price": 2.33, + "link": null, + "sid": "SBTS_2_3653898929", + "bet_limit": null + }, + { + "name": "Dmitry Bivol", + "price": 1.61, + "link": null, + "sid": "SBTS_2_3653898927", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3653898928", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "34fe6e6b3b005b8eb62c599a2da42b29", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Canelo \u00c1lvarez", + "away_team": "Caleb Plant", + "bookmakers": [ + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/canelo-%C3%A1lvarez-plant%2C-caleb/SBTE_2_1022233889", + "sid": "SBTE_2_1022233889", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Caleb Plant", + "price": 5.1, + "link": null, + "sid": "SBTS_2_3616779119", + "bet_limit": null + }, + { + "name": "Canelo \u00c1lvarez", + "price": 1.17, + "link": null, + "sid": "SBTS_2_3616779117", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3616779118", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022233889", + "sid": "1022233889", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Caleb Plant", + "price": 5.1, + "link": null, + "sid": "3616779119", + "bet_limit": null + }, + { + "name": "Canelo \u00c1lvarez", + "price": 1.17, + "link": null, + "sid": "3616779117", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3616779118", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/canelo-%C3%A1lvarez-plant%2C-caleb/SBTE_2_1022233889", + "sid": "SBTE_2_1022233889", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Caleb Plant", + "price": 5.1, + "link": null, + "sid": "SBTS_2_3616779119", + "bet_limit": null + }, + { + "name": "Canelo \u00c1lvarez", + "price": 1.17, + "link": null, + "sid": "SBTS_2_3616779117", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3616779118", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022233889", + "sid": "1022233889", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Caleb Plant", + "price": 5.1, + "link": null, + "sid": "3616779119", + "bet_limit": null + }, + { + "name": "Canelo \u00c1lvarez", + "price": 1.17, + "link": null, + "sid": "3616779117", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3616779118", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022233889", + "sid": "1022233889", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Caleb Plant", + "price": 4.6, + "link": null, + "sid": "3616779119", + "bet_limit": null + }, + { + "name": "Canelo \u00c1lvarez", + "price": 1.16, + "link": null, + "sid": "3616779117", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3616779118", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "08f55c0345b11be6707399eb59dfaa80", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Canelo \u00c1lvarez", + "away_team": "David Benavidez", + "bookmakers": [ + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/canelo-%C3%A1lvarez-benavidez%2C-david/SBTE_2_1022233884", + "sid": "SBTE_2_1022233884", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 1.81, + "link": null, + "sid": "SBTS_2_3616782245", + "bet_limit": null + }, + { + "name": "David Benavidez", + "price": 1.97, + "link": null, + "sid": "SBTS_2_3616782247", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3616782246", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022233884", + "sid": "1022233884", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 1.81, + "link": null, + "sid": "3616782245", + "bet_limit": null + }, + { + "name": "David Benavidez", + "price": 1.96, + "link": null, + "sid": "3616782247", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3616782246", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/canelo-%C3%A1lvarez-benavidez%2C-david/SBTE_2_1022233884", + "sid": "SBTE_2_1022233884", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 1.81, + "link": null, + "sid": "SBTS_2_3616782245", + "bet_limit": null + }, + { + "name": "David Benavidez", + "price": 1.97, + "link": null, + "sid": "SBTS_2_3616782247", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3616782246", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022233884", + "sid": "1022233884", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 1.81, + "link": null, + "sid": "3616782245", + "bet_limit": null + }, + { + "name": "David Benavidez", + "price": 1.96, + "link": null, + "sid": "3616782247", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3616782246", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022233884", + "sid": "1022233884", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 1.76, + "link": null, + "sid": "3616782245", + "bet_limit": null + }, + { + "name": "David Benavidez", + "price": 1.91, + "link": null, + "sid": "3616782247", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3616782246", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "d3ea2cebf946f8c7bd5174d08c92864c", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Dmitry Bivol", + "away_team": "Canelo \u00c1lvarez", + "bookmakers": [ + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022233886", + "sid": "1022233886", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 3.45, + "link": null, + "sid": "3589028080", + "bet_limit": null + }, + { + "name": "Dmitry Bivol", + "price": 1.32, + "link": null, + "sid": "3589028078", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589028079", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022233886", + "sid": "1022233886", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 3.45, + "link": null, + "sid": "3589028080", + "bet_limit": null + }, + { + "name": "Dmitry Bivol", + "price": 1.32, + "link": null, + "sid": "3589028078", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589028079", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/bivol%2C-dmitry-canelo-%C3%A1lvarez/SBTE_2_1022233886", + "sid": "SBTE_2_1022233886", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 3.45, + "link": null, + "sid": "SBTS_2_3589028080", + "bet_limit": null + }, + { + "name": "Dmitry Bivol", + "price": 1.32, + "link": null, + "sid": "SBTS_2_3589028078", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589028079", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022233886", + "sid": "1022233886", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 3.25, + "link": null, + "sid": "3589028080", + "bet_limit": null + }, + { + "name": "Dmitry Bivol", + "price": 1.3, + "link": null, + "sid": "3589028078", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3589028079", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/bivol%2C-dmitry-canelo-%C3%A1lvarez/SBTE_2_1022233886", + "sid": "SBTE_2_1022233886", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Canelo \u00c1lvarez", + "price": 3.45, + "link": null, + "sid": "SBTS_2_3589028080", + "bet_limit": null + }, + { + "name": "Dmitry Bivol", + "price": 1.32, + "link": null, + "sid": "SBTS_2_3589028078", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589028079", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "d9d81ef7b61b014b753f11188084f137", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Chris Eubank Jr", + "away_team": "Conor Benn", + "bookmakers": [ + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/eubank-jr%2C-chris-benn%2C-conor/SBTE_2_1023564696", + "sid": "SBTE_2_1023564696", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Eubank Jr", + "price": 1.61, + "link": null, + "sid": "SBTS_2_3724187353", + "bet_limit": null + }, + { + "name": "Conor Benn", + "price": 2.38, + "link": null, + "sid": "SBTS_2_3724187355", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "SBTS_2_3724187354", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1023564696", + "sid": "1023564696", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Eubank Jr", + "price": 1.56, + "link": null, + "sid": "3724187353", + "bet_limit": null + }, + { + "name": "Conor Benn", + "price": 2.28, + "link": null, + "sid": "3724187355", + "bet_limit": null + }, + { + "name": "Draw", + "price": 12.5, + "link": null, + "sid": "3724187354", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1023564696", + "sid": "1023564696", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Eubank Jr", + "price": 1.61, + "link": null, + "sid": "3724187353", + "bet_limit": null + }, + { + "name": "Conor Benn", + "price": 2.38, + "link": null, + "sid": "3724187355", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "3724187354", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1023564696", + "sid": "1023564696", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Eubank Jr", + "price": 1.61, + "link": null, + "sid": "3724187353", + "bet_limit": null + }, + { + "name": "Conor Benn", + "price": 2.38, + "link": null, + "sid": "3724187355", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "3724187354", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/eubank-jr%2C-chris-benn%2C-conor/SBTE_2_1023564696", + "sid": "SBTE_2_1023564696", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Chris Eubank Jr", + "price": 1.61, + "link": null, + "sid": "SBTS_2_3724187353", + "bet_limit": null + }, + { + "name": "Conor Benn", + "price": 2.38, + "link": null, + "sid": "SBTS_2_3724187355", + "bet_limit": null + }, + { + "name": "Draw", + "price": 16.0, + "link": null, + "sid": "SBTS_2_3724187354", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "654f25b6945e8fbb9be249b7a8d327b6", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Daniel Dubois", + "away_team": "Tyson Fury", + "bookmakers": [ + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022233880", + "sid": "1022233880", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 3.75, + "link": null, + "sid": "3589024365", + "bet_limit": null + }, + { + "name": "Tyson Fury", + "price": 1.3, + "link": null, + "sid": "3589024367", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024366", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/dubois%2C-daniel-fury%2C-tyson/SBTE_2_1022233880", + "sid": "SBTE_2_1022233880", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 3.75, + "link": null, + "sid": "SBTS_2_3589024365", + "bet_limit": null + }, + { + "name": "Tyson Fury", + "price": 1.3, + "link": null, + "sid": "SBTS_2_3589024367", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024366", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022233880", + "sid": "1022233880", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 3.5, + "link": null, + "sid": "3589024365", + "bet_limit": null + }, + { + "name": "Tyson Fury", + "price": 1.28, + "link": null, + "sid": "3589024367", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3589024366", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022233880", + "sid": "1022233880", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 3.75, + "link": null, + "sid": "3589024365", + "bet_limit": null + }, + { + "name": "Tyson Fury", + "price": 1.3, + "link": null, + "sid": "3589024367", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024366", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/dubois%2C-daniel-fury%2C-tyson/SBTE_2_1022233880", + "sid": "SBTE_2_1022233880", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 3.75, + "link": null, + "sid": "SBTS_2_3589024365", + "bet_limit": null + }, + { + "name": "Tyson Fury", + "price": 1.3, + "link": null, + "sid": "SBTS_2_3589024367", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024366", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "47177fc9133cddcba077cf172a7e91dd", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Daniel Dubois", + "away_team": "Zhilei Zhang", + "bookmakers": [ + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022233879", + "sid": "1022233879", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 1.51, + "link": null, + "sid": "3589024834", + "bet_limit": null + }, + { + "name": "Zhilei Zhang", + "price": 2.5, + "link": null, + "sid": "3589024836", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024835", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/dubois%2C-daniel-zhilei-zhang/SBTE_2_1022233879", + "sid": "SBTE_2_1022233879", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 1.52, + "link": null, + "sid": "SBTS_2_3589024834", + "bet_limit": null + }, + { + "name": "Zhilei Zhang", + "price": 2.5, + "link": null, + "sid": "SBTS_2_3589024836", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024835", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022233879", + "sid": "1022233879", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 1.49, + "link": null, + "sid": "3589024834", + "bet_limit": null + }, + { + "name": "Zhilei Zhang", + "price": 2.38, + "link": null, + "sid": "3589024836", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3589024835", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022233879", + "sid": "1022233879", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 1.51, + "link": null, + "sid": "3589024834", + "bet_limit": null + }, + { + "name": "Zhilei Zhang", + "price": 2.5, + "link": null, + "sid": "3589024836", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024835", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/dubois%2C-daniel-zhilei-zhang/SBTE_2_1022233879", + "sid": "SBTE_2_1022233879", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Daniel Dubois", + "price": 1.52, + "link": null, + "sid": "SBTS_2_3589024834", + "bet_limit": null + }, + { + "name": "Zhilei Zhang", + "price": 2.5, + "link": null, + "sid": "SBTS_2_3589024836", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024835", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "59975e3533dabad9ed602745847ec1a6", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Dmitry Bivol", + "away_team": "David Benavidez", + "bookmakers": [ + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022981838", + "sid": "1022981838", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Benavidez", + "price": 3.9, + "link": null, + "sid": "3658660983", + "bet_limit": null + }, + { + "name": "Dmitry Bivol", + "price": 1.27, + "link": null, + "sid": "3658660979", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3658660980", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/bivol%2C-dmitry-benavidez%2C-david/SBTE_2_1022981838", + "sid": "SBTE_2_1022981838", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Benavidez", + "price": 3.9, + "link": null, + "sid": "SBTS_2_3658660983", + "bet_limit": null + }, + { + "name": "Dmitry Bivol", + "price": 1.27, + "link": null, + "sid": "SBTS_2_3658660979", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3658660980", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022981838", + "sid": "1022981838", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Benavidez", + "price": 3.6, + "link": null, + "sid": "3658660983", + "bet_limit": null + }, + { + "name": "Dmitry Bivol", + "price": 1.25, + "link": null, + "sid": "3658660979", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3658660980", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022981838", + "sid": "1022981838", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Benavidez", + "price": 3.9, + "link": null, + "sid": "3658660983", + "bet_limit": null + }, + { + "name": "Dmitry Bivol", + "price": 1.27, + "link": null, + "sid": "3658660979", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3658660980", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/bivol%2C-dmitry-benavidez%2C-david/SBTE_2_1022981838", + "sid": "SBTE_2_1022981838", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "David Benavidez", + "price": 3.9, + "link": null, + "sid": "SBTS_2_3658660983", + "bet_limit": null + }, + { + "name": "Dmitry Bivol", + "price": 1.27, + "link": null, + "sid": "SBTS_2_3658660979", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3658660980", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "53d3b9ee015dc4a1e21caf955ca60e54", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Devin Haney", + "away_team": "Ryan Garcia", + "bookmakers": [ + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022233887", + "sid": "1022233887", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Devin Haney", + "price": 2.25, + "link": null, + "sid": "3589025015", + "bet_limit": null + }, + { + "name": "Ryan Garcia", + "price": 1.62, + "link": null, + "sid": "3589025017", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589025016", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022233887", + "sid": "1022233887", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Devin Haney", + "price": 2.25, + "link": null, + "sid": "3589025015", + "bet_limit": null + }, + { + "name": "Ryan Garcia", + "price": 1.62, + "link": null, + "sid": "3589025017", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589025016", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/haney%2C-devin-garcia%2C-ryan/SBTE_2_1022233887", + "sid": "SBTE_2_1022233887", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Devin Haney", + "price": 2.25, + "link": null, + "sid": "SBTS_2_3589025015", + "bet_limit": null + }, + { + "name": "Ryan Garcia", + "price": 1.62, + "link": null, + "sid": "SBTS_2_3589025017", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589025016", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022233887", + "sid": "1022233887", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Devin Haney", + "price": 2.16, + "link": null, + "sid": "3589025015", + "bet_limit": null + }, + { + "name": "Ryan Garcia", + "price": 1.57, + "link": null, + "sid": "3589025017", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3589025016", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/haney%2C-devin-garcia%2C-ryan/SBTE_2_1022233887", + "sid": "SBTE_2_1022233887", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Devin Haney", + "price": 2.25, + "link": null, + "sid": "SBTS_2_3589025015", + "bet_limit": null + }, + { + "name": "Ryan Garcia", + "price": 1.62, + "link": null, + "sid": "SBTS_2_3589025017", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589025016", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "lowvig", + "title": "LowVig.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.lowvig.ag/sportsbook/boxing/bouts/game/490589779", + "sid": "490589779", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Devin Haney", + "price": 2.4, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Ryan Garcia", + "price": 1.59, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + }, + { + "key": "betonlineag", + "title": "BetOnline.ag", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://sports.betonline.ag/sportsbook/boxing/bouts/game/490589779", + "sid": "490589779", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Devin Haney", + "price": 2.4, + "link": null, + "sid": null, + "bet_limit": null + }, + { + "name": "Ryan Garcia", + "price": 1.59, + "link": null, + "sid": null, + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "071c1d41d727c767c960a01e14f8a9fb", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Teofimo Lop\u00e9z", + "away_team": "Devin Haney", + "bookmakers": [ + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/lop%C3%A9z%2C-teofimo-haney%2C-devin/SBTE_2_1022233909", + "sid": "SBTE_2_1022233909", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Devin Haney", + "price": 1.57, + "link": null, + "sid": "SBTS_2_3616779022", + "bet_limit": null + }, + { + "name": "Teofimo Lop\u00e9z", + "price": 2.38, + "link": null, + "sid": "SBTS_2_3616779020", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3616779021", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/lop%C3%A9z%2C-teofimo-haney%2C-devin/SBTE_2_1022233909", + "sid": "SBTE_2_1022233909", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Devin Haney", + "price": 1.57, + "link": null, + "sid": "SBTS_2_3616779022", + "bet_limit": null + }, + { + "name": "Teofimo Lop\u00e9z", + "price": 2.38, + "link": null, + "sid": "SBTS_2_3616779020", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3616779021", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022233909", + "sid": "1022233909", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Devin Haney", + "price": 1.56, + "link": null, + "sid": "3616779022", + "bet_limit": null + }, + { + "name": "Teofimo Lop\u00e9z", + "price": 2.38, + "link": null, + "sid": "3616779020", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3616779021", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022233909", + "sid": "1022233909", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Devin Haney", + "price": 1.56, + "link": null, + "sid": "3616779022", + "bet_limit": null + }, + { + "name": "Teofimo Lop\u00e9z", + "price": 2.38, + "link": null, + "sid": "3616779020", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3616779021", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022233909", + "sid": "1022233909", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Devin Haney", + "price": 1.54, + "link": null, + "sid": "3616779022", + "bet_limit": null + }, + { + "name": "Teofimo Lop\u00e9z", + "price": 2.28, + "link": null, + "sid": "3616779020", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3616779021", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "a1e04c13f7afcac9d3df3296711e28e8", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Terence Crawford", + "away_team": "Errol Spence Jr", + "bookmakers": [ + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022233890", + "sid": "1022233890", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Errol Spence Jr", + "price": 5.4, + "link": null, + "sid": "3589024913", + "bet_limit": null + }, + { + "name": "Terence Crawford", + "price": 1.16, + "link": null, + "sid": "3589024909", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024911", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/crawford%2C-terence-spence-jr.%2C-errol/SBTE_2_1022233890", + "sid": "SBTE_2_1022233890", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Errol Spence Jr", + "price": 5.4, + "link": null, + "sid": "SBTS_2_3589024913", + "bet_limit": null + }, + { + "name": "Terence Crawford", + "price": 1.16, + "link": null, + "sid": "SBTS_2_3589024909", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024911", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/crawford%2C-terence-spence-jr.%2C-errol/SBTE_2_1022233890", + "sid": "SBTE_2_1022233890", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Errol Spence Jr", + "price": 5.4, + "link": null, + "sid": "SBTS_2_3589024913", + "bet_limit": null + }, + { + "name": "Terence Crawford", + "price": 1.16, + "link": null, + "sid": "SBTS_2_3589024909", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3589024911", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022233890", + "sid": "1022233890", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Errol Spence Jr", + "price": 4.9, + "link": null, + "sid": "3589024913", + "bet_limit": null + }, + { + "name": "Terence Crawford", + "price": 1.15, + "link": null, + "sid": "3589024909", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3589024911", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022233890", + "sid": "1022233890", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Errol Spence Jr", + "price": 5.4, + "link": null, + "sid": "3589024913", + "bet_limit": null + }, + { + "name": "Terence Crawford", + "price": 1.16, + "link": null, + "sid": "3589024909", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3589024911", + "bet_limit": null + } + ] + } + ] + } + ] + }, + { + "id": "c0862b2f945b84c78c114e88ed10603a", + "sport_key": "boxing_boxing", + "sport_title": "Boxing", + "commence_time": "2025-12-31T22:59:00Z", + "home_team": "Oleksandr Usyk", + "away_team": "Tyson Fury", + "bookmakers": [ + { + "key": "virginbet", + "title": "Virgin Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.virginbet.com/sports/boxing/boxing/usyk%2C-oleksandr-fury%2C-tyson/SBTE_2_1022405798", + "sid": "SBTE_2_1022405798", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Oleksandr Usyk", + "price": 1.29, + "link": null, + "sid": "SBTS_2_3598145381", + "bet_limit": null + }, + { + "name": "Tyson Fury", + "price": 3.55, + "link": null, + "sid": "SBTS_2_3598145383", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3598145382", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "leovegas", + "title": "LeoVegas", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.leovegas.co.uk/betting#event/1022405798", + "sid": "1022405798", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Oleksandr Usyk", + "price": 1.27, + "link": null, + "sid": "3598145381", + "bet_limit": null + }, + { + "name": "Tyson Fury", + "price": 3.3, + "link": null, + "sid": "3598145383", + "bet_limit": null + }, + { + "name": "Draw", + "price": 14.0, + "link": null, + "sid": "3598145382", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "grosvenor", + "title": "Grosvenor", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.grosvenorcasinos.com/sport#event/1022405798", + "sid": "1022405798", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Oleksandr Usyk", + "price": 1.29, + "link": null, + "sid": "3598145381", + "bet_limit": null + }, + { + "name": "Tyson Fury", + "price": 3.55, + "link": null, + "sid": "3598145383", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3598145382", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "livescorebet", + "title": "LiveScore Bet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.livescorebet.com/uk/sports/boxing/boxing/usyk%2C-oleksandr-fury%2C-tyson/SBTE_2_1022405798", + "sid": "SBTE_2_1022405798", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Oleksandr Usyk", + "price": 1.29, + "link": null, + "sid": "SBTS_2_3598145381", + "bet_limit": null + }, + { + "name": "Tyson Fury", + "price": 3.55, + "link": null, + "sid": "SBTS_2_3598145383", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "SBTS_2_3598145382", + "bet_limit": null + } + ] + } + ] + }, + { + "key": "unibet_uk", + "title": "Unibet", + "last_update": "2025-05-09T12:32:12Z", + "link": "https://www.unibet.co.uk/betting/sports/event/1022405798", + "sid": "1022405798", + "markets": [ + { + "key": "h2h", + "last_update": "2025-05-09T12:32:12Z", + "link": null, + "sid": null, + "outcomes": [ + { + "name": "Oleksandr Usyk", + "price": 1.29, + "link": null, + "sid": "3598145381", + "bet_limit": null + }, + { + "name": "Tyson Fury", + "price": 3.55, + "link": null, + "sid": "3598145383", + "bet_limit": null + }, + { + "name": "Draw", + "price": 19.0, + "link": null, + "sid": "3598145382", + "bet_limit": null + } + ] + } + ] + } + ] + } +] \ No newline at end of file diff --git a/odds/scripts/fetch_odds.py b/odds/scripts/fetch_odds.py new file mode 100644 index 0000000..bcf681a --- /dev/null +++ b/odds/scripts/fetch_odds.py @@ -0,0 +1,103 @@ +""" +Fetch sports odds from The Odds API and save JSON snapshots. + +Requires ODDS_API_KEY in environment or .env (see project .env.example). + +Usage: + python odds/scripts/fetch_odds.py --sport boxing_boxing --out odds/data/samples/boxing_odds.json +""" + +from __future__ import annotations + +import argparse +import json +import os +import sys +from pathlib import Path + +try: + import requests +except ImportError: + print("Install dependencies: pip install -r requirements.txt", file=sys.stderr) + raise + +API_BASE = "https://api.the-odds-api.com/v4" +DEFAULT_SPORT = "boxing_boxing" +DEFAULT_REGIONS = "uk,eu" +DEFAULT_MARKETS = "h2h" + + +def get_api_key() -> str: + """Read API key from ODDS_API_KEY environment variable.""" + key = os.environ.get("ODDS_API_KEY", "").strip() + if not key: + raise SystemExit( + "Missing ODDS_API_KEY. Copy .env.example to .env and set your key." + ) + return key + + +def fetch_odds( + sport: str, + regions: str, + markets: str, + api_key: str, +) -> list[dict]: + """ + GET odds for a sport from The Odds API. + + Args: + sport: Sport key (e.g. boxing_boxing). + regions: Comma-separated region codes. + markets: Comma-separated market keys. + api_key: The Odds API key. + + Returns: + Parsed JSON list of events. + + Raises: + requests.HTTPError: On non-2xx response. + """ + url = f"{API_BASE}/sports/{sport}/odds" + params = { + "apiKey": api_key, + "regions": regions, + "markets": markets, + "oddsFormat": "decimal", + } + response = requests.get(url, params=params, timeout=60) + response.raise_for_status() + return response.json() + + +def save_odds(data: list[dict], output_path: Path) -> None: + """Write odds JSON to disk with stable formatting.""" + output_path.parent.mkdir(parents=True, exist_ok=True) + with output_path.open("w", encoding="utf-8") as f: + json.dump(data, f, indent=4, ensure_ascii=False) + print(f"Saved {len(data)} events to {output_path}") + + +def parse_args() -> argparse.Namespace: + parser = argparse.ArgumentParser(description="Fetch odds from The Odds API") + parser.add_argument("--sport", default=DEFAULT_SPORT, help="Sport key") + parser.add_argument("--regions", default=DEFAULT_REGIONS, help="Region codes") + parser.add_argument("--markets", default=DEFAULT_MARKETS, help="Market keys") + parser.add_argument( + "--out", + type=Path, + default=Path("odds/data/samples/boxing_odds.json"), + help="Output JSON path", + ) + return parser.parse_args() + + +def main() -> None: + args = parse_args() + api_key = get_api_key() + data = fetch_odds(args.sport, args.regions, args.markets, api_key) + save_odds(data, args.out) + + +if __name__ == "__main__": + main() diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..0eb8cae --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +requests>=2.31.0