Google Play Scraper ✅ FREE avatar
Google Play Scraper ✅ FREE
Try for free

No credit card required

View all Actors
Google Play Scraper ✅ FREE

Google Play Scraper ✅ FREE

curious_coder/google-play-scraper
Try for free

No credit card required

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

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4const client = new ApifyClient({
5    token: '<YOUR_API_TOKEN>',
6});
7
8// Prepare Actor input
9const input = {
10    "action": "scrapeReviews",
11    "scrapeReviews.appId": "com.rockstargames.gtasa",
12    "count": 1000,
13    "scrapeAppSearch.keywords": [
14        "trading",
15        "market",
16        "stocks",
17        "investing",
18        "crypto"
19    ],
20    "scrapeAppUrls.urls": [
21        "https://play.google.com/store/apps/details?id=com.tradingview.tradingviewapp"
22    ]
23};
24
25(async () => {
26    // Run the Actor and wait for it to finish
27    const run = await client.actor("curious_coder/google-play-scraper").call(input);
28
29    // Fetch and print Actor results from the run's dataset (if any)
30    console.log('Results from dataset');
31    console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
32    const { items } = await client.dataset(run.defaultDatasetId).listItems();
33    items.forEach((item) => {
34        console.dir(item);
35    });
36})();
37
38// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs
Developer
Maintained by Community
Actor metrics
  • 43 monthly users
  • 2 stars
  • 85.3% runs succeeded
  • 21 days response time
  • Created in Jul 2023
  • Modified 23 days ago