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

Point it at any Shopify store and get the full catalog: products, variants (size/colour/SKU), prices, compare-at prices, availability, images, tags, vendor and collections. No API key, no login, one record per product or per variant.

- **URL**: https://apify.com/flamboyant\_liner/shopify-store-products-scraper.md
- **Developed by:** [Khrystyna Skotte](https://apify.com/flamboyant_liner) (community)
- **Categories:** E-commerce, Lead generation, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.80 / 1,000 records

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/actors/running/actors-in-store.md#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 — any store URL → full catalog

Give it any Shopify store and get every product with every variant: prices, compare-at (sale) prices,
availability, SKUs, sizes and colours, images, tags, vendor and type. Works on the store's public
catalog, so there is **no API key, no login and no browser**.

### Input

| Field | Default | Notes |
|---|---|---|
| `storeUrls` | `["https://www.allbirds.com"]` | One or more stores; any page URL of the store is fine |
| `collection` | — | Restrict to a collection handle, e.g. `sale`, `new-arrivals` |
| `maxItems` | `10` | Products per store, up to the whole catalog |
| `oneRowPerVariant` | `false` | On: one record per variant with product fields repeated — ideal for price monitoring |
| `onlyAvailable` | `false` | Skip products with no purchasable variant |
| `proxyConfiguration` | Apify proxy | Residential helps with stores that sit behind Cloudflare |

### Output

```json
{
  "store": "https://www.allbirds.com",
  "productId": "6786064023632",
  "title": "Men's Tree Runners",
  "handle": "mens-tree-runners",
  "url": "https://www.allbirds.com/products/mens-tree-runners",
  "vendor": "Allbirds", "productType": "Shoes", "tags": ["mens", "runners"],
  "priceMin": 98, "priceMax": 98, "compareAtPriceMax": null,
  "available": true, "variantCount": 14,
  "variants": [{ "variantId": "40120364433488", "variantTitle": "Blizzard (Blizzard Sole) / 8", "sku": "TR1MBLZ080", "price": 98, "compareAtPrice": null, "available": true, "option1": "Blizzard (Blizzard Sole)", "option2": "8", "option3": null, "grams": 0 }],
  "options": [{ "name": "Color", "values": ["Blizzard"] }, { "name": "Size", "values": ["8", "9"] }],
  "images": ["https://cdn.shopify.com/s/files/…"], "imageCount": 6,
  "description": "Light, breezy, and made from eucalyptus tree fiber…",
  "createdAt": "2021-08-10T12:00:00-04:00", "updatedAt": "2026-09-05T10:20:00-04:00", "publishedAt": "2021-08-12T09:00:00-04:00",
  "scrapedAt": "2026-09-06T19:00:00.000Z"
}
```

### Use cases

Competitor price and assortment monitoring, catalog sync for marketplaces and affiliates, stock
tracking for restock alerts, dropshipping research, and building product feeds.

### Notes

- Some stores disable the public catalog (404) or block automated access (403); the run reports which.
- Prices are in the store's own currency, as strings converted to numbers; no conversion is applied.
- Catalogs paginate 250 products per call, so even 10,000-product stores take under a minute.

# Actor input Schema

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

One or more Shopify store URLs (any page of the store works).

## `collection` (type: `string`):

Only products in this collection, e.g. 'mens' or 'sale'. Leave empty for the whole catalog.

## `maxItems` (type: `integer`):

Maximum number of products to return per store.

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

Off: one record per product with variants nested. On: one record per variant (size/colour) with the product fields repeated — best for price monitoring and spreadsheets.

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

Skip products with no purchasable variant.

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

Optional. Most stores answer without a proxy; residential helps with stores behind Cloudflare.

## Actor input object example

```json
{
  "storeUrls": [
    "https://www.allbirds.com"
  ],
  "collection": "",
  "maxItems": 10,
  "oneRowPerVariant": false,
  "onlyAvailable": false,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `records` (type: `string`):

Dataset of scraped products (JSON).

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("flamboyant_liner/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 = {}

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

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,flamboyant_liner/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/9DT2y3V0WvuPNbba3/builds/fWANlVaJ5liyTClsM/openapi.json
