VOOZH about

URL: https://apify.com/reviewbot/google-review-scraper

⇱ Reviewbot Google Play Review Scraper Β· Apify


πŸ‘ Reviewbot Google Play Review Scraper avatar

Reviewbot Google Play Review Scraper

Pricing

$0.05 / 1,000 paid reviews

Go to Apify Store

Reviewbot Google Play Review Scraper

Scrape user reviews from Google Play Store apps. Fetch ratings, review text, author, country, and timestamps with optional filters. Useful for Android app feedback analysis, sentiment tracking, and product improvement workflows.

Pricing

$0.05 / 1,000 paid reviews

Rating

5.0

(1)

Developer

πŸ‘ reviewbot

reviewbot

Maintained by Community

Actor stats

0

Bookmarked

16

Total users

4

Monthly active users

4 months ago

Last modified

Share

Google Play Store Review Scraper

Extract reviews from Android apps on Google Play Store.

What This Actor Does

The Google Play Store Review Scraper specializes in extracting user reviews from Android applications published on Google Play Store. As the world's largest mobile app marketplace with over 3 million apps, Google Play contains valuable user feedback that can drive product decisions and market insights.

Perfect for:

  • πŸ“± Android Developers - Monitor user feedback, track app ratings, and identify issues affecting your Android apps
  • 🎯 ASO Specialists - Analyze keyword mentions in reviews to optimize app store listings and improve discoverability
  • πŸ† Competitive Analysis - Study competitor Android apps, feature requests, and user satisfaction levels
  • πŸ“Š Market Research - Understand Android user preferences, pain points, and emerging trends in your app category
  • πŸ›‘οΈ Reputation Management - Track brand mentions and respond to user concerns across your Android app portfolio

Why Use This Actor:

  • Android-Focused: Specialized for Google Play Store with deep understanding of Android app ecosystem
  • High Success Rate: 95%+ reliability using proven reverse-engineered Google Play endpoints
  • Regional Flexibility: Access reviews from different countries and languages to understand global user sentiment
  • Performance Optimized: Extract 20+ reviews in 3-5 seconds with built-in rate limiting
  • Rich Context: Capture app version info, helpfulness scores, and user engagement metrics

Quick Start

Using Apify Console

  1. Go to Apify Console
  2. Configure input parameters and run

Using Apify CLI

npminstall-g apify-cli
apify run 0OdYb7GPP3hcrRJ1T --input='{"appId": "com.whatsapp", "limit": 100}'

Input Parameters

ParameterTypeRequiredDescription
appIdstringβœ“Android package name (e.g., "com.whatsapp")
limitnumberMaximum reviews to extract (default: 100)
countrystringCountry code: "us", "gb", "de", "fr", etc.
languagestringLanguage code: "en", "es", "fr", "de", etc.
ratingsarrayFilter by ratings: [4,5] for 4-5 star reviews
startDatestringExtract reviews after this date: "2024-01-01"
endDatestringExtract reviews before this date: "2024-12-31"

Usage Examples

Basic Usage

{
"appId":"com.whatsapp",
"limit":100
}

Advanced Filtering

{
"appId":"com.instagram.android",
"limit":200,
"country":"us",
"language":"en",
"ratings":[4,5],
"startDate":"2024-01-01"
}

Using Apify SDK

JavaScript Example

import{ ApifyApi }from'apify-client';
const client =newApifyApi({
token:'YOUR_APIFY_TOKEN',
});
asyncfunctiongetAndroidReviews(){
const run =await client.actor('0OdYb7GPP3hcrRJ1T').call({
appId:'com.whatsapp',
limit:100,
country:'us',
language:'en'
});
const{ items }=await client.dataset(run.defaultDatasetId).listItems();
console.log(`Downloaded ${items.length} reviews`);
return items;
}
getAndroidReviews();

Python Example

from apify_client import ApifyClient
client = ApifyClient('YOUR_APIFY_TOKEN')
run = client.actor('0OdYb7GPP3hcrRJ1T').call(run_input={
'appId':'com.spotify.music',
'limit':50,
'country':'us',
'ratings':[4,5]
})
items = client.dataset(run['defaultDatasetId']).list_items().items
for review in items:
print(f"{review['rating']}⭐ {review['text'][:100]}...")

cURL Examples

Run Actor

curl-X POST 'https://api.apify.com/v2/acts/0OdYb7GPP3hcrRJ1T/runs'\
-H'Authorization: Bearer YOUR_APIFY_TOKEN'\
-H'Content-Type: application/json'\
-d'{
"appId": "com.netflix.mediaclient",
"limit": 100,
"country": "us"
}'

Get Results

curl'https://api.apify.com/v2/datasets/DATASET_ID/items?format=json'\
-H'Authorization: Bearer YOUR_APIFY_TOKEN'

Output Format

