Notifications · 11 min read

How to get notified when you make a sale on Amazon: every method, ranked by speed

By The Agent ChaChing team at 52commercePublished

Amazon does not tell you about every sale. Seller Central shows a new order when you refresh, email covers the orders you ship yourself plus a two-hourly summary of shipped FBA orders, and the Seller app only pushes FBM orders. If you want to know how to get notified when you make a sale on Amazon, FBA included, you need something that reads Amazon's Selling Partner API for you: your own script, or an alert app such as ours.

Illustration of a smartphone with a notification card, a laptop with a dashboard, an envelope and a small bell, showing how to get notified when you make a sale on Amazon

In short

  • Seller Central is complete and reliable, but only when you look.
  • Email and SMS cover orders you ship yourself; FBA orders only reach you as a summary of shipped orders every two hours.
  • The Amazon Seller app pushes FBM orders, batched and at a time Amazon chooses; it sends nothing for FBA orders.
  • Order reports and the Selling Partner API see everything, but they are built for systems, not for a phone.
  • Alert apps, ours included, turn the API into a push with a sound, usually within a few minutes of the order.
Contents
  1. Why Amazon does not tell you about every sale
  2. The built-in options: Seller Central, email, SMS and the Seller app
  3. Seller Central, Manage Orders
  4. Email notifications from Seller Central
  5. SMS and the Amazon Seller app
  6. The complete options: order reports and the Selling Partner API
  7. Order reports
  8. The Selling Partner API, if you build it yourself
  9. Alert apps: the API turned into a push with a sound
  10. Where Agent ChaChing fits
  11. Comparison table: every Amazon sales notification by speed, coverage, sound and cost
  12. Which method fits which seller
  13. Frequently asked questions
  14. Does the Amazon Seller app notify you when you make a sale?
  15. Can I get an email every time an FBA item sells?
  16. Why does a sale alert take minutes instead of seconds?
  17. Is it safe to connect an alert app to my seller account?
  18. I am a shopper. How do I get notified when an item goes on sale?
  19. Sources

Why Amazon does not tell you about every sale

Amazon's tools are built around action, not around the moment of the sale. A new FBM order needs you to ship it, so it is worth an email or a push. An FBA order needs nothing from you, so Amazon stays quiet. An Amazon employee, Dominic_Amazon, put it plainly on the EU Seller Forum: "There are no SMS push notifications for FBA, only for FBM. You can get an email every 2 hours summarizing recent FBA orders shipped, but no email as FBA orders are made."

Sellers have asked for more for years. The US Seller Forum thread "How do I get an alert when one of my products sells?" has around 2,900 views and 53 replies, and in the thread "Why no CHA CHING! Notification on FBA sales" an Amazon employee answered: "I will pass this suggestion along internally." We have sold on Amazon since 2021 and still do not get that notification from Amazon itself. What exists instead is the list below, from the slowest option to the fastest.

The built-in options: Seller Central, email, SMS and the Seller app

These four cost nothing extra and need no third party. They are also the slowest or the least complete, so we start here.

Illustration of a stopwatch next to a smartphone with a notification card, timing how to get notified when you make a sale on Amazon

Seller Central, Manage Orders

Every order, FBA and FBM, on every marketplace of your account appears under Orders, Manage Orders. Most orders start as Pending, which Amazon defines as "The order has been placed but payment has not been authorized." While an order is Pending, Amazon's own Orders API returns no pricing for it, so you see the order before you see the amount. What Pending means and how long it takes has the details. Delay: none, but only if you happen to be looking.

Email notifications from Seller Central

Under Settings, Notification Preferences, Seller Central can email you about orders: one email per order you ship yourself, and for FBA only the two-hourly summary of shipped orders that Dominic_Amazon describes above. The FBA order lands, sits in Pending for a while, ships, and then appears in the next summary. That is a record, not an alert. Every notification Seller Central can send is still worth setting up, for returns, claims and account health.

SMS and the Amazon Seller app

