# Studio Portfolio + Reviews Scraper - Google Play

**Use case:** 

Pull a game studio's published app portfolio plus a review sample of its hit title from Google Play. Export apps and reviews to CSV or JSON.

## Input

```json
{
  "dataTypes": [
    "developer",
    "reviews"
  ],
  "searchQueries": [
    "puzzle games"
  ],
  "appIds": [
    "com.king.candycrushsaga"
  ],
  "developerIds": [
    "King"
  ],
  "maxResults": 50,
  "includeAppDetails": false,
  "country": "us",
  "lang": "en",
  "chartCollection": "topselling_free",
  "chartCategory": "APPLICATION",
  "chartDevice": "",
  "reviewsSort": "newest",
  "maxReviewsPerApp": 500,
  "filterScore": ""
}
```

## Output

```json
{
  "row_type": {
    "label": "🏷 Row type",
    "format": "string"
  },
  "title": {
    "label": "📛 Title",
    "format": "string"
  },
  "developer": {
    "label": "👤 Developer",
    "format": "string"
  },
  "score": {
    "label": "⭐ Score",
    "format": "number"
  },
  "installs": {
    "label": "⬇ Installs",
    "format": "string"
  },
  "price": {
    "label": "💲 Price",
    "format": "number"
  }
}
```

## About this Actor

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