Google Play Scraper avatar

Google Play Scraper

Deprecated

Pricing

from $5.00 / 1,000 results

Go to Apify Store
Google Play Scraper

Google Play Scraper

Deprecated

Scrape app listings, ratings and reviews from Google Play Store

Pricing

from $5.00 / 1,000 results

Rating

0.0

(0)

Developer

codingfrontend

codingfrontend

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Share

Features

  • App Listings: Scrapes app data from Google Play Store including name, developer, rating, and price
  • Install Counts: Captures the total install count displayed on each app's Play Store page
  • App Categories: Extracts app category classifications (Games, Productivity, Health & Fitness, etc.)
  • Full Descriptions: Retrieves complete app descriptions via deep scraping
  • User Reviews: Optionally scrapes user reviews for each app
  • Monetization Info: Records whether apps contain ads or in-app purchases
  • Dual Mode: Supports both search-based discovery and direct URL scraping
  • Localization Support: Configurable country and language codes for region-specific store listings
  • Proxy Support: Built-in Apify Proxy with residential proxies for reliable Play Store access

Input Parameters

ParameterTypeRequiredDefaultDescription
modeStringNo"search"Scraping mode: search to find apps or productUrl for specific app URLs
queryStringNo"fitness tracker"Search term to find apps (used in search mode)
productUrlsArrayNo[]List of Google Play app URLs to scrape (used in productUrl mode)
maxItemsIntegerNo50Maximum number of app results (1–500)
includeReviewsBooleanNofalseWhether to scrape user reviews for each app
deepScrapingBooleanNotrueVisit each app's detail page for full data (description, installs, etc.)
glStringNo"us"Two-letter country code for localized results (e.g., us, in, gb)
hlStringNo"en"Language code for results (e.g., en, hi, de, fr)
proxyConfigurationObjectNoApify ResidentialProxy settings for the scraper

Input Schema Example

{
"mode": "search",
"query": "meditation app",
"maxItems": 20,
"includeReviews": false,
"deepScraping": true,
"gl": "us",
"hl": "en",
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"]
}
}

Output Schema

The scraper outputs structured JSON data for each app found on the Google Play Store.

Main Fields

FieldTypeDescription
positionIntegerResult position in the search
appNameStringApp name
developerStringDeveloper or publisher name
ratingNumberAverage user rating (0–5)
reviewCountStringTotal number of user reviews
priceStringApp price (e.g., "Free", "$2.99")
installsStringInstall count (e.g., "10M+", "500K+")
categoryStringApp category
descriptionStringFull app description (from deep scraping)
containsAdsBooleanWhether the app contains advertisements
hasInAppPurchasesBooleanWhether the app has in-app purchases
linkStringDirect Google Play Store URL
thumbnailStringApp icon/thumbnail image URL

App Listing Example

{
"position": 1,
"appName": "Headspace: Sleep & Meditation",
"developer": "Headspace Inc.",
"rating": 4.4,
"reviewCount": "352K",
"price": "Free",
"installs": "10M+",
"category": "Health & Fitness",
"description": "Headspace is your guide to mindfulness and meditation, offering hundreds of guided sessions...",
"containsAds": false,
"hasInAppPurchases": true,
"link": "https://play.google.com/store/apps/details?id=com.getsomeheadspace.android",
"thumbnail": "https://play-lh.googleusercontent.com/headspace-icon.png"
}