# Shopify Products Scraper — Full Catalog & Prices, No API Key (`jamhimself/shopify-products-scraper`) Actor

Scrape any Shopify store's full product catalog to clean JSON — no API key, no login. Get title, vendor, type, tags, variants, SKUs, prices, compare-at prices, stock, and images. Bulk, pay per product.

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

## Pricing

$4.00 / 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

## Shopify Products Scraper — Full Catalog & Prices, No API Key

Scrape **any Shopify store's entire product catalog** into clean JSON — no app install, no API key, no login. Point it at a store URL and get every product with title, vendor, type, tags, variants (SKU, price, compare-at price, stock), images, and direct links.

Built for reliability: hits Shopify's product feed directly and falls back to a residential engine for stores behind bot protection. Health-monitored daily. Output is structured for price monitoring, catalog sync, and LLM/RAG pipelines.

### ⚡ Quick start

Paste this into the Actor's **Input** (JSON view) and hit **Start**:

```json
{
  "storeUrls": ["https://www.allbirds.com"],
  "maxProducts": 250
}
```

Each result row looks like:

```json
{
  "id": 6789012345678,
  "handle": "mens-cruiser-shadow-blue",
  "title": "Men's Cruiser - Shadow Blue",
  "vendor": "Allbirds",
  "productType": "Shoes",
  "tags": ["mens", "cruiser", "wool"],
  "priceMin": 105.00,
  "priceMax": 105.00,
  "variantsCount": 13,
  "variants": [
    { "id": 40012345678, "title": "8", "sku": "AB-CR-SB-08", "price": 105.00, "compareAtPrice": null, "available": true, "option1": "8" }
  ],
  "image": "https://cdn.shopify.com/s/files/1/.../cruiser.jpg",
  "imagesCount": 6,
  "url": "https://www.allbirds.com/products/mens-cruiser-shadow-blue"
}
```

Or run it from the API:

```
POST https://api.apify.com/v2/acts/jamhimself~shopify-products-scraper/run-sync-get-dataset-items?token=YOUR_APIFY_TOKEN
```

### Input options

| Field | Type | Description |
|---|---|---|
| `storeUrls` | array (required) | One or more Shopify store URLs (e.g. `https://www.allbirds.com`) |
| `maxProducts` | integer | Max products per store (default 250) |

Works on any Shopify-powered store — you don't need to know if a site uses Shopify; if it does, this returns its catalog.

### Output fields

Every row includes: `id`, `handle`, `title`, `vendor`, `productType`, `tags`, `publishedAt`/`createdAt`/`updatedAt`, `priceMin`/`priceMax`, `variantsCount`, `variants` (each with `sku`, `price`, `compareAtPrice`, `available`, options), `image`, `imagesCount`, `url`.

### Use cases

- **Price & catalog monitoring** — track a competitor's full catalog, prices, and stock over time.
- **Dropshipping & sourcing** — export product data with SKUs and variants.
- **Market research** — analyze assortment, vendors, and price bands across stores.
- **AI agents & RAG** — feed structured product rows into agent pipelines (this Actor is agent-payable).

***

Found an issue or need another field? **Open an issue on this Actor** — it's actively maintained and issues get fixed fast. If this Actor saves you time, a ⭐ review helps others find it.

# Actor input Schema

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

One or more Shopify store URLs, e.g. "https://www.allbirds.com". Works on any Shopify-powered store.

## `maxProducts` (type: `integer`):

Maximum products to return per store.

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

Most Shopify stores serve products.json openly; stores behind Cloudflare/bot protection need residential proxies.

## Actor input object example

```json
{
  "storeUrls": [
    "https://www.allbirds.com"
  ],
  "maxProducts": 250,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

# Actor output Schema

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

One row per product: title, vendor, type, tags, price range, variants (SKU/price/stock), images, URL.

# 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,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "US"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("jamhimself/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,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "US",
    },
}

# Run the Actor and wait for it to finish
run = client.actor("jamhimself/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,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}' |
apify call jamhimself/shopify-products-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/vKidcwfUyTWmXIJ7i/builds/2TmJDBd5UeA80DS9n/openapi.json
