# Build a Multi-Store Shopify Price History Set

**Use case:** 

Scheduled price and availability snapshots across several Shopify brands build a timestamped price-history dataset for pricing models and dashboards.

## Input

```json
{
  "storeUrls": [
    "https://www.gymshark.com",
    "https://www.allbirds.com",
    "https://www.brooklinen.com"
  ],
  "maxItems": 4000,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "vendor": {
    "label": "Vendor",
    "format": "text"
  },
  "priceMin": {
    "label": "Min price",
    "format": "number"
  },
  "priceMax": {
    "label": "Max price",
    "format": "number"
  },
  "available": {
    "label": "In stock",
    "format": "boolean"
  },
  "url": {
    "label": "Product URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Shopify Products Scraper](https://apify.com/dami_studio/shopify-products-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/dami_studio/shopify-products-scraper) to learn more, explore other use cases, and run it yourself.