App Store Review Watch avatar

App Store Review Watch

Pricing

from $14.00 / 1,000 app checkeds

Go to Apify Store
App Store Review Watch

App Store Review Watch

Watch Apple App Store apps by ID or URL and return only NEW customer reviews since the last run. Uses Apple's public iTunes RSS + Lookup JSON APIs. Not Google Play. No HTML scraping.

Pricing

from $14.00 / 1,000 app checkeds

Rating

0.0

(0)

Developer

Dan Markarian

Dan Markarian

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

23 days ago

Last modified

Categories

Share

Watch Apple App Store apps by numeric ID or apps.apple.com URL and return only NEW customer reviews since the last run.

This Actor talks to Apple's public JSON APIs — the iTunes Customer Reviews RSS feed and the iTunes Lookup API. Anyone can retrieve the RSS (Apple staff confirmation). No HTML scraping. No App Store Connect. Not Google Play.

What this Actor does

  • Accepts App Store IDs (389801252) or App Store URLs (https://apps.apple.com/us/app/instagram/id389801252).
  • Sweeps one or more storefronts (country codes such as us, gb, de).
  • Fetches the most-recent reviews from
    https://itunes.apple.com/{country}/rss/customerreviews/page={1-10}/id={appId}/sortby=mostrecent/json
  • Enriches each app with title + bundle ID from
    https://itunes.apple.com/lookup?id={appId}&country={country} (no API key).
  • Dedupes by Apple review id, persisted across scheduled reruns, so you only pay for new rows.
  • Emits a run-summary record with appsChecked, newCount, and rssCapHit.

Official RSS limit (~500 / storefront)

Apple's customerreviews RSS is a rolling window, not a full history:

Page size~50 reviews
Max pages10
Max per app × storefront~500 most-recent reviews

If an app is very chatty and you don't run often enough, older reviews fall off the window. The rssCapHit flag on the run-summary is true when page 10 was still full — increase schedule frequency or add storefronts rather than expecting the RSS to go deeper. This Actor will not scrape the App Store website to go past that cap.

Not Google Play

This Actor only reads the Apple App Store. It will not accept Play Store URLs, does not call Google APIs, and does not scrape play.google.com. For Android reviews you need a different Actor.

Input

FieldRequiredDefaultDescription
appsyesArray of numeric App Store IDs or apps.apple.com / itunes.apple.com URLs
countriesno["us"]ISO 3166-1 alpha-2 storefront codes to sweep
sincenolast run / seen IDsISO date. If omitted, seen review IDs from previous runs are used
maxPagesno10110 RSS pages per app × storefront
debugnofalseLog RSS URLs, page sizes, and review IDs (not bodies)

Input example

{
"apps": [
"389801252",
"https://apps.apple.com/us/app/x/id333903271"
],
"countries": ["us", "gb", "de"],
"maxPages": 10,
"debug": false
}

Country sweep

Each app × storefront is one successful RSS fetch (app-checked event), even when zero reviews are new. Typical sweeps:

  • Launch markets: ["us"]
  • English-speaking: ["us", "gb", "au", "ca"]
  • EU sample: ["us", "gb", "de", "fr", "it", "es", "nl"]

Reviews are storefront-specific. The same customer does not appear once globally — a US 5-star and a DE 5-star are different rows.

Output

Every new review is one dataset row:

FieldMeaning
appIdNumeric Apple track ID
appTitleLocalized name from Lookup
bundleIde.g. com.burbn.instagram
countryStorefront code
reviewIdApple review id (dedupe key)
rating1–5
titleReview title
bodyReview text
authorReviewer display name
versionApp version the reviewer was on
dateRSS updated timestamp
urlApp Store reviews page for that storefront

Plus one run-summary record: appsChecked, newCount, rssCapHit.

recordType is "review" or "run-summary" so you can filter.

How "new" is decided

  1. Apple review id is the source of truth. IDs are stored in a named key-value store (app-store-review-watch-state) so scheduled reruns skip rows you already received.
  2. Optional since additionally drops reviews older than that instant.
  3. If since is omitted, the first run emits the current RSS window (up to ~500/storefront) and remembers those IDs. Later runs emit only unseen IDs.

The run's default key-value store is unique per run and would forget state; a named store is required for a watch Actor.

Scheduling (daily)

Create a schedule in Apify Console, e.g. daily at 08:00 UTC:

0 8 * * *

For busy apps, run every 6 hours (0 */6 * * *) so you stay inside the 500-review window. First run is a backfill of the current window; after that you only see deltas.

Pricing (pay-per-event only)

Events-only PPE. Do not enable "PPE + usage". Platform synthetic apify-actor-start is kept; remove apify-default-dataset-item so dataset writes are not double-billed. apify-actor-start is charged by Apify automatically — the Actor does not call Actor.charge for it.

EventWhenDefaultBronzeSilverGold
apify-actor-startEvery run (synthetic, covers first 5s of compute)$0.00005$0.00005$0.00005$0.00005
app-checkedAfter a successful RSS fetch for one app × one storefront, even if 0 new reviews$0.02$0.018$0.016$0.014
new-reviewAfter each new review is pushData'd (deduped by Apple review id)$0.002$0.002$0.002$0.002

Example costs

  • 1 app, 1 storefront, 0 new reviews: ~$0.02005 (start + one check)
  • 1 app, 1 storefront, 10 new reviews: ~$0.04005
  • 5 apps × 3 countries, daily, quiet day: 15 × $0.02 = $0.30/day in app-checked, plus $0.002 per new review

Memory is capped at 256–1024 MB (minMemoryMbytes / maxMemoryMbytes) so a user cannot run this JSON-only Actor at 32 GB.

MCP / agents

Limited-permission PPE Actors can be called from agents (and later x402). Point a client at Apify's hosted MCP server and pin this Actor once it is published:

{
"mcpServers": {
"apify": {
"url": "https://mcp.apify.com?tools=actors,<username>/app-store-review-watch"
}
}
}

Replace <username> with the Apify account that published the Actor. The server lives at mcp.apify.com. call-actor uses this Actor's input schema; full-permission and rental Actors are excluded from MCP, which is why this project is limited permissions + PPE events only.

Cursor / VS Code can also use the same URL. See Apify MCP docs.

  • Reviews RSS is a public iTunes feed. Apple Developer Forums thread 16909: staff stated anyone can retrieve it.
  • Lookup is the public iTunes Search API (no key).
  • This Actor does not log into Apple IDs, does not use App Store Connect, and does not scrape HTML.

FAQ

Why did I get 0 reviews on run 2? All current RSS ids were already stored. That is success — you still pay app-checked.

Can I get more than 500 reviews? Not from this Actor. That is Apple's RSS window. Run more often or add storefronts.

Does since replace seen IDs? No. Both apply. since filters by date; seen IDs prevent duplicates across runs.

Play Store? No. Apple App Store only.