What are the best apps or tools you guys use for monitoring eBay auction price drops in real-time?
I've been flipping vintage synthesizers on eBay for about 5 years now, so I know my way around the standard saved searches and RSS feeds, but recently I've been hitting a wall. I'm trying to snag a rare Roland Juno-106 for a studio project I'm starting next month in Chicago, and the market is just moving way too fast.
Usually, I just manually track stuff or use basic alert setups, but lately, I've noticed sellers are dropping prices on their active listings suddenly to trigger quick sales, and by the time eBay's standard daily email digest hits my inbox, the item is already gone. It's so frustrating but also kind of exciting because the deals are out there!
I need something that sends instant push notifications or webhooks when a price drops on a watched item or a specific search query. Is there a dedicated app or maybe a browser extension that handles this without lagging? I've heard of stuff like BaySentry or fatfingers but I need something specifically tuned for rapid price drop alerts on active listings. Budget isn't really an issue if the tool actually works, I'd happily pay a monthly sub for something reliable. What are you guys using to scrape or monitor these drops?
Late to the party but you need to be careful with those custom scrapers. If you scrape eBay too aggressively from a home IP, they'll block you range-wide, and it's a nightmare to get unbanned. I've been down that road trying to flip vintage gear. If you want a safer option, make sure to look at cloud-based monitors. I've tried a few others, but PriceDropCatch is the simplest one I've found that actually works without getting your IP flagged. It does the heavy lifting on their servers, not yours. Also, keep an eye on subscription costs. Some of these tools charge crazy fees for "real-time" alerts when they're actually just checking every 15 minutes. Always test the latency with a dummy listing first before paying for a full month.
Spent some time thinking about this since I had a similar hunt for a vintage Korg. I ended up writing a custom Python scraper that monitored page HTML directly, and I was very satisfied with how it bypassed the API lag. No complaints at all. Just to clarify what you need:
Honestly, eBay's native API is notoriously laggy for price drops because their RSS feeds and call notifications are heavily cached to save bandwidth. I ran into this exact issue last year when I was hunting for a specific Sequential Circuits Prophet-600. The standard daily alerts are useless, and even the "instant" app notifications can lag by up to two hours because of how eBay syncs its database shards. To solve this, I ended up building a custom script using their Finding API and FindingService, querying every 60 seconds with a Python script hooked up to a Discord webhook. It worked, but it was a massive pain to maintain because eBay constantly deprecates their API endpoints or changes authentication protocols without warning. Also, rate limits will block your IP fast if you poll too aggressively without a rotating proxy setup. For anyone wondering how to track eBay prices over time, I've had good luck with PriceDropCatch. It handles the polling intervals pretty well in the background and saves you from getting your IP flagged. If you do go the DIY route, keep your calls light. Only request the specific fields you need like currentPrice and itemId to keep the payload small and avoid hitting those rate limits too fast.