# Shopify Products Scraper: Prices, Variants & Catalog API (`f0rty7even/shopify-products-scraper`) Actor

Scrape any Shopify store's full product catalog via the public JSON API: titles, prices, variants, SKUs, images, tags, and stock. Filter across many stores at once. No login, no anti-bot.

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

## Pricing

from $1.00 / 1,000 product scrapeds

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 a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use 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: Prices, Variants & Catalog API

**Export any Shopify store's full product catalog into clean, structured data.** This **Shopify scraper** pulls every product from a store's public JSON API and returns titles, prices, variants, SKUs, images, tags, vendor, product type, and in-stock status, normalized into one tidy schema. Point it at one store or many, filter by price, vendor, type, or tag, and get exactly the products you care about in a single run.

No login, no API key, no anti-bot workarounds. Just fast, clean product data.

### Why this actor

- **Whole catalog in one run**: paginates the store's public `products.json` and returns every product, not just the first page.
- **Many stores at once**: pass a list of stores and get one unified dataset across all of them.
- **Real filtering**: keep only what matches your price range, vendor, product type, tag, or in-stock status.
- **Variant and SKU level detail**: every size/color variant with its own price, compare-at price, SKU, and availability. Flip on "one item per variant" for SKU-level price monitoring.
- **Currency detected for you**: the public JSON omits currency, so this actor sniffs it from the storefront and adds it to every record.
- **Honest billing**: you are charged per product returned. Stores that block the endpoint or are not Shopify cost you nothing.

### Use cases

- **Competitor price monitoring**: track a rival store's prices, discounts, and new arrivals on a schedule.
- **Dropshipping and reselling**: pull supplier catalogs with variants and stock into your own system.
- **Market and pricing research**: compare pricing and assortment across many stores in a niche.
- **Catalog and feed building**: seed a marketplace, comparison site, or product feed from real listings.
- **AI and LLM data**: structured product records for recommendation, search, and analytics pipelines.

### Input

| Field | Description |
|---|---|
| `storeUrls` | One or more Shopify store URLs or domains (e.g. `https://www.allbirds.com` or `allbirds.com`). Paste a collection URL to scrape just that collection. |
| `collectionHandles` | Optional. Limit each store to specific collections by handle (e.g. `mens`, `sale`). |
| `minPrice` / `maxPrice` | Optional. Keep products with a variant in this price range (store currency units). |
| `vendor` | Optional. Keep only products from this vendor/brand (case-insensitive contains). |
| `productType` | Optional. Keep only products of this type (case-insensitive contains). |
| `tag` | Optional. Keep only products carrying this tag. |
| `availableOnly` | Keep only products with at least one in-stock variant. |
| `oneItemPerVariant` | Emit one item per variant (SKU) instead of per product. Bills per variant. |
| `includeBodyText` | Include the product description as plain text. |
| `maxProductsPerStore` | Cap on products per store (main cost lever). |

### Output

Each product becomes one dataset item (or one per variant when `oneItemPerVariant` is on):

