I need Amazon discount bot

thevolker

Newbie
Joined
Jun 2, 2022
Messages
42
Reaction score
9
Amazon

We want to set up price tracking software by giving a category-based discount limit on the e-commerce sites of these companies and this software will give us a signal from places like whatsapp telegram via bot.

The price tracking system will work like this: for example, our category-based discount limit is 30% in the fashion category on amazon. If there is a discount above the discount we have determined in the category, the system will send us the link of the product that will send a signal to us, for example, on whatsapp. The working order can be like this or if there is a more useful system, it can be installed.

It would be better if slow and cumbersome infrastructures such as browser optimization (Selenium, Browser automation studio..) are not used. The faster the program can scan, the better.

The program will run on amazon.com.tr
 
Hi, category based products scanner is can be made, if you still need help let me know.
 
if you want speed and no selenium you basically have to use raw requests with python or golang. but amazon tr will block your ips instantly if you try to scan whole categories. keepa api is probably the easiest way to do this without headache, they already track everything. if you want to build it yourself from scratch you need a solid residential proxy pool and rotate user agents like crazy. for the alerts, telegram is way easier to code than whatsapp, just a simple webhook to a telegram bot.
 
Yes, this can be built without Selenium by using Amazon's APIs (where available), product feeds, or direct HTTP requests with parsing, which is much faster and more scalable. The system can monitor category pages, calculate discounts against your defined thresholds (e.g., 30% for Fashion), and instantly send alerts with product links via WhatsApp or Telegram bots when matching deals are found.
 
yeah keepa api is the way to go here if you dont want to spend a fortune on residential proxies. scraping amazon directly without selenium means you have to deal with TLS fingerprinting, they block standard python requests almost instantly now. if you still want to build it yourself look into curl-impersonate or golang with specialized scrapers to bypass JA3. and definitely go with telegram for alerts... whatsapp will ban your number pretty quick if you start spamming automated outbound links.
 
Yeah @Rankings Daily is right about the TLS fingerprinting, amazon will block standard python requests almost instantly now. I tried building a similar monitor for amazon.de last year and spent more time managing proxies than actually coding. If you dont want to use Keepa, your best bet is using a scraping API like Zenrows or ScraperAPI to handle the requests for you because they bypass the JA3 fingerprinting out of the box. It ends up being cheaper than buying a massive residential proxy pool yourself anyway. Also +1 for telegram, whatsapp will ban your number so fast if you start automating outbound links.
 
yeah everyone is right about the proxy headache. i ran a similar deal monitor for a local telegram channel last year and scraping amazon directly is just a money pit for proxies now.

@thevolker if you use keepa api, you dont even need to scrape category pages. they have a deals endpoint where you can query by category id and minimum discount percentage directly. it basically does all the filtering on their side and you just pull the results every few minutes. saves you coding the whole tracking logic.

definitely go with telegram for the alerts. whatsapp is a pain to keep alive for automated outbound links unless you pay for the official business api, and even then they get picky if you are redirecting to affiliate links.
 
Back
Top