# Shopify Store Products Scraper — Variants, Prices, Stock (`chorelet/shopify-store-products-scraper`) Actor

Every product of any Shopify store or collection with variants, prices, compare-at prices, stock, SKUs, options, images, tags and descriptions — via the store's public catalog, no login. Keyword and in-stock filters, CSV/JSON export and API.

- **URL**: https://apify.com/chorelet/shopify-store-products-scraper.md
- **Developed by:** [Chorelet](https://apify.com/chorelet) (community)
- **Categories:** E-commerce, Automation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.70 / 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.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
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.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## 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.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## Shopify Store Products Scraper — Variants, Prices, Stock

The full catalog of any Shopify store — or a single collection — with every variant's price, compare-at price, availability, SKU and options, plus images, tags, vendor, product type and description. Paste store URLs, get JSON, CSV or Excel, or pull via API.

Reads the store's own public catalog endpoint (`/products.json`), so it works on every Shopify store that exposes its products (the vast majority), returns exactly what the store publishes, and needs no login or proxies.

### Why this Actor

- Whole stores or single collections through the store's own public catalog endpoint
- Every variant with price, compare-at price, availability, SKU and options
- Sale and in-stock flags, keyword filter, descriptions as text and HTML
- 250 products per request — thousands in seconds, no login, no proxies
- Checked every day by an automated run

### Sample output

One item of the dataset (long values shortened):

```json
{
  "store": "www.allbirds.com",
  "title": "Free Returns Coverage",
  "vendor": "re:do",
  "productType": "return,package_protection",
  "priceMin": 0.8,
  "priceMax": 2.98,
  "compareAtPriceMax": 2.98,
  "onSale": true,
  "available": true,
  "variantsCount": 2,
  "url": "https://www.allbirds.com/products/free-returns-coverage"
}
```

### What you get

| Field | Description |
|---|---|
| `store`, `collection`, `id`, `handle`, `url` | Identity |
| `title`, `vendor`, `productType`, `tags` | Classification |
| `priceMin`, `priceMax`, `compareAtPriceMax`, `onSale`, `available`, `variantsCount` | Pricing and stock summary |
| `variants[]` | id, title, sku, price, compareAtPrice, available, options, grams, requiresShipping, image |
| `options[]`, `images[]`, `image` | Options and media |
| `description`, `descriptionHtml`, `createdAt`, `updatedAt`, `publishedAt` | Content and dates |

A per-store summary (products listed, kept, errors) is saved as `SUMMARY`.

### Input

- **Store URLs** — home pages, collection URLs or product URLs.
- **Max products per store**, **Keywords**, **In stock only**, **Include descriptions**, **Proxy** (off by default).

### Limits and notes

- Stores can disable the public catalog or password-protect the shop; those return a clear error and the run continues with the rest.
- Prices are in the store's default currency; `available` reflects the store's inventory flag at scrape time.
- Public data only; the Actor stores nothing beyond the dataset of your run.

### Input example

```json
{
  "storeUrls": [
    "https://www.allbirds.com",
    "https://gymshark.com/collections/sale"
  ],
  "maxProductsPerStore": 5000,
  "onlyAvailable": false,
  "includeDescription": true
}
```

### How much does it cost?

Pay per product — no subscription, no minimum, no charge for platform usage.

| Volume | Price |
|---|---|
| 1,000 products | $1.00 |
| 10,000 products | $10.00 |
| 100,000 products | $100.00 |

The Apify **free plan includes $5 of usage every month** — about 5,000 products with this Actor, no card needed. Nothing else is charged: platform usage is included in the price, and Apify Bronze, Silver and Gold subscribers get 10%, 20% and 30% off these prices.

### Use it from code, n8n, Make, Zapier or an AI agent

Run the Actor and download the dataset in one call (JSON by default; add `&format=csv` or `xlsx`):

```bash
curl -X POST "https://api.apify.com/v2/acts/chorelet~shopify-store-products-scraper/run-sync-get-dataset-items?token=$APIFY_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"storeUrls": ["https://www.allbirds.com", "https://gymshark.com/collections/sale"], "maxProductsPerStore": 5000, "onlyAvailable": false, "includeDescription": true}'
```

Python:

```python
from apify_client import ApifyClient

client = ApifyClient("YOUR_APIFY_TOKEN")
run = client.actor("chorelet/shopify-store-products-scraper").call(run_input={"storeUrls": ["https://www.allbirds.com", "https://gymshark.com/collections/sale"], "maxProductsPerStore": 5000, "onlyAvailable": false, "includeDescription": true})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)
```

- **n8n, Make, Zapier** — use the Apify node/module: run the Actor, then "get dataset items".
- **Google Sheets, Slack, webhooks** — add an integration on the run's *Integrations* tab.
- **AI agents** — the Actor is available as a tool through the Apify MCP server; the dataset schema describes every field for the model.
- **Schedules** — run it hourly, daily or weekly from the *Schedules* tab.

### FAQ

**Does it work on every Shopify store?**

On every store that exposes its public catalog (`/products.json`) — the vast majority. Password-protected stores or stores that disabled it return a clear error.

**Can I scrape one collection?**

Yes — paste the collection URL (`/collections/sale`); only that collection is read.

**Are prices in my currency?**

Prices are in the store's default currency, as the catalog publishes them.

**How do I track price changes?**

Schedule the Actor and compare `priceMin`/`compareAtPriceMax` per `id` between runs — or use the sale collection with `onlyAvailable`.

**What does a run cost?**

$1 per 1,000 products. The free plan's $5 a month covers about 5,000 products.

### Support

Questions, missing fields or a source that changed? Open an issue on the *Issues* tab or write to support@chorelet.app — problems are usually fixed within a day, and the Actor is checked every morning by an automated test run. If the Actor saved you time, a short review on its Store page helps other people find it.

# Actor input Schema

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

Shopify store home pages or collection URLs (`https://store.com/collections/sale` reads only that collection). Any product URL of the store also works.

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

Products are read in pages of 250.

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

Keep only products whose title, vendor, type, tags or description contain any of these (case-insensitive).

## `onlyAvailable` (type: `boolean`):

Skip products with no available variant.

## `includeDescription` (type: `boolean`):

Product description as text and HTML.

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

Off by default. Enable Apify proxies if a store blocks datacenter traffic.

## Actor input object example

```json
{
  "storeUrls": [
    "https://www.allbirds.com",
    "https://gymshark.com/collections/sale"
  ],
  "maxProductsPerStore": 5000,
  "keywords": [],
  "onlyAvailable": false,
  "includeDescription": true,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `products` (type: `string`):

All products — items of the default dataset. Use ?format=csv or xlsx on this URL for spreadsheets.

## `summary` (type: `string`):

No description

# 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://www.allbirds.com",
        "https://gymshark.com/collections/sale"
    ],
    "maxProductsPerStore": 5000,
    "keywords": [],
    "onlyAvailable": false,
    "includeDescription": true,
    "proxyConfiguration": {
        "useApifyProxy": false
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("chorelet/shopify-store-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 = {
    "storeUrls": [
        "https://www.allbirds.com",
        "https://gymshark.com/collections/sale",
    ],
    "maxProductsPerStore": 5000,
    "keywords": [],
    "onlyAvailable": False,
    "includeDescription": True,
    "proxyConfiguration": { "useApifyProxy": False },
}

# Run the Actor and wait for it to finish
run = client.actor("chorelet/shopify-store-products-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).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://www.allbirds.com",
    "https://gymshark.com/collections/sale"
  ],
  "maxProductsPerStore": 5000,
  "keywords": [],
  "onlyAvailable": false,
  "includeDescription": true,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}' |
apify call chorelet/shopify-store-products-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,chorelet/shopify-store-products-scraper"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

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