# Footwear: stock and size availability

**Use case:** 

Four footwear brands with the full variant list, so every shoe size and its availability lands in the row. Built for daily restock monitoring.

## Input

```json
{
  "storeUrls": [
    "https://www.allbirds.com",
    "https://www.rothys.com",
    "https://www.vessi.com",
    "https://www.thursdayboots.com"
  ],
  "collectionHandles": [
    "sale",
    "new-arrivals"
  ],
  "maxProductsPerStore": 40,
  "sortBy": "discountDesc",
  "minPrice": 25,
  "maxPrice": 100,
  "onSaleOnly": true,
  "minDiscountPercent": 30,
  "inStockOnly": true,
  "newerThanDays": 30,
  "vendors": [
    "Nike",
    "Adidas"
  ],
  "productTypes": [
    "T-Shirts",
    "Leggings"
  ],
  "requiredTags": [
    "new-releases",
    "bestseller"
  ],
  "titleKeywords": [
    "hoodie",
    "jacket"
  ],
  "includeVariants": true,
  "includeDescription": true,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "storeDomain": {
    "label": "Store domain",
    "format": "string"
  },
  "title": {
    "label": "Product title",
    "format": "string"
  },
  "vendor": {
    "label": "Vendor",
    "format": "string"
  },
  "productType": {
    "label": "Product type",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "compareAtPrice": {
    "label": "Compare-at price",
    "format": "number"
  },
  "discountPercent": {
    "label": "Discount %",
    "format": "number"
  },
  "inStock": {
    "label": "In stock",
    "format": "boolean"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "string"
  }
}
```

## About this Actor

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