Both cover FBM orders and nothing for FBA. The push in the Seller app is also not one alert per order at the moment of the sale. A seller on the EU forum described it well: "It decides when it'll tell you, not when there is a sale made and it may decide to tell you multiple sales at the same time." On Android the app uses two notification channels, "Amazon Seller" and "Amazon Seller Order", so you can give orders their own tone in the system settings; on iOS you get the system sound. What the Seller app does and does not notify has its own article.

The complete options: order reports and the Selling Partner API

Both see every order on your account, FBA and FBM, on every marketplace. Neither is built to reach your phone.

Order reports

Seller Central and the Reports API give you files of all orders, sorted by last update. Reports are generated on request and lag behind: right for bookkeeping and for checking that nothing was missed, wrong for an alert. We use them for exactly that, a nightly comparison of what we alerted against Amazon's order report. The report documentation also holds the most useful timing fact about new orders: "the fulfillable date of an order is usually 30 minutes after the order has been created".

The Selling Partner API, if you build it yourself

Amazon's Selling Partner API offers two ways to learn about an order. The ORDER_CHANGE notification pushes a message to a queue you own whenever an order changes status, for both fulfilment types (the payload has a FulfillmentType field, "MFN or AFN"), and needs the role Inventory and Order Tracking. On speed, Amazon says: "Delay of notification is usually trivial (in seconds), however, on prime day or other selling event, the delay can be up to 2 minutes." The second way is polling the Orders API at a fixed interval, and Amazon recommends having it: "As a best practice, we recommend that you have a means to retrieve needed information in the event of an unexpected outage or delay in notification delivery."

The catch, which we only found by measuring on our own account: for FBA orders Amazon sends no ORDER_CHANGE while the order is Pending. The first push arrives at a later status, and our orders stayed Pending for hours. So the push alone does not give you the moment of the sale for FBA; polling does.

Building it yourself costs nothing on Amazon's side, but you register as a developer, request a role, accept the Data Protection Policy, keep a server running around the clock and pass Amazon's yearly security review. We did all of that, which is how our app exists. For one seller who wants a sound on a phone, it is a lot of plumbing.

Alert apps: the API turned into a push with a sound

An alert app does that plumbing for you. It connects to your account through Amazon's own authorisation page, reads orders through the API and sends a push with a sound to your phone. Most apps in this category are small, and most are iOS only. Before you connect one, check five things:

  • Which roles does it ask for on Amazon's consent page? One read-only role, Inventory and Order Tracking, is enough for a sales alert.
  • Does it alert FBA orders at the moment of the sale, or only once Amazon pushes a later status?
  • Does it show you how it performs: how long each alert took and whether it missed anything?
  • Does it store buyer data? An alert needs none of it.
  • Can you revoke access yourself? In Seller Central that is under Apps and Services, Manage Your Apps.

How to connect an app to Seller Central safely walks through each point.

Where Agent ChaChing fits

Our app is one of the options in this category and works the way the previous section describes. It checks your orders every minute, adds Amazon's own push for the confirmation and the final amount, and compares everything with Amazon's order report at night. The alert usually arrives two to three minutes after the order is placed, often faster, for FBA and FBM, on every marketplace you connect: all European marketplaces including the UK and all North American marketplaces at launch. Every alert shows how long it was on its way, and the app keeps a daily counter and a count of missed orders, with zero as the goal. It needs one read-only role, stores no buyer data, runs on iOS and Android, and costs €4.99 a month or €39.99 a year after 14 free days.

Comparison table: every Amazon sales notification by speed, coverage, sound and cost

Cost means what you pay on top of your Amazon selling plan; delay means the time between the order and the moment you can know about it.

MethodCovers FBACovers FBMTypical delaySoundCost
Seller Central, Manage OrdersYesYesNone, but only when you refreshNoNone
Email for orders you ship yourselfNoYesMinutes to hours, at Amazon's timingYour mail app's toneNone
Two-hourly FBA email summaryShipped orders onlyNoUp to two hours after shipping, so hours after the saleYour mail app's toneNone
SMS and Seller app pushNoYesBatched, at Amazon's timingSystem tone, own channel on AndroidNone
Order reportsYesYesOn request, not real timeNoNone
Selling Partner API, self-builtYes, but the push only fires after Pending; polling catches the saleYesSeconds for the push, up to 2 minutes on peak days; polling adds its intervalWhatever you buildYour development time and a server
Third-party alert appsVariesVariesVaries; prefer apps that show itUsuallyMostly a subscription
Agent ChaChingYesYesUsually two to three minutes, often faster; measured, not guaranteedYes, one cash register sound14 days free, then €4.99 a month or €39.99 a year

