# Microsoft Store App Reviews Scraper – Export to JSON

**Use case:** 

Export Microsoft Store app reviews to JSON/CSV: rating, text, helpful votes, any market, deep pagination. No start fee — $0.0001 per review.

## Input

```json
{
  "mode": "reviews",
  "productIds": [
    "9NKSQGP7F2NH"
  ],
  "maxSearchResults": 10,
  "maxReviewsPerApp": 50,
  "market": "US",
  "language": "en-us"
}
```

## Output

```json
{
  "productId": {
    "label": "Product ID",
    "format": "text"
  },
  "reviewerName": {
    "label": "Reviewer",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "text": {
    "label": "Review",
    "format": "text"
  },
  "helpfulPositive": {
    "label": "Helpful (up)",
    "format": "number"
  },
  "helpfulNegative": {
    "label": "Helpful (down)",
    "format": "number"
  },
  "deviceFamily": {
    "label": "Device",
    "format": "text"
  },
  "submittedAt": {
    "label": "Date",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Microsoft Store Scraper — App Details, Search & Reviews](https://apify.com/freshactors/microsoft-store-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/freshactors/microsoft-store-scraper) to learn more, explore other use cases, and run it yourself.