# WooCommerce Product Catalog Scraper

**Use case:** 

Scrape the full catalog from any WooCommerce store: name, price, SKU, stock status, categories and images. No login. Export to Excel, CSV or JSON.

## Input

```json
{
  "storeUrls": [
    "offermanwoodshop.com"
  ],
  "mode": "catalog",
  "minPriceChangePct": 0,
  "reportNewOnFirstRun": false,
  "includeImages": true,
  "includeReviews": false,
  "maxReviewsPerProduct": 10,
  "maxProductsPerStore": 0,
  "maxConcurrency": 10,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "store": {
    "label": "Store",
    "format": "text"
  },
  "name": {
    "label": "Product",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "regularPrice": {
    "label": "Regular",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "onSale": {
    "label": "On Sale",
    "format": "boolean"
  },
  "discountPct": {
    "label": "Disc %",
    "format": "number"
  },
  "inStock": {
    "label": "In Stock",
    "format": "boolean"
  },
  "lowStockRemaining": {
    "label": "Low stock",
    "format": "number"
  },
  "averageRating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [WooCommerce Price & Inventory Monitor](https://apify.com/sashaebashu/woocommerce-monitor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/sashaebashu/woocommerce-monitor) to learn more, explore other use cases, and run it yourself.