Google Play Reviews Scraper avatar

Google Play Reviews Scraper

Pricing

$2.00 / 1,000 product reviews

Go to Apify Store
Google Play Reviews Scraper

Google Play Reviews Scraper

Scrape Google Play app reviews as clean JSON: author, star rating, review text, thumbs-up, date, app version, and developer reply. Bulk, no API key.

Pricing

$2.00 / 1,000 product reviews

Rating

0.0

(0)

Developer

Jaime Martinez

Jaime Martinez

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

a day ago

Last modified

Share

Export every review for any Google Play app as clean, structured JSON — author, star rating, text, thumbs-up, date, app version, and the developer's reply — with no API key.

Google's official Play Developer API only returns reviews for apps you own. This Actor gets public reviews for any app.

What you get

One row per review:

  • author — reviewer name
  • score — star rating (1–5)
  • text — the review text
  • thumbsUp — how many found it helpful
  • date — ISO timestamp
  • appVersion — the app version reviewed
  • replyText — the developer's reply, if any
  • reviewId, avatar

Use cases

  • App reputation & ASO — track sentiment, ratings, and themes over time
  • Competitor monitoring — mine rivals' reviews for complaints and feature gaps
  • Product feedback — surface bugs and requests at scale
  • Feeding AI agents / LLMs — structured review text for summarization and analysis

Input

FieldTypeDescription
appIdstringPackage name (e.g. com.spotify.music) or Play Store URL (required)
maxReviewsintegerMax reviews to return (default 200)
sortstringnewest, rating, or relevance (default newest)
languagestringLanguage code, e.g. en
countrystringCountry code, e.g. US
proxyConfigurationobjectProxy settings — Apify Proxy recommended

Example

{ "appId": "com.spotify.music", "maxReviews": 500, "sort": "newest" }

Output

{
"reviewId": "7e1815f2-36d1-4187-a936-12f969747892",
"author": "Catherine Hempel",
"score": 5,
"text": "The paid version is excellent but very expensive.",
"thumbsUp": 28,
"date": "2026-04-21T13:35:57.000Z",
"appVersion": "9.1.40.1486",
"replyText": null,
"avatar": "https://play-lh.googleusercontent.com/..."
}

Notes

  • Reviews are read from Google Play's public web endpoint; language and country affect which reviews are returned.
  • Google changes its internal response format periodically; this Actor is actively maintained.