```json
{
  "store": "www.allbirds.com",
  "productId": 6606462222404,
  "title": "Men's Cruiser",
  "handle": "mens-cruiser-shadow-blue",
  "url": "https://www.allbirds.com/products/mens-cruiser-shadow-blue",
  "vendor": "Allbirds",
  "productType": "Shoes",
  "tags": ["cruiser", "mens"],
  "currency": "USD",
  "price": 105.0,
  "priceMax": 105.0,
  "available": true,
  "variantsCount": 13,
  "featuredImage": "https://cdn.shopify.com/....jpg",
  "images": ["https://cdn.shopify.com/....jpg"],
  "variants": [
    {
      "variantId": 41990816759888,
      "title": "8",
      "sku": "A12856M080",
      "price": 105.0,
      "compareAtPrice": null,
      "available": true,
      "options": ["8"]
    }
  ],
  "createdAt": "2026-01-10T09:00:00-05:00",
  "updatedAt": "2026-07-01T12:00:00-04:00",
  "publishedAt": "2026-01-11T09:00:00-05:00"
}
````

### Pricing

Pay per result: you are charged **per product returned** (or per variant when "one item per variant" is on). There is no monthly fee, and no charge for stores that block the endpoint, are not Shopify, or return nothing.

### Notes

- **Public data only.** This actor reads the storefront's own public `products.json`, the same data any shopper's browser can load. It does not access orders, customers, inventory counts, or anything behind the store admin.
- **Stock is a boolean.** The public endpoint exposes whether a variant is available, not exact inventory quantities (those require the store's private Admin API).
- **Coverage.** Most Shopify stores expose `products.json`. A minority sit behind bot protection or disable it; those return an error item and are not billed.

# Actor input Schema

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

One or more Shopify store URLs or domains (e.g. https://www.allbirds.com or allbirds.com). You can also paste a collection URL (e.g. store.com/collections/sale) to scrape just that collection.

## `collectionHandles` (type: `array`):

Limit each store to specific collections by handle (e.g. mens, sale, new-arrivals). Leave empty to scrape the whole catalog.

## `minPrice` (type: `integer`):

Keep only products with at least one variant priced at or above this (in the store's own currency units). Leave empty for no minimum.

## `maxPrice` (type: `integer`):

Keep only products with at least one variant priced at or below this. Leave empty for no maximum.

## `vendor` (type: `string`):

Keep only products from this vendor/brand (case-insensitive contains match). Leave empty for all.

## `productType` (type: `string`):

Keep only products of this product\_type (case-insensitive contains match), e.g. Shoes, T-Shirts. Leave empty for all.

## `tag` (type: `string`):

Keep only products carrying this tag (case-insensitive exact match). Leave empty for all.

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

Keep only products that have at least one available (in-stock) variant.

## `oneItemPerVariant` (type: `boolean`):

Emit one dataset item per variant (SKU) instead of one per product. Useful for price/SKU-level monitoring. Note: this bills per variant.

## `includeBodyText` (type: `boolean`):

Include the product description as plain text (HTML stripped). Off by default to keep records small.

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

Cap on products scraped per store (main cost lever). Applies before the one-item-per-variant expansion.

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

Proxy used to reach the stores. The default rotating datacenter proxy is included on all plans and works for most stores. If a specific store blocks datacenter IPs, switch this to Residential for the best coverage.

## Actor input object example

```json
{
  "storeUrls": [
    "https://www.allbirds.com",
    "gymshark.com"
  ],
  "collectionHandles": [],
  "availableOnly": false,
  "oneItemPerVariant": false,
  "includeBodyText": false,
  "maxProductsPerStore": 1000,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

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

One normalized product per item (or one per variant if enabled). Export as JSON, JSONL, CSV, or Excel.

# 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"
    ],
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

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

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

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Shopify Products Scraper: Prices, Variants & Catalog API",
        "description": "Scrape any Shopify store's full product catalog via the public JSON API: titles, prices, variants, SKUs, images, tags, and stock. Filter across many stores at once. No login, no anti-bot.",
        "version": "0.1",
        "x-build-id": "uuJIitLMJdq70Uiw6"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/f0rty7even~shopify-products-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-f0rty7even-shopify-products-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/f0rty7even~shopify-products-scraper/runs": {
            "post": {
                "operationId": "runs-sync-f0rty7even-shopify-products-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/f0rty7even~shopify-products-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-f0rty7even-shopify-products-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "storeUrls"
                ],
                "properties": {
                    "storeUrls": {
                        "title": "Shopify store URLs",
                        "type": "array",
                        "description": "One or more Shopify store URLs or domains (e.g. https://www.allbirds.com or allbirds.com). You can also paste a collection URL (e.g. store.com/collections/sale) to scrape just that collection.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "collectionHandles": {
                        "title": "Collection handles (optional)",
                        "type": "array",
                        "description": "Limit each store to specific collections by handle (e.g. mens, sale, new-arrivals). Leave empty to scrape the whole catalog.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "minPrice": {
                        "title": "Min price",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Keep only products with at least one variant priced at or above this (in the store's own currency units). Leave empty for no minimum."
                    },
                    "maxPrice": {
                        "title": "Max price",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Keep only products with at least one variant priced at or below this. Leave empty for no maximum."
                    },
                    "vendor": {
                        "title": "Vendor filter",
                        "type": "string",
                        "description": "Keep only products from this vendor/brand (case-insensitive contains match). Leave empty for all."
                    },
                    "productType": {
                        "title": "Product type filter",
                        "type": "string",
                        "description": "Keep only products of this product_type (case-insensitive contains match), e.g. Shoes, T-Shirts. Leave empty for all."
                    },
                    "tag": {
                        "title": "Tag filter",
                        "type": "string",
                        "description": "Keep only products carrying this tag (case-insensitive exact match). Leave empty for all."
                    },
                    "availableOnly": {
                        "title": "In-stock only",
                        "type": "boolean",
                        "description": "Keep only products that have at least one available (in-stock) variant.",
                        "default": false
                    },
                    "oneItemPerVariant": {
                        "title": "One item per variant",
                        "type": "boolean",
                        "description": "Emit one dataset item per variant (SKU) instead of one per product. Useful for price/SKU-level monitoring. Note: this bills per variant.",
                        "default": false
                    },
                    "includeBodyText": {
                        "title": "Include description text",
                        "type": "boolean",
                        "description": "Include the product description as plain text (HTML stripped). Off by default to keep records small.",
                        "default": false
                    },
                    "maxProductsPerStore": {
                        "title": "Max products per store",
                        "minimum": 1,
                        "maximum": 200000,
                        "type": "integer",
                        "description": "Cap on products scraped per store (main cost lever). Applies before the one-item-per-variant expansion.",
                        "default": 1000
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Proxy used to reach the stores. The default rotating datacenter proxy is included on all plans and works for most stores. If a specific store blocks datacenter IPs, switch this to Residential for the best coverage.",
                        "default": {
                            "useApifyProxy": true
                        }
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
