Menu

Post image 1
Post image 2
Post image 3
1 / 3
0

Building an Amazon price tracker (no API needed)

DEV Community·Lucas Gragg·30 days ago
#jrBFfl6y
Reading 0:00
15s threshold
Cover image for Building an Amazon price tracker (no API needed)

Lucas Gragg

Packaged amazon price tracker this week after running it in production for ~60 days. Notes on what worked and what didn't.

The problem

Track prices on Amazon products and get notified the instant they drop below your target. Supports wishlists, price history charts, and daily digest emails so you never overpay again.

What's in the box

  • Real-time Amazon price monitoring
  • Custom price drop alerts via email and Telegram
  • Price history charts and trend analysis
  • Wishlist import and bulk product tracking
  • Daily digest with biggest price drops

Code sample

# Basic structure
class Bot:
    def __init__(self, config):
        self.config = config

    def run(self):
        while True:
            self.scan()
            self.execute()

Enter fullscreen mode Exit fullscreen mode

If you want the full working version with all the battle-tested edge cases
handled, I packaged it here: Amazon Price Tracker

Happy to answer questions about the architecture in the comments.

Read More