Google Play Scraper avatar
Google Play Scraper
Try for free

Pay $0.30 for 1,000 results

View all Actors
Google Play Scraper

Google Play Scraper

curious_coder/google-play-scraper
Try for free

Pay $0.30 for 1,000 results

Scrape google play store to get apps, details, developers, categories and reviews. If you are looking for a reliable google play reviews scraper you should give this tool a try

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more

1# Set API token
2API_TOKEN=<YOUR_API_TOKEN>
3
4# Prepare Actor input
5cat > input.json <<'EOF'
6{
7  "action": "scrapeReviews",
8  "scrapeReviews.appId": "com.rockstargames.gtasa",
9  "count": 1000,
10  "scrapeAppSearch.keywords": [
11    "trading",
12    "market",
13    "stocks",
14    "investing",
15    "crypto"
16  ],
17  "scrapeAppUrls.urls": [
18    "https://play.google.com/store/apps/details?id=com.tradingview.tradingviewapp"
19  ]
20}
21EOF
22
23# Run the Actor using an HTTP API
24# See the full API reference at https://docs.apify.com/api/v2
25curl "https://api.apify.com/v2/acts/curious_coder~google-play-scraper/runs?token=$API_TOKEN" \
26  -X POST \
27  -d @input.json \
28  -H 'Content-Type: application/json'
Developer
Maintained by Community
Actor metrics
  • 53 monthly users
  • 6 stars
  • 92.7% runs succeeded
  • 4.9 days response time
  • Created in Jul 2023
  • Modified 9 days ago