# Shopify Store Products Scraper: Full Catalog, Prices, Stock (`scrapemint/shopify-store-products-scraper`) Actor

Scrape any Shopify store's full product catalog: titles, vendors, tags, variants with price, SKU, and live availability, and image URLs. Official public JSON endpoint, no browser, no API key. Pay per product.

- **URL**: https://apify.com/scrapemint/shopify-store-products-scraper.md
- **Developed by:** [Ken M](https://apify.com/scrapemint) (community)
- **Categories:** E-commerce, Marketing
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: 5.00 out of 5 stars

## Pricing

$3.00 / 1,000 shopify product rows

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 Store Products Scraper: Full Catalog, Prices, Stock

Turn any Shopify store into structured product data. Give this Actor store domains and it returns the full catalog (or a single collection) as clean JSON rows: title, vendor, product type, tags, price range, live availability, every variant with SKU and price, image URLs, and created/updated timestamps. It reads Shopify's official public catalog endpoint, so there is no browser, no proxy, no API key, and no login.

Built for ecommerce operators watching competitors, dropshippers researching catalogs, agencies auditing clients, and anyone who needs Shopify product data on a schedule. Run it daily against the same stores and diff prices and stock.

### What you get

One row per product (or per variant with `oneRowPerVariant`), with:

- `title`, `handle`, `url`, `vendor`, `productType`, `tags`
- `priceMin` / `priceMax` and `available` (true if any variant is in stock)
- `variants` (id, title, SKU, price, compare-at price, availability, weight)
- `images` (URLs), `options` (sizes, colors)
- `publishedAt`, `createdAt`, `updatedAt`, `store`, `scrapedAt`

### Input

- `storeUrls` (domains or URLs, up to 100 stores per run)
- `collectionHandle` (optional: scrape one collection instead of the whole catalog)
- `maxProductsPerStore` (default 50, up to 5000)
- `oneRowPerVariant` (each size/color as its own row)
- `includeImages` (default true)

### Example input

```json
{
  "storeUrls": ["gymshark.com", "allbirds.com"],
  "maxProductsPerStore": 100,
  "oneRowPerVariant": false
}
```

### Example output

```json
{
  "store": "https://gymshark.com",
  "productId": 7523118678235,
  "title": "Blush Seamless Shorts",
  "handle": "blush-seamless-shorts",
  "url": "https://gymshark.com/products/blush-seamless-shorts",
  "vendor": "Gymshark",
  "productType": "Shorts",
  "tags": ["new-arrivals", "seamless"],
  "priceMin": 40.0,
  "priceMax": 40.0,
  "available": true,
  "variantCount": 5,
  "variants": [
    { "id": 42371, "title": "XS", "sku": "GS-BSS-XS", "price": 40.0, "compareAtPrice": null, "available": true }
  ],
  "images": ["https://cdn.shopify.com/s/files/1/blush-shorts.jpg"],
  "publishedAt": "2026-06-28T09:00:00-04:00"
}
```

### Uses

- Monitor competitor prices, markdowns, and stock daily with a scheduled run
- Spot a rival's new product launches the day they publish
- Research dropshipping niches: full catalogs with prices and vendors in one run
- Feed product data into repricing tools, dashboards, or spreadsheets
- Audit a client's catalog for missing SKUs, images, or tags

### Pricing

Pay per row. Stores that block or disable the catalog endpoint (a small minority) return no rows and cost nothing. The first 2 rows of every run are free so you can validate output before you scale up.

### Notes

- Works on any store running Shopify, on any domain (the Actor detects the catalog endpoint, not the domain name).
- Reads the same public endpoint the store's own theme uses; inventory counts beyond in-stock/sold-out are not exposed there.

# Actor input Schema

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

Shopify storefronts to scrape, as domains or URLs. Example: gymshark.com or https://www.allbirds.com

## `collectionHandle` (type: `string`):

Scrape only one collection instead of the whole catalog, e.g. new-arrivals (the part after /collections/ in the store URL).

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

Cap on products returned per store. Controls total cost.

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

Return each variant (size, color) as its own row with the parent product's fields attached. Default is one row per product with variants nested.

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

Attach product image URLs to each row.

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

Optional. Shopify's products.json endpoint works without any proxy from most environments.

## Actor input object example

```json
{
  "storeUrls": [
    "gymshark.com"
  ],
  "collectionHandle": "",
  "maxProductsPerStore": 50,
  "oneRowPerVariant": false,
  "includeImages": true,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# 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": [
        "gymshark.com"
    ]
};

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

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

```

## MCP server setup

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

```

## OpenAPI specification

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