# Microsoft Store App Scraper – Ratings & Details

**Use case:** 

Scrape Microsoft Store app data — ratings, review counts, description, publisher and images — for any app, in any market. Export to JSON/CSV, no start fee.

## Input

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

## Output

```json
{
  "productId": {
    "label": "Product ID",
    "format": "text"
  },
  "title": {
    "label": "App",
    "format": "text"
  },
  "publisher": {
    "label": "Publisher",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "rating": {
    "label": "Rating (all-time)",
    "format": "object"
  },
  "rating30Days": {
    "label": "Rating (30d)",
    "format": "object"
  },
  "price": {
    "label": "Price",
    "format": "object"
  },
  "imageUrl": {
    "label": "Icon",
    "format": "image"
  },
  "lastModified": {
    "label": "Updated",
    "format": "text"
  },
  "storeUrl": {
    "label": "URL",
    "format": "link"
  }
}
```

## 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.