I would like to create an automation that tracks the price of an Amazon product as stated in the title and notifies me on Telegram when it changes. I want to monitor products on amazon.com.tr. Thank you in advance for your assistance.
Hi @ibere
a way to accomplish what you need could be:
- Have a schedule trigger that runs the workflow everyday
- Use an HTTP Request node to retrieve the HTML page of the product you want to monitor
- Use the HTML node (operation: Extract HTML Content) to extract the price of the product
- If needed, do some parsing to the price text (remove the currency, remove the decimals…), You could do that with an Edit Fields node or a Code node.
- Add the price to a Google Sheet every day (using the Google Sheets node)
- Check if the price changed in Google Sheet
- Send a Telegram message (using the Telegram node)
That should do the work, let me know if you need more support
All the best
2 Likes