# Google Play Reviews Exporter to CSV and JSON

**Use case:** 

Export any app's reviews with snippet, rating, likes, reviewDate and reviewId, 20 per request with automatic paging. Run once or on a schedule.

## Input

```json
{
  "search_mode": "reviews",
  "query": "fitness",
  "product_id": "homeworkout.homeworkouts.noequipment",
  "max_results": 100,
  "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.