Free GPU price alerts across 4 Canadian retailers. Because MSRP is a lie.
The Problem โข How It Works โข Screenshots โข Commands โข Quickstart โข Deploy
Just want alerts without running your own bot? Join our Discord server: GPU Deals Canada
The Canadian GPU market is broken.
| GPU | MSRP (CAD) | Actual Street Price (CAD) | Markup |
|---|---|---|---|
| RTX 5090 | $2,729 | $5,299+ | 94% |
| RTX 5080 | $1,364 | $1,759+ | 29% |
| RTX 5070 Ti | $1,022 | $1,369+ | 34% |
GDDR7 memory shortage + AI demand = prices that make your wallet cry. Founders Edition cards sell out in minutes. If you're not watching prices 24/7, you're not getting a deal.
This bot watches for you.
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ You: /alert RTX 5080 1500 โ
โ โ
โ Bot checks 4 Canadian retailers every hour: โ
โ โโโ Newegg.ca โ
โ โโโ Amazon.ca โ
โ โโโ Canada Computers โ
โ โโโ Walmart.ca โ
โ โ
โ Price drops below $1,500? โ
โ โ ๐จ @you DEAL ALERT โ RTX 5080 โ $1,459 CAD โ
โ โ Best price across all 4 retailers โ
โ โ Direct buy link included โ
โ โ Price trend data attached โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
No API keys. No paid tiers. No LLM costs. Direct retailer data from 4 Canadian stores โ the same sites you'd check manually, automated.
| Command | What It Does |
|---|---|
/alert RTX 5080 1500 |
Get pinged when the RTX 5080 drops below $1,500 CAD |
/lookup RTX 5070 TI |
Instant price check across all 4 retailers โ no alert needed |
/prices |
Market scan โ current lowest prices for 8 popular GPUs |
/check |
Force an immediate price check on all your active alerts |
/trend RTX 5090 |
Price history โ current, all-time low/high, direction |
/list |
View your active alerts (private) |
/remove RTX 5080 |
Remove an alert |
All commands support autocomplete โ start typing a GPU name and the bot suggests matches.
โโโโโโโโโโโโโโโโโโโโโโโโ
โโโโโโโโโโโโโโโโ โ Discord Bot โ
โ Discord User โโโโโโโโโโถโ (discord.py) โ
โ /alert โ โ โ
โ /check โ โ โโโโโโโโโโโโโโโโโโ โ โโโโโโโโโโโโโโโโ
โ /lookup โ โ โ Alert Engine โโโโโโโโโโโโถโ Newegg.ca โ
โโโโโโโโโโโโโโโโ โ โ โข JSON store โ โ โ โ (requests) โ
โ โ โข 1hr cron โ โ โ โโโโโโโโโโโโโโโโ
โ โ โข Deduped โ โ โ โโโโโโโโโโโโโโโโ
โ โ GPU checks โโโโโโโโผโโโโถโ Walmart.ca โ
โ โโโโโโโโโโโโโโโโโโ โ โ โ (curl_cffi) โ
โ โ โ โโโโโโโโโโโโโโโโ
โ โโโโโโโโโโโโโโโโโโ โ โ โโโโโโโโโโโโโโโโ
โ โ Price History โ โ โโโโโถโ Amazon.ca โ
โ โ โข Trend data โ โ โ โ (curl_cffi) โ
โ โ โข 500 entries โ โ โ โโโโโโโโโโโโโโโโ
โ โ per GPU โ โ โ โโโโโโโโโโโโโโโโ
โ โโโโโโโโโโโโโโโโโโ โ โโโโโถโ Canada โ
โ โ โ Computers โ
โโโโโโโโโโโโโโโโโโโโโโโโ โ (curl_cffi) โ
โโโโโโโโโโโโโโโโ
| Component | Technology | Why |
|---|---|---|
| Bot Framework | discord.py | Mature, async, slash command support |
| Newegg.ca | requests + BeautifulSoup | Server-rendered HTML, no anti-bot |
| Walmart.ca | curl_cffi + __NEXT_DATA__ JSON |
Next.js site โ JSON is embedded in page, 100% reliable |
| Amazon.ca | curl_cffi + HTML parsing | Needs TLS fingerprint spoofing to bypass bot detection |
| Canada Computers | curl_cffi + hidden AJAX endpoint | Found their internal API โ returns structured JSON |
| Storage | JSON files | Zero dependencies, trivially portable |
| Scheduling | asyncio background task | No external cron needed |
We tested every major Canadian GPU retailer. These are the ones that work reliably without paid proxies or headless browsers:
| Retailer | Method | Status |
|---|---|---|
| Newegg.ca | Plain HTTP | โ Works |
| Walmart.ca | TLS fingerprint spoofing | โ Works |
| Amazon.ca | TLS fingerprint spoofing | โ Works |
| Canada Computers | Hidden AJAX API | โ Works |
| Best Buy Canada | Cloudflare | โ Blocked |
| Memory Express | Cloudflare | โ Blocked |
Go to Discord Developer Portal โ New Application โ Bot โ enable MESSAGE CONTENT intent โ copy the bot token.
git clone https://github.com/RZ-Logic/gpu-price-alert-bot.git
cd gpu-price-alert-bot
pip install discord.py requests beautifulsoup4 curl_cffiWindows:
set DISCORD_BOT_TOKEN=your-bot-token
python gpu_discord_bot.pyMac/Linux:
export DISCORD_BOT_TOKEN=your-bot-token
python gpu_discord_bot.pyThe bot prints an invite link on startup. Click it to add to your server. Done.
npm install -g @railway/cli
railway login
railway init
railway upSet DISCORD_BOT_TOKEN as an environment variable in the Railway dashboard.
FROM python:3.12-slim
WORKDIR /app
COPY gpu_discord_bot.py .
RUN pip install discord.py requests beautifulsoup4 curl_cffi
CMD ["python", "gpu_discord_bot.py"]docker build -t gpu-bot .
docker run -d -e DISCORD_BOT_TOKEN=your-token --name gpu-bot gpu-botgit clone https://github.com/RZ-Logic/gpu-price-alert-bot.git
cd gpu-price-alert-bot
pip install discord.py requests beautifulsoup4 curl_cffi
screen -S gpu-bot
export DISCORD_BOT_TOKEN=your-token
python gpu_discord_bot.py
# Ctrl+A, D to detach| Item | Cost |
|---|---|
| Discord bot | Free |
| Retailer scraping | Free |
| Railway/local hosting | Free |
| Total | $0/month |
Compare this to HotStock Premium ($5-11/month USD), which doesn't even cover Canadian retailers properly.
- Price history charts โ visual graphs in Discord embeds
- Best Buy + Memory Express โ via headless browser when Cloudflare is bypassed
- Used market tracking โ eBay.ca, Facebook Marketplace
- Multi-currency โ USD/CAD comparison for cross-border deals
- Browser extension โ price alerts directly on retailer websites
- Webhook mode โ Telegram/email alerts alongside Discord
The codebase is a single Python file. Read it in 10 minutes, contribute in 20.
git clone https://github.com/RZ-Logic/gpu-price-alert-bot.git
cd gpu-price-alert-bot
python gpu_discord_bot.py # Test locally
# Submit PRGreat first contributions:
- Support for more retailers (direct scraping or new hidden APIs)
- French-language support for Quebec gamers
- Price comparison visualization
- Webhook integrations (Telegram, Slack, email)
MIT โ do whatever you want with it.
Built by a gamer who does no-damage boss fights when time permits and builds open-source tools that help people.
If this saved you money on a GPU, star the repo โญ



