Corners Odds API

Corners Odds API for UK Football

Structured corner odds across football leagues, including totals, handicaps and first corner markets. Pulled from UK bookmakers and delivered as clean JSON, ready for a comparison table, alert bot or tipster board.

Corner Markets, Structured
Find the fixture
Pull corner markets

Corner totals and handicaps sit in the core package alongside match odds, so you are not paying extra just to see them. Historical corner odds are available on Pro for backtesting staking models.

Why Corners Odds

Built for Products That Track Corner Markets

Corner betting has grown into its own market, with punters and tipsters watching totals, handicaps and first corner odds as closely as match result prices. If you are building a comparison site, an alert tool or a tipster board around corners, you need those lines refreshed often and matched consistently across bookmakers. Scraping bookmaker sites for corner odds is slow, breaks whenever a site redesigns its markup, and rarely covers more than one or two operators reliably. A proper feed keeps the lines coming without the maintenance burden.

Corner totals and handicaps

Over/under and handicap lines on total match corners are the backbone of most corner betting products. Having these as structured data means you can build comparison tables or staking tools without parsing HTML.

First corner and related markets

Punters also bet on which team wins the first corner, and on team-specific corner totals. These niche lines are exactly where good structured odds data adds the most value, since they are hardest to track by hand.

Spotting the best price

Corner odds vary more between bookmakers than match result prices do, so comparison and alerting tools genuinely help users find better value. Fresh, matched data across operators is what makes that comparison meaningful.

Reliability over scraping

Bookmaker sites change their layout without warning, which breaks scrapers built around corner markets specifically since they are often buried deeper in the page than match odds. A dedicated feed removes that fragility.

Endpoints for corner odds

List corner markets for an event, then fetch odds.

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

GET /v1/football/events/EVENT_ID/odds?package=core&odds_format=decimal

GET /v1/football/events/EVENT_ID/markets?group=corners

Replace EVENT_ID with an event_id from the events endpoint.

Example corner market shape

Normalised selection keys and decimal odds.

{
  "event_id": "evt_123",
  "odds_format": "decimal",
  "markets": [
    {
      "key": "total_corners",
      "name": "Total Corners",
      "outcomes": [
        { "name": "Over 9.5", "odds": 1.90, "bookmaker_code": "UO004" },
        { "name": "Under 9.5", "odds": 1.95, "bookmaker_code": "UO018" }
      ]
    }
  ]
}

What you can build

What You Can Build

Corner odds data suits a specific set of products: comparison tables that show corner totals side by side across bookmakers, alert tools that ping users when a handicap line moves, tipster boards that track recommended corner bets against closing odds, and research tools that study how corner markets behave across a season. Because corner lines shift with team news and referee assignments, keeping them fresh matters more than with some other markets. Historical corner odds add a research layer on top, letting you backtest staking strategies or study how first corner odds have priced favourites over time.

Coverage

UK bookmaker odds for corner markets

Corner totals, handicaps, and first corner odds are collected from the same panel of UK bookmakers used across the rest of the API, so corner data lines up with match odds for direct comparison.

Bookmakers covered

Corner odds from the UK bookmakers punters actually use.

Pricing

Pricing for Corners Odds Access

Corner markets are included in the core package, so there is no separate add-on to buy. Historical corner odds for research and backtesting are available on the Pro plan.

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

Corners Odds API Questions

Is there a dedicated /corners endpoint?

No. Use /v1/football/events/{event_id}/markets?group=corners to discover keys, then /odds with package=core (corners are in core).

Are corners in package=core or full?

Standard corner markets are in package=core. Use package=full when you also need cards, player markets, and other advanced depth.

Can I get historical corner odds?

Yes on Pro via history snapshot with the same package rules.

Which bookmakers are included?

Major UK bookmakers including Bet365, Betfair, Paddy Power, Sky Bet, William Hill, Coral, Ladbrokes, Betway, 888sport, Unibet, and Spreadex.

Can I try the API before I pay?

Yes. Create an account and subscribe to a plan, then explore endpoints in the Swagger playground at api.ukoddsapi.com/docs.

Tutorials

Guides for market products.

Odds polling and props-style builds.