# Google Play app intelligence — example run

**Use case:** 

Fetches app details, ratings and reviews from Google Play for a sample app as clean structured JSON for ASO research.

## Input

```json
{
  "mode": "app-details",
  "appIds": [
    "com.spotify.music"
  ],
  "searchQueries": [
    "meditation",
    "sleep tracker"
  ],
  "language": "en",
  "country": "us",
  "countries": [],
  "reviewsSort": "newest",
  "reviewsFilterScore": 0,
  "maxReviewsPerApp": 200,
  "topChartsCollection": "TOP_FREE",
  "topChartsCategory": "APPLICATION",
  "maxResults": 50,
  "fullDetail": false,
  "maxItems": 5,
  "concurrency": 4
}
```

## Output

```json
{
  "type": {
    "label": "Record type",
    "format": "string"
  },
  "appId": {
    "label": "App ID",
    "format": "string"
  },
  "country": {
    "label": "Store country",
    "format": "string"
  },
  "title": {
    "label": "App title",
    "format": "string"
  },
  "score": {
    "label": "Average rating",
    "format": "number"
  },
  "rank": {
    "label": "Rank",
    "format": "number"
  },
  "content": {
    "label": "Review text",
    "format": "string"
  },
  "url": {
    "label": "Store URL",
    "format": "string"
  }
}
```

## About this Actor

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