All posts
GuideJul 8, 2026 · 8 min

How to Actually Get Notified of New App Store Reviews

Apple barely tells you when someone reviews your app. Here's every real way to get App Store review notifications — the native toggle, the RSS hack, the API, and alerts that ping you instantly.

RA

The Argus Team

Reply Argus

Apple doesn't reliably tell you when someone reviews your app. There's no email for it, and the one native alert is a push notification tucked inside the App Store Connect iOS app that you have to switch on yourself — and even then, plenty of developers report it firing late or not at all. If you're waiting for the store to tap you on the shoulder every time a review lands, you're going to miss reviews.

So the honest answer to "how do I get notified of new App Store reviews" is: you have to build the notification yourself, or use something that already did. There are four real routes — the App Store Connect app toggle, the public RSS reviews feed, the App Store Connect API, and a monitoring tool that polls for you and pushes an alert. Here's exactly how each one works, where it falls short, and why so many teams still miss reviews.

Does App Store Connect notify you of new reviews?

Only if you go find the setting and turn it on, and only as a push notification. Open the App Store Connect app on iPhone or iPad, go into its notification settings, and enable the Ratings and Reviews (or "new reviews") alerts. Do that, and Apple will push a device notification when new reviews come in for the apps you have access to.

That's the whole native story on Apple's side. There's no per-review email baked into App Store Connect the way you might expect, no Slack integration, no webhook. If you don't own an iPhone signed into that account, or notifications are muted, or you're a team of five and only one person has the app installed, the review lands silently. This is the gap the rest of this guide fills.

Ratings without text never trigger anything

A huge share of App Store feedback is a star tap with no written review. Those change your rating but produce no review object at all — so no notification, no RSS entry, nothing to reply to. A rating can slide from 4.6 to 4.4 over a weekend and the only place you'll see it is the rating number itself. Watching the trend, not just the review feed, matters.

Does Google Play handle this any better?

Slightly, yes. Google Play Console lets you enable email notifications for new reviews in your account's email preferences, so at least there's a native email path Apple doesn't offer. It's still opt-in and still tied to one console account's settings, but it exists.

The bigger difference is what you can do after the notification: Google Play replies are capped at a hard 350 characters, while Apple publishes no official reply length (community testing suggests a few thousand). The two stores also differ on where replies show and how they're indexed, which we break down in [App Store vs Google Play review replies](/blog/app-store-vs-google-play-review-replies). For notifications specifically, treat both stores the same way — assume the native alerts are unreliable and build a real feed on top.

The RSS feed hack: Apple's hidden reviews endpoint

Apple quietly publishes a public RSS feed of customer reviews for every app. No auth, no key — just a URL with your app's numeric ID and a country storefront. This is the classic hack teams have used for years to build their own review alerts.

It looks like this:

http
https://itunes.apple.com/us/rss/customerreviews/id=284882215/sortBy=mostRecent/json
Swap the country code (us) and the numeric app id. Returns the most recent written reviews for that one storefront, newest first. Use /xml instead of /json if you prefer.

Poll that URL on a schedule, diff it against what you saw last time, and fire your own alert when a new review shows up. It's free and it works. But it comes with sharp edges, and knowing them up front saves a lot of confusion:

  • One storefront per request — the feed is per country. If you're live in 40 markets, you poll 40 URLs. Skip a storefront and you're blind to reviews there.
  • Only the most recent, only with text — it returns a page of recent written reviews, not your full history, and never surfaces ratings-only feedback (the star-with-no-words kind).
  • It lags — Apple caches the feed, so a review can take hours to appear. It's a near-real-time feed, not an instant one.
  • It quietly breaks — the endpoint is undocumented and unversioned. When a storefront returns empty or the shape shifts, nobody emails you about it. Your "alerts" just go silent.

The App Store Connect API: the sturdier route

If you want something more reliable than RSS, Apple's official App Store Connect API exposes a customer reviews endpoint. You authenticate with a signed JWT built from an API key you generate in App Store Connect, then request reviews per app. It returns richer data than RSS and it's a supported, documented API rather than a scraping trick.

The tradeoff is engineering time. You're minting and rotating keys, signing tokens, handling pagination and rate limits, storing what you've already seen, and mapping storefronts. It's a genuine little service to build and babysit — worth it for a big team, overkill for a solo developer who just wants a ping when a one-star lands.

The shortcut: let something poll both stores for you

