Price alerts
Watch best odds and notify when a selection crosses your threshold.
Telegram · Python alerts
Build a Telegram bot that pushes UK football odds alerts in Python — poll fixtures and best odds, then notify when your rules hit. Full walkthrough: Telegram football betting bot guide.
1. GET /events2. GET /odds/best3. if rule → Telegram sendMessage Poll on a cron / asyncio interval. Store last prices to detect moves.
How it’s used
Your bot owns the rules (edge %, bookmaker list, kickoff window). UK Odds API supplies the normalised prices so you don’t maintain scrapers.
Watch best odds and notify when a selection crosses your threshold.
Poll /arbitrage or compute value from /odds/best vs your model.
Copy‑paste these requests into your poller.
GET /v1/football/events?schedule_date=YYYY-MM-DD&has_odds=true&upcoming=true&per_page=25
GET /v1/football/events/EVENT_ID/odds/best?odds_format=decimal
GET /v1/football/arbitrage?date=YYYY-MM-DD&min_profit=0.5&limit=20 Send X-Api-Key on every request.
Compact payload for alert formatting.
{
"event_id": "evt_123",
"event_title": "Arsenal v Chelsea",
"kickoff_utc": "2026-04-30T19:00:00Z",
"best": [
{ "name": "Home", "odds": 2.10, "bookmaker_code": "UO004" },
{ "name": "Draw", "odds": 3.40, "bookmaker_code": "UO018" },
{ "name": "Away", "odds": 3.75, "bookmaker_code": "UO001" }
]
} Realtime data
Reliable enough to poll from a small VPS or serverless cron.
Bookmakers covered
UK-first coverage across major UK bookmakers and exchanges.
Pricing
A focused API built for one job: UK football odds, from every bookmaker, in one clean format.
For evaluation and early prototypes
£49/month
For prototypes and early builds
£149/month
7 days free · £0 due today
For production apps and dashboards
£359/month
For arbitrage tools and revenue-generating systems
FAQ
Yes. Poll UK Odds API for fixtures and best odds (or arbitrage), then send messages with the Telegram Bot API when your rules fire — price moves, value thresholds, or surebets.
Most bots use `/v1/football/events` for today’s fixtures, `/odds/best` for compact prices, and optionally `/arbitrage` for surebet alerts.
No. UK Odds API is a REST JSON feed — your bot authenticates with an API key and polls on a schedule.
See the tutorial at /blog/telegram-football-betting-bot-python for a step-by-step Telegram + UK Odds API example.
Yes. Create an account and subscribe to a plan, then explore endpoints in the Swagger playground at api.ukoddsapi.com/docs.