# Scrape Instagram Google Play Reviews

**Use case:** 

Export recent public Google Play reviews for the Instagram Android app, including ratings, locale, dates, and app metadata.

## Input

```json
{
  "appIds": [
    "com.instagram.android"
  ],
  "startUrls": [
    {
      "url": "https://play.google.com/store/apps/details?id=com.google.android.apps.maps"
    }
  ],
  "maxReviews": 100,
  "sort": "newest",
  "language": "en",
  "country": "US",
  "minRating": 1,
  "maxRating": 5,
  "includeAppDetails": true
}
```

## Output

```json
{
  "appId": {
    "label": "App ID",
    "format": "text"
  },
  "appTitle": {
    "label": "App title",
    "format": "text"
  },
  "developer": {
    "label": "Developer",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewText": {
    "label": "Review",
    "format": "text"
  },
  "reviewDate": {
    "label": "Review date",
    "format": "date"
  },
  "userName": {
    "label": "User",
    "format": "text"
  },
  "thumbsUp": {
    "label": "Helpful votes",
    "format": "number"
  },
  "appVersion": {
    "label": "App version",
    "format": "text"
  },
  "developerReplyText": {
    "label": "Developer reply",
    "format": "text"
  },
  "language": {
    "label": "Language",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "reviewUrl": {
    "label": "Review URL",
    "format": "link"
  },
  "scrapeTimestamp": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Play Reviews Scraper](https://apify.com/automation-lab/google-play-reviews-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/google-play-reviews-scraper) to learn more, explore other use cases, and run it yourself.