App Store Reviews Scraper - Multi-Country iOS Reviews avatar

App Store Reviews Scraper - Multi-Country iOS Reviews

Pricing

from $0.10 / 1,000 results

Go to Apify Store
App Store Reviews Scraper - Multi-Country iOS Reviews

App Store Reviews Scraper - Multi-Country iOS Reviews

Scrape Apple App Store and iOS app reviews across multiple apps and countries by App ID or URL. Get structured JSON with rating, title, content, version, app_id, and country—ideal for sentiment analysis, competitor monitoring, ASO research, and uncovering product opportunities.

Pricing

from $0.10 / 1,000 results

Rating

0.0

(0)

Developer

CloudCharles

CloudCharles

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Share

一、Overview

  • Scrape Apple App Store and iOS app reviews from multiple apps and countries by App ID or URL.
  • Export structured JSON with rating, title, content, version, and country—built for sentiment analysis, competitor monitoring, ASO research, and uncovering product opportunities.

二、Input

  • app_ids: App Store application IDs. Every App ID is combined with every value in countries.
  • countries: Country codes used with app_ids. The default is ["us"].
  • urls: App Store application URLs. Use this mode without app_ids; the Actor extracts the App ID and country from each URL and ignores countries.
  • limit: Maximum reviews returned for each App/country combination. The run spending limit still caps the total.

Provide at least one app_ids or urls value. If both are provided, app_ids takes precedence.

App IDs and countries mode

The following input creates four targets: each of the two apps in both the US and Japan. Each target can return up to 100 reviews (up to 400 total, subject to the run spending limit).

{
"app_ids": ["6448311069", "284882215"],
"countries": ["us", "jp"],
"limit": 100
}

URLs mode

The country is taken from each URL (us and jp below); the countries field is not used.

{
"urls": [
"https://apps.apple.com/us/app/chatgpt/id6448311069",
"https://apps.apple.com/jp/app/google/id284815942"
],
"limit": 500
}

三、Output

The default dataset contains one object per review. app_id and country identify the source target, so records from different apps and storefronts share the same structure.

[
{
"app_id": "6448311069",
"country": "us",
"id": "13288066270",
"user_uri": "https://itunes.apple.com/us/reviews/id199760004",
"user_name": "Example",
"user_label": "",
"title": "Trash",
"content": "Example...",
"rating": "1",
"version": "1.2025.281",
"date": "2025-10-19T12:24:01-07:00",
"link": "https://itunes.apple.com/us/review?id=6448311069&type=Purple%20Software"
}
]