# Shopify Inventory Scraper - Low Stock Quantity Alerts

**Use case:** 

Pull true Shopify inventory_quantity per variant and flag low-stock SKUs below your threshold - demand-forecasting signal for hot products.

## Input

```json
{
  "mode": "stock_signals",
  "storeDomains": [
    "bombas.com"
  ],
  "lookbackDays": 30,
  "deepInventoryProbe": true,
  "lowStockThreshold": 10,
  "enableAiNiche": true,
  "maxProductsPerStore": 40,
  "maxItems": 150,
  "concurrency": 8,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "store": {
    "label": "Store",
    "format": "text"
  },
  "deltaType": {
    "label": "Change",
    "format": "text"
  },
  "productTitle": {
    "label": "Product",
    "format": "text"
  },
  "variantTitle": {
    "label": "Variant",
    "format": "text"
  },
  "oldValue": {
    "label": "Old",
    "format": "text"
  },
  "newValue": {
    "label": "New",
    "format": "text"
  },
  "detectedAt": {
    "label": "Detected",
    "format": "date"
  },
  "productUrl": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Shopify Store Intelligence — Catalog, Price & Stock Tracker](https://apify.com/constructive_calm/shopify-store-intel) with a specific input configuration. Visit the [Actor detail page](https://apify.com/constructive_calm/shopify-store-intel) to learn more, explore other use cases, and run it yourself.