[
{
"source":"apify",
"store":"google",
"appId":"com.whatsapp",
"runId":"MYuA42WzaLwLtdK0z",
"appName":"WhatsApp Messenger",
"developer":"WhatsApp LLC",
"appRating":4.5777025,
"appUrl":"https://play.google.com/store/apps/details?id=com.whatsapp&hl=en&gl=us",
"reviews":[
{
"reviewId":"gplay-com.whatsapp-39f08078-b544-4f11-938d-e478108d338c",
"text":"excellent πŸ‘Œ",
"rating":5,
"author":"Rizwan",
"reviewedAt":"2026-01-26T14:37:02.579Z",
"scrapedAt":"2026-01-27T14:37:21.539Z",
"store":"google",
"helpful":0,
"replyDate":null,
"replyText":null,
"version":"2.26.2.72",
"country":"us",
"language":"en"
}
],
"metadata":{
"summary":{
"totalReviews":5,
"averageRating":4.2,
"ratingDistribution":{
"1":1,
"2":0,
"3":0,
"4":0,
"5":4
}
},
"scrapingStats":{
"platform":"google-play",
"scrapingTimeMs":1721,
"rawReviewsCount":5,
"processedReviewsCount":5,
"validatedApp":true,
"totalRequests":1
}
}
}
]

πŸ’³ Pricing & Cost Control

This Actor uses Pay-Per-Event (PPE) pricing, so you only pay for the reviews you actually receive.

How Pricing Works

  • βœ… First 10 reviews are FREE on every run
  • πŸ’΅ $0.00005 per additional review
  • πŸ“¦ Charges are based on the number of reviews returned, not runtime

Example:

Reviews ReturnedFree ReviewsPaid ReviewsTotal Cost
10100$0.00
501040$0.002
1001090$0.0045
1,00010990$0.0495

Finding Package Names

Method 1: Google Play URL

From https://play.google.com/store/apps/details?id=com.whatsapp, the package name is com.whatsapp

Method 2: Android Device

$adb shell pm list packages |grep appname

Method 3: APK Analysis Tools

Use tools like aapt dump badging app.apk

Popular Apps for Testing

AppPackage NameCategory
WhatsAppcom.whatsappCommunication
Instagramcom.instagram.androidSocial
TikTokcom.zhiliaoapp.musicallyEntertainment
Spotifycom.spotify.musicMusic
Netflixcom.netflix.mediaclientEntertainment
YouTubecom.google.android.youtubeVideo
Facebookcom.facebook.katanaSocial
Gmailcom.google.android.gmProductivity

Error Handling

Common error responses:

{
"error":{
"type":"APP_NOT_FOUND",
"message":"App not found in Google Play Store",
"appId":"invalid.package.name"
}
}
{
"error":{
"type":"REGION_BLOCKED",
"message":"App not available in specified country",
"country":"xx"
}
}

Performance Notes

  • Speed: ~20 reviews in 3-5 seconds
  • Scalability: Can extract 1000+ reviews with pagination
  • Rate Limits: Built-in delays to respect Google's limits

Support

You might also like

Google Play Store Reviews Scraper

scraper-engine/google-play-store-reviews-scraper

Scrape Google Play Store reviews at scale, including ratings, text, timestamps, user info, and app metadata. Perfect for sentiment analysis, market research, competitor insights, and product improvement. Fast, accurate, and ideal for building review datasets.

πŸ‘ User avatar

Scraper Engine

67

5.0

Google Play Store Reviews Scraper - Low-costπŸ’²πŸ”₯β­πŸ“±

delectable_incubator/google-play-store-reviews-scraper-low-cost

Scrape Google Play app reviews β­πŸ“± with a powerful app review scraper. Extract ratings, review text, author names, review dates, app details & more using an app ID. Ideal for sentiment analysis, product improvement, competitor benchmarking, user feedback research & mobile app market intelligence πŸ“Š

Ultimate Google Play Review Extractor

dainty_screw/ultimate-google-play-review-extractor

Extract app reviews from Google Play efficiently for sentiment analysis and feedback.

πŸ‘ User avatar

codemaster devops

15

5.0

Google Play Store Review Scraper

scrapapi/google-play-store-review-scraper

Google Play Reviews Scraper

sync-network/google-play-reviews-scraper

Extract user reviews from any Android app on Google Play Store. Get review text, ratings, timestamps, user info, and developer replies. Supports filtering by star rating, sorting, and multiple languages.

Google Play Store Scraper

automation-lab/google-play-scraper

Scrape Google Play Store data β€” search apps, get app details, and extract user reviews with ratings, replies, and pagination.

πŸ‘ User avatar

Stas Persiianenko

233

5.0

Google Play Store Reviews Scraper API | App Review Extraction

code-node-tools/google-play-reviews-scraper

Automate Google Play review scraping with our powerful API. Export user feedback, star ratings, and developer replies directly to your database in JSON or CSV. Perfect for sentiment analysis, competitor research, and tracking Android app performance at scale. Try it free today!

30

Google Play App Reviews Scraper

coder_zoro/google-play-app-reviews-scraper

Extract user reviews from any Google Play app using its App ID. Collect ratings, review texts, timestamps, and user info in bulk for sentiment analysis, competitor research, or app performance insights. Ideal for automated Google Play review data extraction.