# Microsoft Store app details scraper example

**Use case:** 

Extract Microsoft Store app titles, publishers, prices, ratings, requirements, package metadata, and links from direct product URLs.

## Input

```json
{
  "appIds": [
    "https://apps.microsoft.com/detail/9wzdncrfj3pz"
  ],
  "market": "US",
  "locale": "en-US",
  "maxItems": 1,
  "maxConcurrency": 3
}
```

## Output

```json
{
  "productId": {
    "label": "Product ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "publisher": {
    "label": "Publisher",
    "format": "text"
  },
  "displayPrice": {
    "label": "Price",
    "format": "text"
  },
  "averageRating": {
    "label": "Rating",
    "format": "number"
  },
  "ratingCount": {
    "label": "Ratings",
    "format": "number"
  },
  "lastUpdateDate": {
    "label": "Updated",
    "format": "date"
  },
  "platforms": {
    "label": "Platforms",
    "format": "array"
  },
  "canonicalUrl": {
    "label": "Microsoft Store",
    "format": "link"
  },
  "market": {
    "label": "Market",
    "format": "text"
  },
  "source": {
    "label": "Source",
    "format": "text"
  },
  "fetchedAt": {
    "label": "Fetched at",
    "format": "date"
  }
}
```

## About this Actor

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