32Red Odds API

32Red API: 32Red Football Odds as Structured Data

Pull 32Red pre-match football odds into your own product, on their own or lined up against other UK bookmakers in one schema.

32Red Odds Quick Reference
bookmaker_codes=UO031

Sample requests and response fields are covered in the endpoints section below.

Why 32Red Odds Data

Why Teams Need 32Red Odds as Structured Data

32Red does not publish a public developer API for pre-match football odds, so anyone building an odds comparison table, an alert tool, or a tipster product has no official source to call. Teams end up needing 32Red odds sat alongside other UK bookmakers in one clean structure, not a single figure buried inside a webpage. Structured 32Red odds data lets you build comparison tables, track odds movement, power alerts, and support research without babysitting a browser. That is the gap a proper odds API is built to fill.

Odds Comparison Tables

Show users how 32Red's odds stack up against other UK bookmakers side by side. Structured data keeps the table accurate and current without manual checking.

Odds Alerts

Notify users the moment 32Red's odds move on a match or market they follow. Automated alerts need clean, structured odds feeds rather than screen scraping.

Tipster Tools

Back tips with the actual odds available at 32Red, not a rounded estimate. Tipster products gain credibility when they reference real bookmaker odds.

Research and Backtesting

Analyse how 32Red's odds compare historically or against the wider market. Structured data makes backtesting strategies possible without manual data entry.

The DIY trap

Why Scraping 32Red Doesn't Hold Up

Scraping 32Red's website for odds might work for a day, then a layout change or anti-bot measure breaks it. Odds pages update constantly, so a scraper needs to run near-continuously to stay accurate, and that kind of traffic tends to get blocked. Even when it works, you are left parsing inconsistent HTML and matching team names and markets by hand. None of that scales into a product you can rely on.

Technical breakage

Layouts and XHR payloads change without notice. Proxies, CAPTCHAs, and rate limits add cost and downtime.

Legal / ToS risk

Automated extraction is typically prohibited. For a commercial product, a managed feed is the cleaner path. See legal risks of scraping.

The simple path

Where UK Odds API Fits

UK Odds API gives you 32Red's pre-match football odds as clean, structured data, using bookmaker code UO031 to isolate 32Red on its own or line it up against other UK bookmakers in a single schema. You get consistent field names, matched events and markets, and odds that update on a schedule you can rely on. No scraping, no HTML parsing, no broken selectors after a site redesign. Just 32Red odds ready to plug into your product.

Single book or full market

Use 32Red odds on their own to power a dedicated 32Red odds tracker or affiliate tool, or pull them alongside other UK bookmakers to build a full odds comparison product. Either way the data arrives in the same structure, so you are not rewriting your integration if you decide to add more bookmakers later. It is your choice how narrow or wide the coverage needs to be.

Built for Pro workloads

Most customers run on Pro (£149/mo, 7-day trial): 34 UK bookmakers, advanced markets including player props, historical odds. Start with a trial, then call the endpoints below.

How to integrate

Single Bookmaker or Full Comparison

Once you have an API key, the flow is the same for every UK bookmaker: list fixtures, request odds, optionally filter to 32Red.

1) Choose fixtures

List events for a date and select an event_id.

2) Query odds

Fetch odds and filter to 32Red via bookmaker_codes=UO031.

Endpoints

Copy-paste these requests.

GET /v1/football/events?schedule_date=YYYY-MM-DD&has_odds=true&upcoming=true&per_page=10

GET /v1/football/events/EVENT_ID/odds/best?odds_format=decimal&bookmaker_codes=UO031

Replace EVENT_ID with an event_id returned by the events endpoint.

Sample JSON

A compact example response (shape is normalised across bookmakers).

{
  "event_id": "evt_123",
  "odds_format": "decimal",
  "bookmakers": [
    { "code": "UO031", "name": "32Red" }
  ],
  "markets": [
    {
      "key": "1x2",
      "outcomes": [
        { "name": "Home", "odds": 2.05, "bookmaker_code": "UO031" },
        { "name": "Draw", "odds": 3.40, "bookmaker_code": "UO031" },
        { "name": "Away", "odds": 3.75, "bookmaker_code": "UO031" }
      ]
    }
  ]
}

Realtime data

Build Odds Comparison Tools, Alerts, and Tipster Products on 32Red Data

Structured 32Red odds, ready for your product, without the scraping overhead.

Bookmakers covered

32Red and other UK bookmakers, one schema.

Pricing

Plans for 32Red Odds Access

Pick a plan based on how much 32Red and wider UK bookmaker odds data your product needs.

Starter

£79/month

Billed today · no trial

For prototypes and early builds

  • 10 UK bookmakers
  • Core markets only Main match odds such as match winner, over/under, both teams to score, double chance, draw no bet, and handicaps.
  • 1,000 requests/hour
  • Email support

Business

£359/month

Billed today · no trial

For arbitrage tools and revenue-generating systems

  • 34 UK bookmakers
  • Core markets Main match odds such as match winner, over/under, both teams to score, double chance, draw no bet, and handicaps.
  • Advanced markets Deeper betting markets such as corners, cards, team props, player props, specials, and bookmaker-specific markets.
  • 20,000 requests/hour
  • Arbitrage API included
  • Specials Football specials: markets on topics like next manager, transfers, and awards.
  • Historical odds
  • Price boosts Promotional boosted odds on selected markets and outcomes — e.g. enhanced player props and match combos. Single-event and batch endpoints available.
  • Bet builders Bookmaker-published multi-leg bets for one match — e.g. BTTS + corners + cards.

FAQ

Still got questions?

Is there an official 32Red API?

32Red does not publish a public developer API for pulling pre-match football odds into your own product. Teams usually either scrape the website (fragile and against typical Terms of Service) or use a bookmaker odds API such as UK Odds API.

Can I scrape 32Red odds instead?

You can try, but scrapers break when the site changes, hit anti-bot controls, and usually violate Terms of Service. For production apps, a managed odds API is simpler and lower risk than maintaining a 32Red HTML parser.

How do I get 32Red odds via UK Odds API?

Call fixtures with /v1/football/events, then odds with bookmaker_codes=UO031. Remove the filter to compare 32Red against the wider UK market.

What is UK Odds API?

UK Odds API is a UK-first REST API for pre-match football odds across major UK bookmakers and exchanges - one OpenAPI contract, stable UO### codes, best-odds helpers, and advanced markets (including player props) on Pro.

Which plan do I need?

Most production apps use Pro (£149/month, 7-day Pro trial): 34 UK bookmakers, core + advanced markets, historical odds. Arbitrage endpoints are on Business.

Can I try before I pay?

Yes. Start a 7-day Pro trial at ukoddsapi.com/sign-up, then try endpoints in the OpenAPI playground at api.ukoddsapi.com/docs.

What you can build

Real examples.
Copy‑paste code.