Building and maintaining the RSS pollers and the API integration is real work, and it only covers Apple. [ReplyArgus](/features) watches your Apple App Store and Google Play reviews in one inbox and pushes an alert the moment a new review — or a rating drop — lands, to Slack, Discord, Telegram, a webhook, or email. It also drafts an on-brand reply for each one, so the notification and the response arrive together. See the channels on the [integrations page](/integrations).

Why teams miss reviews even with notifications on

Getting notified is only half the problem. The other half is that the notification lands somewhere nobody's looking, or lands with no next step attached. In practice, reviews slip through for boringly consistent reasons:

  • Alerts default to off — the one person who enabled the App Store Connect app left, and nobody re-enabled it.
  • Single-storefront blindness — the alert covers your home country, so reviews in Japan, Brazil, and Germany pile up unseen.
  • No routing — a review notification hits one inbox, not the support channel where the team can actually act on it.
  • The busy-week lapse — during a launch or a crunch, the review tab is the first thing to go unwatched, which is exactly when the angry ones arrive.
  • No draft attached — being notified isn't replying. A raw alert still leaves you staring at a blank box, in a language you might not speak.

That last point is the one that quietly costs you. Speed is a measured factor in whether a reply wins the reviewer back — Srisopha et al. (EASE 2021) found timeliness among the top predictors of a successful developer response, ahead of politeness. And responding at all moves the number: Google shared at I/O 2019 that apps see roughly a +0.7-star average lift when developers reply, and since ratings went recency-weighted that same year, a fast reply that flips a fresh one-star counts for more than an old rating ever will. Catching the review is step one; catching it in time is the point. We go deeper on that clock in [review velocity](/blog/review-velocity).

Latest update crashes on launch every single time on my Pixel. Was fine yesterday. Unusable now.

Reply

A launch crash right after an update is the worst kind, and we're sorry it cost you the app today. We tracked this to a bad build on some Pixel devices and pushed 5.3.1 an hour ago with the fix. Update when you can and it should open clean — if it doesn't, reply here and we'll jump on your device details right away.

That reply works because it went out fast, while the reviewer was still annoyed enough to check back. Catch the one-star an hour after it posts and you can often turn it around; catch it a week later and they've uninstalled. If you want the playbook for the worst reviews, we cover it in [how to respond to negative app reviews](/blog/how-to-respond-to-negative-app-reviews).

Frequently asked

Does Apple notify you when someone reviews your app?
Only if you enable it. The one native option is a push notification through the App Store Connect iOS app — turn on its Ratings and Reviews alerts. Apple has no built-in per-review email, no Slack, and no webhook, so by default new reviews arrive silently.
How do I get an email when someone reviews my app?
Apple doesn't send review emails natively. Google Play Console does offer opt-in email notifications for new reviews. To get email for App Store reviews, you either build your own alert on top of the RSS feed or App Store Connect API, or use a monitoring tool that emails you when a review lands.
What is the App Store review RSS feed?
A public, no-auth feed of an app's most recent written reviews, at itunes.apple.com/{country}/rss/customerreviews/id={appId}/sortBy=mostRecent/json. It's per-country, returns only recent text reviews (never ratings-only), and Apple caches it, so it lags real-time by up to hours.
Why do I keep missing App Store reviews?
Usually because notifications default to off, cover only your home storefront, or land in an inbox nobody watches during a busy week. Ratings without written text never trigger any alert at all, so your average can drop with nothing to click on.
Can I get App Store review alerts in Slack, Telegram, or Discord?
Not from Apple directly — App Store Connect has no chat integrations. You'd route the RSS feed or API into your own bot, or use a tool like ReplyArgus that watches both stores and pushes each new review to Slack, Discord, Telegram, a webhook, or email.
How fast do I need to reply to a new review?
Sooner is measurably better. Research (Srisopha et al., EASE 2021) ranks timeliness among the top predictors of a reply that wins the reviewer back. A one-star caught within the hour can often be turned around; a week later the person has usually moved on.

So there's no magic Apple switch — you get notified of new App Store reviews by building the feed yourself or letting a tool own it. If you'd rather skip the RSS pollers and the API plumbing, [start free with ReplyArgus](/signup) — no card — and Argus will watch both stores, ping you the moment a review or rating drop lands, and have a reply drafted in the reviewer's own language before you've finished reading the alert.

Try it

Let Argus draft your next reply.

Watch it answer a real review in your voice. 10-day trial, no card to begin.

See the features or pricing.

Keep reading