# WooCommerce Product Feed Scraper (`straightforward_hydra/woocommerce-product-feed-scraper`) Actor

Export the public product catalog of any WooCommerce store: names, SKUs, prices, categories, stock, ratings and images. No API key needed.

- **URL**: https://apify.com/straightforward\_hydra/woocommerce-product-feed-scraper.md
- **Developed by:** [Dev D](https://apify.com/straightforward_hydra) (community)
- **Categories:** E-commerce, Lead generation, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.50 / 1,000 products

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## WooCommerce Product Feed Scraper 🛒

**Export the public product catalog of any WooCommerce store — names, SKUs, prices, categories, stock, ratings and images. No API key required.**

WooCommerce ships a public **Store API** (the same one its own storefront blocks use). This Actor reads it and returns clean, structured product data for one or many stores — perfect for **price monitoring, competitor analysis, market research, dropshipping and catalog imports**.

> Uses each store's public WooCommerce Store API — no key, no login, no browser.

***

### What you can do with it

- 💰 **Price & stock monitoring** — track competitor prices and availability on a schedule.
- 🛒 **Competitor catalogs** — export a rival store's full product list.
- 📊 **Market research** — analyze assortments, categories, ratings and price bands.
- 🔁 **Catalog / dropshipping imports** — pull products into your own system.
- ⭐ **Ratings & reviews signals** — average rating and review counts per product.

### Features

- ✅ **No API key** — reads the store's own public Store API.
- ✅ **Many stores at once** — pass a list of domains.
- ✅ **Search & category filters** — narrow to what you need.
- ✅ **Rich records** — price, regular/sale price, currency, stock, ratings, categories, tags, brands, attributes, images.
- ✅ **Prices decoded** — correct decimals from the store's currency.
- ✅ **Optional proxy** — for stores that rate-limit or gate the feed.

***

### Input

| Field | Description |
|---|---|
| **Store URLs** | Store domains/URLs, e.g. `barefootbuttons.com`. |
| **Search** | Optional search term. |
| **Category IDs** | Optional numeric WooCommerce category IDs. |
| **Max products per store** | Cap per store. |
| **Max results** | Overall cap. |

#### Example — monitor a store's catalog

```json
{
  "storeUrls": ["barefootbuttons.com"],
  "maxProductsPerStore": 500
}
```

### Output

Each row is one product:

```json
{
  "store": "barefootbuttons.com",
  "id": 12345,
  "name": "Standard Guitar Button",
  "slug": "standard-guitar-button",
  "sku": "SGB-001",
  "type": "variable",
  "url": "https://barefootbuttons.com/product/standard/",
  "price": 24.95,
  "regular_price": 24.95,
  "sale_price": null,
  "currency_code": "USD",
  "on_sale": false,
  "is_in_stock": true,
  "is_purchasable": true,
  "low_stock_remaining": null,
  "stock_availability": "In stock",
  "average_rating": 4.9,
  "review_count": 120,
  "categories": ["Buttons"],
  "tags": [],
  "brands": [],
  "attributes": [{"name": "Finish", "values": ["Gold", "Chrome"]}],
  "variation_count": 6,
  "images": ["https://…/button.jpg"],
  "featured_image": "https://…/button.jpg",
  "short_description": "…",
  "weight": "0.1"
}
```

### Run it on a schedule

Schedule the Actor to export catalogs daily and connect a **Google Sheets / Slack / webhook** integration to watch price drops and stock changes.

### Notes & limitations

- Reads each store's **public** WooCommerce Store API — no key needed.
- Some stores disable the Store API or gate it behind a password / Cloudflare; those are skipped with a warning (try the optional proxy).
- Prices are decoded to the store's currency; variation-level prices aren't exposed by the public Store API (product-level prices are).
- This is public **product** data (non-personal).

***

#### Keywords

WooCommerce scraper, WooCommerce product scraper, WooCommerce products, WooCommerce API, product feed, ecommerce scraper, price monitoring, competitor price tracking, WooCommerce catalog, product data, ecommerce data, WordPress ecommerce, dropshipping, product export, SKU tracking, online store scraper, retail data, price intelligence, WooCommerce store scraper, product catalog.

# Actor input Schema

## `storeUrls` (type: `array`):

WooCommerce store domains or URLs, e.g. barefootbuttons.com or https://woocommerce.com.

## `search` (type: `string`):

Only return products matching this search term. Leave empty for the whole catalog.

## `categoryIds` (type: `array`):

Numeric WooCommerce category IDs to limit to. Leave empty for all categories.

## `maxProductsPerStore` (type: `integer`):

Cap products fetched per store. Leave empty for the full catalog.

## `maxResults` (type: `integer`):

Stop after this many products in total. Leave empty for no limit.

## `proxyConfiguration` (type: `object`):

Optional proxy. Enable it if a store blocks the feed (Cloudflare) or rate-limits your runs.

## Actor input object example

```json
{
  "storeUrls": [
    "https://woocommerce.com"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "storeUrls": [
        "https://woocommerce.com"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("straightforward_hydra/woocommerce-product-feed-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "storeUrls": ["https://woocommerce.com"] }

# Run the Actor and wait for it to finish
run = client.actor("straightforward_hydra/woocommerce-product-feed-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "storeUrls": [
    "https://woocommerce.com"
  ]
}' |
apify call straightforward_hydra/woocommerce-product-feed-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=straightforward_hydra/woocommerce-product-feed-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/u1df8dn6hA0P7GplR/builds/h3XH1TcNArLu6xLtG/openapi.json
