1) Scan the day
Call the day feed, then filter by min_profit, market, or competition.
Arbitrage API
Here’s how to get UK football arbitrage opportunities across UK bookmakers — with the endpoints to call, a compact example response, and the markets you can work with.
/v1/football/arbitrage/v1/football/events/EVENT_ID/arbitrage Use the day feed to scan, and the per-event endpoint when you want to refresh a specific match.
How it’s used
Most arbitrage products follow the same flow: scan today’s opportunities, filter by market/profit, then generate a stake plan for the two best legs. The endpoints below are designed to be copy‑pasteable into cron jobs and alerting pipelines.
Call the day feed, then filter by min_profit, market, or competition.
Use the per-event endpoint to refresh odds and update stake splits before placing.
Copy‑paste these requests.
GET /v1/football/arbitrage?date=YYYY-MM-DD&min_profit=0.5&limit=50
GET /v1/football/events/EVENT_ID/arbitrage?min_profit=0.5&limit=25 Replace EVENT_ID with an event_id returned by the events endpoint.
A compact example response (shape is normalised across bookmakers).
{
"date": "2026-04-30",
"opportunities": [
{
"event_id": "evt_123",
"market": "1x2",
"legs": [
{ "bookmaker_code": "UO004", "outcome": "Home", "odds": 2.20 },
{ "bookmaker_code": "UO018", "outcome": "Away", "odds": 3.90 }
],
"profit_percent": 1.1,
"stake_plan": [
{ "bookmaker_code": "UO004", "stake": 52.10 },
{ "bookmaker_code": "UO018", "stake": 47.90 }
]
}
]
} Realtime data
Build faster with accurate, developer-friendly UK Odds API.
Bookmakers covered
UK-first coverage across major UK bookmakers and exchanges.
Pricing
Use Free to validate responses, then upgrade for full coverage and premium endpoints.
For evaluation and dashboard access
£129/month
For prototypes and early products
£249/month
For serious products and dashboards
£549/month
For trading tools and production apps
FAQ
An arbitrage API surfaces opportunities where combining the best odds from different bookmakers can create a positive edge. It typically returns the event, market, best legs, and optional stake splits.
Call the day feed with `date=YYYY-MM-DD` and optionally set `min_profit` and `limit` to control output volume.
All major UK bookmakers, including Bet365, Betfair, Paddy Power, Sky Bet, William Hill, Coral, Ladbrokes, Betway, 888sport, Unibet, and Spreadex.
Yes. Create a free account and generate an API key, then explore endpoints in the Swagger playground at api.ukoddsapi.com/docs.