# Scrape Google Play Reviews and App Data

**Use case:** 

Reviews, listings and search as one API: snippet, rating, likes and reviewDate for reviews; version, dataSafety and downloads band on listings. JSON out.

## Input

```json
{
  "search_mode": "reviews",
  "query": "fitness",
  "product_id": "com.spotify.music",
  "max_results": 40,
  "country": "us",
  "language": "en"
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "snippet": {
    "label": "Review text",
    "format": "string"
  },
  "likes": {
    "label": "Helpful votes",
    "format": "integer"
  },
  "reviewDate": {
    "label": "Review date",
    "format": "string"
  },
  "productId": {
    "label": "Package name",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Play API | Android App Search, Details and Reviews](https://apify.com/johnvc/google-play-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/google-play-api) to learn more, explore other use cases, and run it yourself.