# Shopify Store Products Scraper (`mangudai/shopify-store-products-scraper`) Actor

Scrape any Shopify store's full product catalog from its public feed. Get prices, compare-at prices, variants, SKUs, stock status, images, tags and vendor. Paste a domain or collection URL, no login or API key needed. One row per product or per variant.

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

## Pricing

from $0.80 / 1,000 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 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/docs.md):

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

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.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/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 Store Products Scraper

Pull any Shopify store's product catalog into a clean dataset. Prices, compare-at prices, variants, SKUs, stock status, images, tags, vendor and product type, from the store's own public feed.

Paste a domain, get the catalog. No login, no API key, no cookies.

### What it does

Every Shopify storefront publishes its catalog at `/products.json`. This actor reads that feed, walks its pagination, adds the shop's currency and name from `/meta.json`, and writes one tidy row per product or per variant.

Because the data comes straight from the store's own JSON, it is complete and current, and it does not break when the theme changes.

### What you can do with it

- Track a competitor's prices and discounts day by day
- Watch stock levels on specific SKUs
- Build a product feed for a comparison site, a marketplace, or an AI agent
- Pull a supplier's catalog into your own store or spreadsheet
- Find which products a brand added or removed this week

### Input

| Field | What it does |
|---|---|
| `storeUrls` | Store home pages or `/collections/<handle>` URLs. A bare domain like `gymshark.com` works. |
| `collectionHandles` | Optional. Restrict every store to these collections. |
| `searchTerm` | Optional keyword filter across title, type, vendor and tags. |
| `outputMode` | `product` for one row per product, `variant` for one row per variant. |
| `maxProductsPerStore` | Stop after this many products per store. |
| `onlyAvailable` | Skip products where every variant is sold out. |
| `minPrice` / `maxPrice` | Price window in the store's own currency. |
| `includeVariants` / `includeImages` | Attach the full arrays to each product row. |
| `includeDescriptionHtml` | Keep the original `body_html` alongside the plain-text description. |
| `requestDelaySecs` | Pause between catalog pages. |
| `proxyConfiguration` | Apify Proxy, on by default. |

Minimal input:

```json
{
  "storeUrls": ["https://gymshark.com"],
  "maxProductsPerStore": 200
}
````

Price monitoring on one collection:

```json
{
  "storeUrls": ["https://colourpop.com/collections/best-sellers"],
  "outputMode": "variant",
  "onlyAvailable": true
}
```

### Output

One row per product:

```json
{
  "storeDomain": "gymshark.com",
  "storeName": "Gymshark US",
  "currency": "USD",
  "myshopifyDomain": "gymsharkusa.myshopify.com",
  "productId": 6806953590986,
  "title": "Gymshark Training Regular Fleece Joggers - Haze Pink",
  "handle": "gymshark-training-regular-fleece-joggers-pants-pink-aw26",
  "url": "https://gymshark.com/products/gymshark-training-regular-fleece-joggers-pants-pink-aw26",
  "vendor": "Gymshark",
  "productType": "Womens Pants",
  "tags": ["activewear", "joggers"],
  "description": "Simple & versatile for however you're training...",
  "price": 42.0,
  "minPrice": 42.0,
  "maxPrice": 42.0,
  "compareAtPrice": null,
  "onSale": false,
  "available": true,
  "variantsCount": 7,
  "availableVariantsCount": 7,
  "imagesCount": 5,
  "featuredImage": "https://cdn.shopify.com/s/files/...jpg",
  "options": ["Size"],
  "publishedAt": "2026-07-17T01:00:00-07:00",
  "updatedAt": "2026-07-18T23:12:10-07:00",
  "variants": [{ "variantId": 39797, "sku": "B7A4D-KDNB-S", "price": 42.0, "available": true }],
  "images": [{ "src": "https://cdn.shopify.com/...", "width": 1692, "height": 2018 }]
}
```

In variant mode each row is a single SKU with `variantId`, `sku`, `option1`, `option2`, `option3`, `price`, `compareAtPrice`, `discountPercent` and `available`, which is the shape you want for a price tracker.

### Notes

- Works on any store running Shopify. If a site is not Shopify, or the owner has switched the feed off, the run logs a warning for that store and moves on.
- Busy stores sometimes throttle requests. The actor retries with a fresh proxy IP, so leave Apify Proxy on.
- Prices come back in the store's own currency, reported in the `currency` field.
- Collection handles are the slug in a collection URL: `colourpop.com/collections/best-sellers` has the handle `best-sellers`.

### Pricing

Pay per event. You pay per product row returned, and nothing for platform usage.

# Actor input Schema

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

Shopify store home pages or collection URLs. A bare domain works too. Paste a /collections/<handle> URL to scrape only that collection.

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

Optional. Restrict every store to these collection handles, for example womens-leggings. Leave empty to scrape the whole catalog.

## `searchTerm` (type: `string`):

Optional. Keep only products whose title, type, vendor or tags contain this text.

## `outputMode` (type: `string`):

One row per product, or one row per variant for price and stock monitoring.

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

Stop after this many products from each store or collection.

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

Skip products where every variant is sold out.

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

Optional. Skip products cheaper than this, in the store's own currency.

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

Optional. Skip products more expensive than this.

## `includeVariants` (type: `boolean`):

Add the full variant list to each product row.

## `includeImages` (type: `boolean`):

Add the full image list to each product row.

## `includeDescriptionHtml` (type: `boolean`):

Keep the original body\_html next to the plain-text description.

## `requestDelaySecs` (type: `integer`):

Pause between catalog pages so stores are not hammered.

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

Apify Proxy keeps requests from being throttled by busy stores.

## Actor input object example

```json
{
  "storeUrls": [
    "https://gymshark.com",
    "https://colourpop.com"
  ],
  "collectionHandles": [],
  "outputMode": "product",
  "maxProductsPerStore": 100,
  "onlyAvailable": false,
  "includeVariants": true,
  "includeImages": true,
  "includeDescriptionHtml": false,
  "requestDelaySecs": 1,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `datasetUrl` (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://gymshark.com",
        "https://colourpop.com"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("mangudai/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://gymshark.com",
        "https://colourpop.com",
    ] }

# Run the Actor and wait for it to finish
run = client.actor("mangudai/shopify-store-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://gymshark.com",
    "https://colourpop.com"
  ]
}' |
apify call mangudai/shopify-store-products-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Shopify Store Products Scraper",
        "description": "Scrape any Shopify store's full product catalog from its public feed. Get prices, compare-at prices, variants, SKUs, stock status, images, tags and vendor. Paste a domain or collection URL, no login or API key needed. One row per product or per variant.",
        "version": "0.0",
        "x-build-id": "neKIIgTrMEReApc6l"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/mangudai~shopify-store-products-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-mangudai-shopify-store-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/mangudai~shopify-store-products-scraper/runs": {
            "post": {
                "operationId": "runs-sync-mangudai-shopify-store-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/mangudai~shopify-store-products-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-mangudai-shopify-store-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",
                "properties": {
                    "storeUrls": {
                        "title": "Store URLs",
                        "type": "array",
                        "description": "Shopify store home pages or collection URLs. A bare domain works too. Paste a /collections/<handle> URL to scrape only that collection.",
                        "default": [
                            "https://gymshark.com",
                            "https://colourpop.com"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "collectionHandles": {
                        "title": "Collection handles",
                        "type": "array",
                        "description": "Optional. Restrict every store to these collection handles, for example womens-leggings. Leave empty to scrape the whole catalog.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "searchTerm": {
                        "title": "Keyword filter",
                        "type": "string",
                        "description": "Optional. Keep only products whose title, type, vendor or tags contain this text."
                    },
                    "outputMode": {
                        "title": "Output mode",
                        "enum": [
                            "product",
                            "variant"
                        ],
                        "type": "string",
                        "description": "One row per product, or one row per variant for price and stock monitoring.",
                        "default": "product"
                    },
                    "maxProductsPerStore": {
                        "title": "Max products per store",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Stop after this many products from each store or collection.",
                        "default": 100
                    },
                    "onlyAvailable": {
                        "title": "Only products in stock",
                        "type": "boolean",
                        "description": "Skip products where every variant is sold out.",
                        "default": false
                    },
                    "minPrice": {
                        "title": "Minimum price",
                        "type": "integer",
                        "description": "Optional. Skip products cheaper than this, in the store's own currency."
                    },
                    "maxPrice": {
                        "title": "Maximum price",
                        "type": "integer",
                        "description": "Optional. Skip products more expensive than this."
                    },
                    "includeVariants": {
                        "title": "Include variants array",
                        "type": "boolean",
                        "description": "Add the full variant list to each product row.",
                        "default": true
                    },
                    "includeImages": {
                        "title": "Include images array",
                        "type": "boolean",
                        "description": "Add the full image list to each product row.",
                        "default": true
                    },
                    "includeDescriptionHtml": {
                        "title": "Include raw HTML description",
                        "type": "boolean",
                        "description": "Keep the original body_html next to the plain-text description.",
                        "default": false
                    },
                    "requestDelaySecs": {
                        "title": "Delay between pages (seconds)",
                        "type": "integer",
                        "description": "Pause between catalog pages so stores are not hammered.",
                        "default": 1
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Apify Proxy keeps requests from being throttled by busy stores.",
                        "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
