# Shopify Products Scraper — Full Catalog, Variants & Prices (`igor_nersisian/shopify-products-scraper`) Actor

Extract full product catalogs from any Shopify store: titles, descriptions, variants, prices, compare-at prices, images and availability. Supports specific collections, one-row-per-variant mode and keyword filtering. Great for price monitoring and competitor research.

- **URL**: https://apify.com/igor\_nersisian/shopify-products-scraper.md
- **Developed by:** [Igor Nersisian](https://apify.com/igor_nersisian) (community)
- **Categories:** E-commerce
- **Stats:** 2 total users, 1 monthly users, 75.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.80 / 1,000 product results

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

## Shopify Products Scraper — Full Catalogs, Variants, Prices & Stock

Extract the **complete product catalog of any Shopify store** in minutes: titles, descriptions, **prices and compare-at prices per variant, SKUs, stock availability, images, tags, vendors and product types** — in clean, structured JSON/CSV. Scrape multiple stores in one run.

Built for **competitor price monitoring, dropshipping research, market analysis, and catalog syncing**.

### Why this scraper?

- 🏪 **Any Shopify store** — just paste the store URL. Multi-store runs supported.
- 🧾 **Variant-level detail** — every size/color variant with its own price, SKU, compare-at price and availability.
- 📊 **Price-monitoring mode** — `oneRowPerVariant` gives one row per SKU, ideal for tracking price changes on a schedule.
- 🎯 **Collection & keyword filters** — scrape just one collection (e.g. `/collections/sale`) or filter by title/tag keywords.
- ⚡ **Fast & lightweight** — uses Shopify's public catalog endpoints. No browser, no proxies, no login.
- 💸 **Pay per product** — you pay only for the products you get.

### Input example

```json
{
    "stores": ["https://www.allbirds.com", "https://www.gymshark.com"],
    "availableOnly": true,
    "maxProductsPerStore": 500
}
```

### Output example

```json
{
    "id": 4808648720449,
    "title": "Men's Tree Runners",
    "url": "https://www.allbirds.com/products/mens-tree-runners",
    "store": "https://www.allbirds.com",
    "vendor": "Allbirds",
    "productType": "Shoes",
    "tags": ["mens", "sneakers"],
    "priceMin": 98,
    "priceMax": 98,
    "available": true,
    "variantCount": 14,
    "variants": [
        { "id": 32977669619777, "title": "Thunder / 8", "sku": "TR2MTHG080", "price": 98, "compareAtPrice": null, "available": true }
    ],
    "featuredImage": "https://cdn.shopify.com/s/files/...jpg",
    "descriptionText": "Light, breathable, and made from eucalyptus tree fiber...",
    "publishedAt": "2020-04-14T10:00:00.000Z"
}
```

### Use cases

- **Competitor price monitoring** — schedule daily runs with `oneRowPerVariant: true`, diff prices over time.
- **Dropshipping & product research** — pull entire catalogs from niche stores, filter by tags, spot best-sellers by stock movement.
- **Market & assortment analysis** — compare catalog breadth, price bands, and vendors across stores.
- **Catalog import/sync** — clean JSON of every product to feed your own store, feed generator or marketplace listing tool.

### Notes

- Prices are in the store's default currency (Shopify's public catalog endpoint doesn't expose the currency code — most stores publish USD/EUR/GBP consistent with their primary market).
- A very small number of Shopify stores disable the public catalog endpoint; those return a clear error in the run log while other stores in the run continue normally.

### Scheduling & integrations

Run on a [schedule](https://docs.apify.com/platform/schedules), export **JSON, CSV, Excel**, or connect **Google Sheets, Zapier, Make, webhooks** and the [Apify API](https://docs.apify.com/api/v2). Works as an MCP data source for AI agents.

### FAQ

**Do I need the store owner's permission or an API key?**
No — the actor reads the same public catalog data the store publishes to every visitor and search engine. No personal data is collected.

**Does it get out-of-stock products?**
Yes, with `available: false` (unless you set `availableOnly: true`).

**Can I scrape just one collection?**
Yes — set `collection` to the collection handle, e.g. `mens` or `sale`.

# Actor input Schema

## `stores` (type: `array`):

One or more Shopify store URLs, e.g. <code>https://www.allbirds.com</code>. Works with any store that has the standard public product listing enabled (the vast majority).

## `collection` (type: `string`):

Scrape only one collection, e.g. <code>mens</code> (from <code>/collections/mens</code>). Leave empty for the full catalog.

## `keywords` (type: `array`):

Only keep products whose title, type or tags contain at least one of these keywords (case-insensitive).

## `availableOnly` (type: `boolean`):

Keep only products with at least one available variant.

## `oneRowPerVariant` (type: `boolean`):

Output every variant as its own result row (useful for price monitoring per SKU). Default: one result per product with variants nested.

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

Stop after this many products per store. 0 = full catalog.

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

Proxy to use for requests. Apify Proxy (automatic) is recommended — some stores rate-limit repeated requests from one IP.

## Actor input object example

```json
{
  "stores": [
    "https://www.allbirds.com"
  ],
  "keywords": [],
  "availableOnly": false,
  "oneRowPerVariant": false,
  "maxProductsPerStore": 100,
  "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 = {
    "stores": [
        "https://www.allbirds.com"
    ],
    "collection": "",
    "keywords": [],
    "maxProductsPerStore": 100,
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("igor_nersisian/shopify-products-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 = {
    "stores": ["https://www.allbirds.com"],
    "collection": "",
    "keywords": [],
    "maxProductsPerStore": 100,
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("igor_nersisian/shopify-products-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 '{
  "stores": [
    "https://www.allbirds.com"
  ],
  "collection": "",
  "keywords": [],
  "maxProductsPerStore": 100,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call igor_nersisian/shopify-products-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/czsq2DpzwkFZJduNM/builds/Cc72R85hBEtxXr240/openapi.json
