# Export App Store Reviews to CSV

**Use case:** 

Pull an iOS or macOS app's App Store reviews and download them as a CSV: rating, title, text, author, date, and version. Exports to Excel and Sheets too.

## Input

```json
{
  "product_ids": [
    "534220544"
  ],
  "country": "us",
  "sort": "mostrecent",
  "max_reviews": 100,
  "start_page": 1,
  "include_macos": true,
  "normalize_dates": true,
  "parse_helpfulness": true
}
```

## Output

```json
{
  "position_global": {
    "label": "Global Position",
    "format": "integer"
  },
  "rating": {
    "label": "Star Rating (1 to 5)",
    "format": "integer"
  },
  "review_title": {
    "label": "Review Title",
    "format": "string"
  },
  "review_text": {
    "label": "Review Text",
    "format": "string"
  },
  "author_name": {
    "label": "Author Name",
    "format": "string"
  },
  "review_date_iso": {
    "label": "Review Date (ISO 8601)",
    "format": "string"
  },
  "reviewed_version": {
    "label": "App Version Reviewed",
    "format": "string"
  },
  "helpful_count": {
    "label": "Helpful Votes",
    "format": "integer"
  },
  "product_id": {
    "label": "Apple Product ID",
    "format": "string"
  },
  "app_platform": {
    "label": "App Platform (ios / macos)",
    "format": "string"
  },
  "app_country": {
    "label": "Country Store",
    "format": "string"
  },
  "sort_order": {
    "label": "Sort Order Applied",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Apple App Store Reviews API | iOS & macOS JSON](https://apify.com/johnvc/apple-app-store-reviews-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/apple-app-store-reviews-api) to learn more, explore other use cases, and run it yourself.