What we measured

On 28 August 2026 we ran our alert system on our own seller account for a full day. Fourteen orders came in, none were missed, and the median time from order to the sound on the phone was 200 seconds with polling every minute; two evening orders took 155 and 136 seconds. Amazon sent no ORDER_CHANGE push for any FBA order while it was Pending. New Pending orders also appeared in the Orders API sometimes only 10 to 15 minutes after the order, which is why our poller looks 30 minutes back on every run.

Which method fits which seller

  • You ship everything yourself: the Seller app plus the order email covers you, with the caveat that alerts arrive at Amazon's timing, not per sale. Give the Android order channel its own tone. FBA versus FBM covers the other differences.
  • You sell FBA and check Seller Central several times a day: you are the person alert apps were built for. Amazon itself gives you a two-hourly email of shipped orders and nothing else.
  • You do more than a few dozen orders a day: single alerts stop being useful. Look for bundling, the first order at once and the rest as a group, plus a daily counter, especially on peak days when Amazon's own notifications can be delayed. How fast an Amazon order alert can be explains the limits.
  • You have a developer: the API is the complete answer, as long as you poll for Pending orders and reconcile at night.

Frequently asked questions

Does the Amazon Seller app notify you when you make a sale?

Only for orders you ship yourself, and not at the moment of the sale: Amazon decides when to send the push and may group several orders in one. For FBA orders the app sends nothing. Amazon staff confirmed on the Seller Forum that there are no push or SMS alerts for FBA, only a two-hourly email summary of shipped orders.

Can I get an email every time an FBA item sells?

No. Seller Central sends a per-order email only for orders you ship yourself. For FBA the only email is the summary of recently shipped FBA orders, sent every two hours, so it arrives after shipping, not after the sale.

Why does a sale alert take minutes instead of seconds?

Amazon's push is fast, usually seconds and up to two minutes on peak days, but for FBA orders it does not fire while the order is Pending. Apps therefore poll the Orders API, where new Pending orders sometimes appear only 10 to 15 minutes after the order. On our own account the median from order to phone was 200 seconds with one-minute polling.

Is it safe to connect an alert app to my seller account?

You never hand over your password: you log in on Amazon's own page, see the roles the app requests and confirm. A sales alert needs only the read-only role Inventory and Order Tracking and no buyer data. You can revoke access at any time in Seller Central under Apps and Services, Manage Your Apps.

I am a shopper. How do I get notified when an item goes on sale?

This guide is for sellers, so the short answer is that deal and price alerts for shoppers live in the Amazon shopping app and in Amazon's customer help, not in Seller Central. Nothing on this page applies to buying.

Sources

  1. https://sellercentral-europe.amazon.com/seller-forums/discussions/t/f5866f24-e25d-4ef7-b86d-89c18a61cf54
  2. https://sellercentral-europe.amazon.com/seller-forums/discussions/t/5e5a75f36bedab53e6e9174010bde207
  3. https://sellercentral.amazon.com/seller-forums/discussions/t/d65eb6d56bab6bc8d489faa5ad27ae61
  4. https://sellercentral.amazon.com/seller-forums/discussions/t/60268145-fd06-4b9e-87b3-625457fb1202
  5. https://developer-docs.amazon.com/sp-api/docs/orders-api-v0-reference
  6. https://developer-docs.amazon.com/sp-api/docs/report-type-values-order
  7. https://developer-docs.amazon.com/sp-api/docs/notifications-api
  8. https://github.com/amzn/selling-partner-api-samples/discussions/104
  9. https://developer-docs.amazon.com/sp-api/docs/role-mappings-for-types
  10. https://developer-docs.amazon.com/sp-api/docs/roles-in-the-selling-partner-api
  11. https://developer-docs.amazon.com/sp-api/docs/data-protection-policy

Read also