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.
Corners Odds API
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.
Find the fixturePull 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
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.
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.
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.
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.
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.
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.
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
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
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
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.
£79/month
Billed today · no trial
For prototypes and early builds
£149/month
7 days free · £0 due today
For production apps and dashboards
£359/month
Billed today · no trial
For arbitrage tools and revenue-generating systems
FAQ
No. Use /v1/football/events/{event_id}/markets?group=corners to discover keys, then /odds with package=core (corners are in core).
Standard corner markets are in package=core. Use package=full when you also need cards, player markets, and other advanced depth.
Yes on Pro via history snapshot with the same package rules.
Major UK bookmakers including Bet365, Betfair, Paddy Power, Sky Bet, William Hill, Coral, Ladbrokes, Betway, 888sport, Unibet, and Spreadex.
Yes. Create an account and subscribe to a plan, then explore endpoints in the Swagger playground at api.ukoddsapi.com/docs.