# Boxing Odds API

The Odds API covers boxing odds for live and upcoming bouts in a simple JSON API.

Not a developer? Current boxing odds can also be accessed in Excel or Google Sheets. For website owners, the odds widget brings bookmaker odds into websites with a simple HTML tag.

# Features

  • Boxing odds are covered for live and upcoming bouts.

  • Fight winner is covered for several bookmakers. See the full list of bookmakers. Limited coverage of total rounds odds are also available from some bookmakers.

  • Odds are refreshed at regular intervals. More information on update intervals can be found here.

  • Current odds data are available on all usage plans, including the free usage plan.

  • Historical boxing odds data is available from May 2023 on paid usage plans. More information on historical odds data can be found here.

  • The API response includes deep links to bookmaker websites.

# Querying Boxing Odds

Featured markets (fight winner and totals) can be queried using the odds endpoint.

Parameters

To query current boxing odds for featured markets, the following parameters need to be provided:

  • sport   In this case boxing_boxing
  • regions   Regions of bookmakers to return, for example, us, uk and eu
  • markets   For example, h2h for fight winner
  • apiKey   Get a free API key
  • oddsFormat   This parameter is optional, and can be used to return odds in American format (oddsFormat=american). By default, odds will return in decimal format.

See the documentation for more options

Example API Request

https://api.the-odds-api.com/v4/sports/boxing_boxing/odds?regions=us,uk,eu&markets=h2h&apiKey=YOUR_API_KEY

Example API Response

The API will return live and upcoming boxing bouts, including start times, home and away teams, and odds from bookmakers for the specified regions and markets.

[{
    "id": "68e59b2288e928826647e6a07e706958",
    "sport_key": "boxing_boxing",
    "sport_title": "Boxing",
    "commence_time": "2025-03-01T21:00:00Z",
    "home_team": "Craig Richards",
    "away_team": "Padraig McCrory",
    "bookmakers": [
        {
            "key": "draftkings",
            "title": "DraftKings",
            "last_update": "2025-02-23T01:04:39Z",
            "markets": [
                {
                    "key": "h2h",
                    "last_update": "2025-02-23T01:04:38Z",
                    "outcomes": [
                        // to see odds in American format, add &oddsFormat=american to the request URL
                        {"name": "Craig Richards", "price": 1.56},
                        {"name": "Padraig McCrory", "price": 2.4}
                    ]
                }
            ]
        },
        ...

The usage cost of the API call in this example is

usage cost = [number of markets] x [number of regions] = 1 x 3 = 3 credits

See the API documentation for details.

# Other Sports

See the full list of sports covered by The Odds API.

# Stay Updated

Follow us on X.com or Bluesky to stay updated on new sports, bookmakers, markets and features.