# App Detail + Maker Portfolio Scraper - Google Play

**Use case:** 

Pull an app's full detail plus the maker's other published apps from Google Play. Export ratings, installs, developer and price to CSV or JSON.

## Input

```json
{
  "dataTypes": [
    "app",
    "developer"
  ],
  "searchQueries": [
    "puzzle games"
  ],
  "appIds": [
    "com.google.android.youtube"
  ],
  "developerIds": [
    "Google LLC"
  ],
  "maxResults": 50,
  "includeAppDetails": false,
  "country": "us",
  "lang": "en",
  "chartCollection": "topselling_free",
  "chartCategory": "APPLICATION",
  "chartDevice": "",
  "reviewsSort": "newest",
  "maxReviewsPerApp": 100,
  "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.