Discord Football Alerts

Build Discord Football Alerts With Live Bookmaker Odds

Power a Discord bot that posts odds moves, value bets, and fixture updates straight into your server, backed by UK Odds API odds data.

Odds feed for your bot
Poll odds → check rule
→ Discord webhook

Poll fixtures and odds, then push formatted messages to your Discord webhook or bot.

Why build this

Turn odds movement into Discord messages your members actually read

Tipster communities, betting groups, and fan servers all want the same thing: odds updates that land in Discord without anyone refreshing a website. A bot that watches odds and posts when something changes keeps a server active and gives members a reason to check in. This is about the outcome, a channel full of timely, relevant odds alerts, not the plumbing behind it. You bring the bot and the community, the odds data does the rest.

Value bet channels

Post alerts when a bookmaker's odds drift above your threshold on a match result, BTTS, or over/under market. Members get a heads up the moment there's an edge worth looking at.

Odds comparison drops

Share a snapshot of odds across UK bookmakers for upcoming fixtures so your server can see who's offering the best price without leaving Discord.

Arbitrage and price gap alerts

Flag fixtures where odds gaps between bookmakers open up, useful for arb-focused servers that need to act fast. Package UO004 covers this if you want arbitrage data specifically.

Matchday and kickoff pings

Pair fixture data with odds to post pre-match summaries and reminders, giving your community context before the market moves closer to kickoff.

Odds endpoints Discord bots usually call

No /discord 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.

Example best-odds payload

Compare to last poll, then post if your rule hits.

{
  "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

Alerts you can ship to Discord

Line-move bots, surebet channels, and tipster servers on the same feed.

Built for alert loops

Poll odds. Fire Discord when rules hit.

Keep delivery in your bot. Keep UK bookmaker odds in the API.

Bookmakers covered

Bet365, William Hill, Paddy Power, Sky Bet, and more, updated across football fixtures we cover.

Pricing

Pricing for bot builders

Pick a plan based on how many fixtures and how often your bot needs to check for updates. No long contracts, upgrade as your server grows.

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

Discord football alerts - FAQ

Do you have a Discord odds API?

No Discord endpoint. UK Odds API is the odds feed. Your bot posts via Discord webhooks or the Discord bot API.

What endpoints do alert bots call?

Most bots use /v1/football/events, /odds/best, and optionally /arbitrage.

Can I reuse a Telegram bot design?

Yes. Same odds poll loop. Swap the sendMessage step for a Discord webhook POST.

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 alert bots.

Polling patterns and channel delivery.