# Google Play App Details Extractor

**Use case:** 

Extract Google Play app details by package ID including ratings, installs, developer contacts, screenshots, prices, and metadata.

## Input

```json
{
  "mode": "details",
  "searchTerms": [
    "whatsapp"
  ],
  "appIds": [
    "com.spotify.music",
    "com.duolingo"
  ],
  "maxResults": 2,
  "country": "us",
  "language": "en",
  "reviewSort": "newest",
  "reviewScore": 5
}
```

## Output

```json
{
  "icon": {
    "label": "Icon",
    "format": "string"
  },
  "appId": {
    "label": "App ID",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "developer": {
    "label": "Developer",
    "format": "string"
  },
  "score": {
    "label": "Score",
    "format": "number"
  },
  "ratings": {
    "label": "Ratings",
    "format": "number"
  },
  "installs": {
    "label": "Installs",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "genre": {
    "label": "Genre",
    "format": "string"
  },
  "url": {
    "label": "Url",
    "format": "string"
  }
}
```

## About this Actor

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