Fixtures first
List today’s (or any date’s) events with has_odds=true, then loop the event_ids you care about.
UK football odds · Telegram bot
Want Telegram alerts for football odds moves, surebets, or value? You build a bot on UK Odds API: poll fixtures and odds (or arbitrage), then notify with the Telegram Bot API when your rules fire.
1. GET /events2. GET /odds/best3. if rule → Telegram sendMessage Poll on a cron / asyncio interval. Store last odds to detect moves.
What Telegram alert builders need
Telegram football alert products need a reliable odds layer more than they need another bot framework. UK Odds API supplies normalised UK football odds so your bot can focus on thresholds, bookmaker filters, and which chat gets the message.
List today’s (or any date’s) events with has_odds=true, then loop the event_ids you care about.
Pull /odds for every bookmaker on a market - same keys and codes across Bet365, Paddy Power, and the rest.
One row per outcome with the top UK odds and bookmaker code - fast enough for tables, scanners, and alerts.
Same feed powers comparison, arbs, and +EV tools - link out to the arbitrage and valuebet product pages when you need those patterns.
No /telegram route - these are the odds inputs.
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 Replace EVENT_ID with an event_id from the events endpoint.
Normalised markets and bookmaker codes - ready to render or store.
{
"event_id": "evt_123",
"odds_format": "decimal",
"markets": [
{
"key": "1x2",
"best": [
{ "name": "Home", "odds": 2.02, "bookmaker_code": "UO004" },
{ "name": "Draw", "odds": 3.45, "bookmaker_code": "UO018" },
{ "name": "Away", "odds": 3.78, "bookmaker_code": "UO006" }
]
}
]
} What you can build
Same UK football odds API, your product logic: comparison boards, alerts, arb tools, or +EV scanners. Demos and related product pages below show the pattern.
Step-by-step bot using UK Odds API + Telegram Bot API.
Open →Ready-made /arbitrage or DIY scanner inputs for surebet messages.
Open →Compact endpoint for move detection.
Open →Build value rules on odds - your model, your thresholds.
Open →Built for alert loops
Keep delivery in your bot. Keep UK bookmaker odds in the API.
Bookmakers covered
UK bookmakers your alert rules can watch.
Pricing
Start with fixtures and odds for comparison or alerts. Pro covers production traffic; Business adds higher limits for revenue systems.
£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
Poll UK Odds API for fixtures and best odds (or arbitrage), then send messages with the Telegram Bot API when your rules fire - odds moves, value thresholds, or surebets across UK bookmakers.
No. UK Odds API is the odds feed. Your bot sends messages via Telegram’s own Bot API.
Most bots use /v1/football/events for today’s fixtures, /odds/best for compact odds, 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.
Yes. Create an account and subscribe to a plan, then explore endpoints in the Swagger playground at api.ukoddsapi.com/docs.