• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer
Android Infotech

Android Infotech

Android Tips, News, Guide, Tutorials

  • AI
  • Firmware
  • Knowledge
  • News
  • Deals
  • Root
  • Tutorial
  • Applications
  • Opinion
  • Tools
  • Search
  • Account
You are here: Home / Knowledge / How to Create an Amazon USA Price Alert Telegram Bot Using n8n?

How to Create an Amazon USA Price Alert Telegram Bot Using n8n?

Updated On: July 11, 2025 by Selva Ganesh 56 Comments

Create an Amazon USA Price Alert Telegram Bot– Looking to get instant alerts when prices drop on Amazon USA? With n8n, Keepa API, and Telegram, you can build a fully automated Amazon price tracker bot in minutes, without writing a single line of backend code. This guide walks through the steps to create a Telegram bot for Amazon USA price alerts using n8n, ensuring you never miss a deal.Amazon USA Price Alert

Prerequisites: What You’ll Need

To begin building this workflow, gather the following components:

  • n8n Instance (Self-hosted or via https://n8n.io/)
  • Telegram Bot Token (from @BotFather)
  • Amazon Product ASINs or URLs
  • Keepa API Key (Free tier supports 500 requests/day)
  • Telegram Chat ID (personal or group)

Step 1: Create Your Telegram Bot

  1. Open Telegram.
  2. Search for @BotFather and start a chat.
  3. Send /newbot and follow the instructions to name your bot.
  4. Copy the Bot Token that gets generated — you’ll use this in n8n.

Step 2: Obtain Your Keepa API Key

  1. Go to Keepa.com.
  2. Create a free account.
  3. Navigate to your dashboard and retrieve your API Key.
  4. Each free account has 500 daily tokens, suitable for most use cases.

Step 3: Set Up Your Workflow in n8n

The n8n workflow will consist of five essential nodes:

  • Cron Node (Schedule)
  • HTTP Request Node (Pull data from Keepa)
  • Function Node (Parse and extract pricing data)
  • IF Node (Check if price is below threshold)
  • Telegram Node (Send alert)

⏱️ Node 1: Cron (Scheduled Trigger)

Trigger the bot to check prices every 60 minutes (adjust as needed):

Copy Code Copied Use a different Browser

{
  "baseInterval": {
    "every": 60,
    "unit": "minutes"
  }
}

Add the Cron Node to your n8n canvas and configure it accordingly.

Node 2: HTTP Request (Keepa API)

Use this node to fetch the latest price from Amazon USA:

  • Method: GET
  • URL: https://api.keepa.com/product
  • Query Parameters:
    • key: your-keepa-api-key
    • domain: 1 (Amazon USA)
    • asin: B07FZ8S74R (Replace with dynamic ASIN from list or spreadsheet)

Set Response Format to JSON.

Node 3: Function Node – Extract and Convert Price

Add a Function Node with the following code to parse the price from the Keepa response:

Copy Code Copied Use a different Browser

const data = items[0].json.products[0];
const priceHistory = data.csv[0]; // Amazon price history
const latestPriceCents = priceHistory[priceHistory.length - 1];
const latestPrice = latestPriceCents / 100;

return [{
  json: {
    asin: data.asin,
    title: data.title,
    price: latestPrice
  }
}];

This will extract the ASIN, title, and latest price in dollars.

⚖️ Node 4: IF Node – Price Threshold Check

Add an IF Node to compare the product price with your desired price. Example condition:

  • If price < 200
  • → Send alert

This ensures alerts are only triggered for meaningful drops.

Node 5: Telegram Node – Send Price Alert

Configure the Telegram Node with:

  • Bot Token: Paste from @BotFather
  • Chat ID: Your personal or group chat ID
  • Message Template:
Copy Code Copied Use a different Browser

 Price Drop Alert!
Product: {{$json["title"]}}
ASIN: {{$json["asin"]}}
Current Price: ${{$json["price"]}}
Buy Now: https://www.amazon.com/dp/{{$json["asin"]}}

Your bot is now ready to notify you instantly of price drops on any Amazon USA product.

️ Tracking Multiple ASINs: Spreadsheet or Static Set

To monitor multiple Amazon products, use either:

  • Spreadsheet Node: Connect to a Google Sheet with ASINs
  • Set Node: Manually input a list of ASINs

Loop through each ASIN using a SplitInBatches Node, and feed them into the HTTP request → Function → IF → Telegram chain.

Download the single .json file for the entire workflow for n8n import

✅ Next Steps:
Import this workflow into your n8n instance.

Update these fields:

  • YOUR_KEEPA_API_KEY
  • YOUR_TARGET_PRICE
  • YOUR_TELEGRAM_BOT_TOKEN
  • YOUR_TELEGRAM_CHAT_ID

amazon-price-alert.json

Expert Tips for Efficiency and Optimization

  • Avoid Duplicate Alerts: Store the last alerted price in n8n Data Stores or an external database.
  • Throttle Requests: To stay under Keepa’s free tier limits, run the workflow every 6–12 hours.
  • Use Set Nodes for Quick Testing: When debugging, a Set Node is ideal for simulated data.
  • Add Image Previews: Enhance Telegram messages by scraping or embedding product images from Amazon if needed.
  • Expand to Other Amazon Regions: Keepa supports multiple domains (Amazon UK, CA, DE, etc.) by changing the domain parameter.

️ Secure Your Workflow

  • Encrypt API Keys: Use n8n’s credential storage.
  • Limit Telegram Access: Use private chat IDs or restrict your bot in groups.
  • Set Rate Limits: Add safeguards to prevent spamming yourself with frequent alerts.

Bonus: Deploy to Production

Once tested:

  1. Deploy the workflow on your production n8n instance
  2. Use Webhook triggers for on-demand price checks
  3. Scale with queues or parallelization for high-volume tracking
  4. Monitor uptime with n8n’s built-in logs or external monitoring tools

Wrap Up

With the combination of n8n, Keepa API, and Telegram, you have a powerful, cost-effective, and customizable tool to monitor Amazon prices in real-time: no expensive SaaS, no bloated apps — just a simple, efficient automation.

Set it once, and your bot will tirelessly watch Amazon for the best deals and send you real-time alerts the moment prices drop.

Ask Follow-up Question from this topic With Google Gemini: How to Create an Amazon USA Price Alert Telegram Bot Using n8n?



174884903535965
Selva Ganesh

Selva Ganesh is a Computer Science Engineer, Android Developer, and Tech Enthusiast. As the Chief Editor of this blog, he brings over 10 years of experience in Android development and professional blogging. He has completed multiple courses under the Google News Initiative, enhancing his expertise in digital journalism and content accuracy. Selva also manages Android Infotech, a globally recognized platform known for its practical, solution-focused articles that help users resolve Android-related issues.

Share This Post:

Related Posts

  • Google Flights Search Price Drop Alert Extended for 3-6 Months
  • You have to Spend $150 to get Free Delivery on Amazon Fresh
  • $35 is the New Minimum Order for Amazon Free Shipping

Filed Under: Knowledge Tagged With: Amazon Price Alert, Telegram Bot

Reader Interactions

Comments

  1. Kevin Wood says

    July 19, 2025 at 1:07 pm

    Setting up this Amazon price alert bot took no time at all. Works flawlessly so far.

    Reply
  2. Megan King says

    July 19, 2025 at 12:58 pm

    A smart solution to keep an eye on Amazon deals automatically. This Telegram bot is very reliable.

    Reply
  3. Patricia Rivera says

    July 19, 2025 at 7:52 am

    I appreciate the simplicity of this setup. The Telegram bot notifies me of discounts I would’ve otherwise missed.

    Reply
  4. Angela Simmons says

    July 19, 2025 at 2:46 am

    Such an efficient workflow for getting price decrease alerts. I now rely on this bot for all my Amazon purchases.

    Reply
  5. Jonathan Ross says

    July 19, 2025 at 12:19 am

    This tool lets me act quickly on Amazon sales. I’ve recommended it to my family and friends already.

    Reply
  6. Justin Russell says

    July 18, 2025 at 5:39 pm

    Very cool use of n8n and Keepa API. The real-time alerts make it stand out from other trackers.

    Reply
  7. Christopher Allen says

    July 18, 2025 at 4:06 pm

    Reliable bot for tracking Amazon USA prices. Setup only took me about 10 minutes!

    Reply
  8. Stephanie Hall says

    July 18, 2025 at 11:53 am

    The combination of n8n, Keepa API, and Telegram is brilliant for price tracking. Smooth setup process.

    Reply
  9. Christian Bell says

    July 18, 2025 at 9:53 am

    I like the step-by-step instructions for using n8n. Quick setup and flawless integration.

    Reply
  10. Zachary Cooper says

    July 18, 2025 at 7:28 am

    Telegram is my favorite way to receive alerts. Now I’ll never miss my favorite Amazon deals.

    Reply
  11. Victoria Morgan says

    July 17, 2025 at 7:41 pm

    Easy to install and works perfectly out of the box. I really appreciate the prompt alerts through Telegram.

    Reply
  12. John Lee says

    July 17, 2025 at 2:22 pm

    The Keepa API integration is the backbone of this efficient bot. It really makes price tracking seamless.

    Reply
  13. Heather Adams says

    July 17, 2025 at 1:56 pm

    This solution is perfect for bargain hunters. The Telegram integration makes the alerts impossible to miss.

    Reply
  14. Nicole Sanchez says

    July 17, 2025 at 8:55 am

    The guide covers every detail needed to get this price alert bot running. Such a helpful tool for serious shoppers.

    Reply
  15. Benjamin Foster says

    July 17, 2025 at 5:26 am

    Simple, practical, and very useful tool. Thank you for making Amazon price tracking so easy!

    Reply
  16. Rachel White says

    July 16, 2025 at 11:29 pm

    Love receiving instant notifications about Amazon prices. The Telegram setup makes it so convenient.

    Reply
  17. Emma Phillips says

    July 16, 2025 at 9:19 pm

    I am amazed at how consistent the price updates are. Telegram bot setup couldn’t have been easier.

    Reply
  18. William Young says

    July 16, 2025 at 8:08 pm

    Huge thanks for this awesome bot guide! Now I get notified instantly for all Amazon price drops.

    Reply
  19. James Martinez says

    July 16, 2025 at 6:49 pm

    Highly satisfied with the performance of this price alert bot. It updates me instantly when prices drop on Amazon.

    Reply
  20. Jessica Johnson says

    July 16, 2025 at 5:10 pm

    Building this Telegram price alert bot with n8n was simpler than I expected. It saves me a lot of time hunting for deals.

    Reply
  21. Joshua Lewis says

    July 16, 2025 at 3:49 am

    This guide is perfect for beginners and experts alike. Easily set up and customize your own price tracker.

    Reply
  22. Michael Smith says

    July 15, 2025 at 10:04 pm

    This bot is a game changer for monitoring Amazon price drops. Highly recommend it to anyone looking for automated alerts.

    Reply
  23. Elizabeth Nelson says

    July 15, 2025 at 7:34 pm

    My favorite feature is the instant Telegram notification. This saved me money already!

    Reply
  24. Ryan Wright says

    July 15, 2025 at 1:03 pm

    This is exactly what I needed to keep track of Amazon sales. Simple and effective bot creation.

    Reply
  25. Olivia Gomez says

    July 15, 2025 at 8:31 am

    Ended up saving a lot with these price alerts. Love how quick and reliable this Telegram bot is.

    Reply
  26. Melissa Robinson says

    July 15, 2025 at 5:22 am

    I found this bot to be incredibly helpful in saving money. Instant alerts on price drops make a big difference.

    Reply
  27. Ethan Edwards says

    July 14, 2025 at 11:11 pm

    Got my first alert for a product I wanted just yesterday! Setup took less than 15 minutes.

    Reply
  28. Jason Torres says

    July 14, 2025 at 9:40 pm

    Thanks for delivering such a simple yet effective tool. I’ve already caught a few deals using this Telegram bot.

    Reply
  29. Steven Evans says

    July 14, 2025 at 5:38 pm

    It’s impressive how seamless the alert process is using Telegram. I appreciate the minimal setup that’s needed.

    Reply
  30. Eric Gonzalez says

    July 14, 2025 at 12:41 pm

    Keepa API and n8n are a fantastic combo here. My Amazon shopping experience has never been better.

    Reply
  31. Karen Walker says

    July 14, 2025 at 10:14 am

    Fantastic tool for anyone who wants real-time Amazon price alerts. I appreciate the detailed walkthrough.

    Reply
  32. Lauren Stewart says

    July 13, 2025 at 9:12 pm

    If you want to automate finding deals, this is the guide! Quick to deploy and easy to monitor.

    Reply
  33. Alexander Perez says

    July 13, 2025 at 8:16 pm

    Can’t believe how easy it was to set this up with n8n. Now I never miss out on price drops.

    Reply
  34. Andrew Young says

    July 13, 2025 at 6:46 pm

    Thanks to this tutorial, I no longer waste time checking prices manually. Love the automation.

    Reply
  35. Rebecca Parker says

    July 13, 2025 at 3:53 pm

    The instructions are well-explained and straightforward. I love getting price alerts directly to Telegram.

    Reply
  36. Matthew Harris says

    July 13, 2025 at 8:28 am

    A must-have Telegram bot for all Amazon shoppers. It has simplified my shopping experience greatly.

    Reply
  37. David Williams says

    July 13, 2025 at 7:31 am

    I love how you don’t need to write backend code for this bot. The integration with Keepa API is smooth and reliable.

    Reply
  38. Jacob Carter says

    July 13, 2025 at 5:21 am

    If you shop on Amazon frequently, this bot is a must-have. Makes tracking deals effortless.

    Reply
  39. Sarah Rodriguez says

    July 13, 2025 at 3:38 am

    This tutorial helped me create a fully automated bot without any backend development skills. Very useful resource.

    Reply
  40. Brittany Murphy says

    July 12, 2025 at 11:47 pm

    My notifications are always timely since installing this bot. Absolutely recommend this solution for deal seekers!

    Reply
  41. Lauren Scott says

    July 12, 2025 at 10:09 pm

    The relay of price alerts through Telegram is fast and accurate. This bot works excellently.

    Reply
  42. Emily Garcia says

    July 12, 2025 at 7:13 pm

    Great tutorial on building a Telegram bot for price tracking. The automation through n8n is impressive.

    Reply
  43. Brian Nelson says

    July 12, 2025 at 4:37 pm

    Never thought it could be this easy to track Amazon price changes. The instructions were straightforward and actionable.

    Reply
  44. Ashley Brown says

    July 12, 2025 at 3:21 pm

    The guide is very clear and easy to follow. I was able to set up my own price alert bot within minutes.

    Reply
  45. Natalie Cook says

    July 12, 2025 at 2:16 pm

    Wouldn’t shop Amazon without these alerts now. Love the automation and instant notifications.

    Reply
  46. Samantha Mitchell says

    July 12, 2025 at 1:44 pm

    Telegram alerts keep me updated on all my watched items. Setup with n8n was surprisingly easy.

    Reply
  47. Amanda Clark says

    July 12, 2025 at 11:17 am

    Effortlessly track prices on Amazon USA with this bot. The Telegram alert system is very responsive.

    Reply
  48. Grace Peterson says

    July 12, 2025 at 7:42 am

    The screenshots in your guide made the process very clear. Thank you for such a helpful resource!

    Reply
  49. Brandon Bennett says

    July 12, 2025 at 6:24 am

    These price drop notifications are a lifesaver. Great project for anyone interested in automation.

    Reply
  50. Dylan Reed says

    July 12, 2025 at 4:40 am

    Exactly what I needed for keeping track of electronics prices. The workflow is easy to replicate for other sites too.

    Reply
  51. Anthony Ramirez says

    July 12, 2025 at 2:47 am

    I appreciate the clarity and depth in this bot tutorial. Price alerts work like a charm every time.

    Reply
  52. Joseph Allen says

    July 11, 2025 at 9:40 pm

    Very impressed with how efficiently this bot notifies users about Amazon price changes. Highly recommended.

    Reply
  53. Michelle Barnes says

    July 11, 2025 at 6:10 pm

    Just saved $15 because of an alert from this bot. I recommend everyone to try this out.

    Reply
  54. Daniel Jones says

    July 11, 2025 at 5:07 pm

    Never miss a deal again thanks to this Amazon price alert bot. It’s efficient and user-friendly for everyone.

    Reply
  55. Linda Bailey says

    July 11, 2025 at 9:44 am

    Way easier than writing my own scripts. The n8n and Keepa API method is brilliant!

    Reply
  56. Alexis Kim says

    July 11, 2025 at 2:30 am

    Saves me so much trouble checking Amazon prices daily. I’m really grateful for this guide.

    Reply
You must be logged in to comment.
Login with Google

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Primary Sidebar

Join With Us

Advertisement

Recent Comments

  • Matthew Johnson on How to View Latest Reels in Instagram?
  • Elijah Walker on How to View Latest Reels in Instagram?
  • Abigail Robinson on How to View Latest Reels in Instagram?
  • Elizabeth Johnson on How to View Latest Reels in Instagram?
  • Mason Rodriguez on How to View Latest Reels in Instagram?

Today Trending News ⚡

Samsung users mock Apple iPhone 17

Samsung Users Mocking Apple iPhone 17 Aluminium Trend

Samsung Users Mocking Apple iPhone 17- In a surprising yet amusing … [Read More...] about Samsung Users Mocking Apple iPhone 17 Aluminium Trend

Footer

Copyright © 2010-2025. AndroidInfotech.com, All Rights Reserved. Iris Media MSME. Android Infotech is a Registered Enterprise under UDYAM-TN-21-0012548. Android is a trademark of Google Inc. All contents on this blog are copyright protected and should not be reproduced without permission.

  • Subscribe
  • Sitemap
  • About Us
  • Contact Us
  • Privacy Policy
  • Disclaimer
  • Our Image License
  • Hosted on Google Cloud
  • Ad Partner Ezoic
  • Corporate Office
  • Careers