🐺 Google Play Reviews Scraper | Pay per Result avatar
🐺 Google Play Reviews Scraper | Pay per Result
Try for free

Pay $0.10 for 1,000 reviews

View all Actors
🐺 Google Play Reviews Scraper | Pay per Result

🐺 Google Play Reviews Scraper | Pay per Result

thewolves/google-play-reviews-scraper
Try for free

Pay $0.10 for 1,000 reviews

Google Play Reviews Scraper stands as the most enhanced solution for extracting reviews directly from Google Play, offering unparalleled data retrieval efficiency, unbeatable pricing, and exceptional speed. It charges only $0.10 for 1000 reviews in lightning-speed ⚑️

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    "appIds": [
11        "com.instagram.android",
12        "com.whatsapp",
13        "com.zhiliaoapp.musically"
14    ],
15    "startUrls": [
16        "https://play.google.com/store/apps/details?id=com.snapchat.android&hl=es&gl=US",
17        "https://play.google.com/store/apps/details?id=com.facebook.katana&hl=en&gl=DE",
18        "https://play.google.com/store/apps/details?id=org.telegram.messenger&hl=fi&gl=CA"
19    ],
20    "maxItems": 1000,
21    "customMapFunction": (object) => { return {...object} }
22};
23
24(async () => {
25    // Run the Actor and wait for it to finish
26    const run = await client.actor("thewolves/google-play-reviews-scraper").call(input);
27
28    // Fetch and print Actor results from the run's dataset (if any)
29    console.log('Results from dataset');
30    console.log(`πŸ’Ύ Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
31    const { items } = await client.dataset(run.defaultDatasetId).listItems();
32    items.forEach((item) => {
33        console.dir(item);
34    });
35})();
36
37// πŸ“š Want to learn more πŸ“–? Go to β†’ https://docs.apify.com/api/client/js/docs
Developer
Maintained by Community
Actor metrics
  • 15 monthly users
  • 2 stars
  • 100.0% runs succeeded
  • 3.1 days response time
  • Created in Feb 2024
  • Modified about 21 hours ago