# Shopify Products Scraper — Catalog & Store Leads (`noahadler/shopify-products-store-leads`) Actor

Scrape any Shopify store catalog via public products.json: titles, prices, variants, images and vendors. Multi-store batch plus store summary for ecommerce leads and competitor research. No browser required on open stores.

- **URL**: https://apify.com/noahadler/shopify-products-store-leads.md
- **Developed by:** [Noah Adler](https://apify.com/noahadler) (community)
- **Categories:** E-commerce, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.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/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
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.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## 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.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## Shopify Products & Store Leads Scraper — Catalog Export

**Shopify products scraper** / **Shopify store leads API** to extract any public **Shopify store catalog**: product titles, prices, variants, images, vendors and product types — plus an optional **store summary** for ecommerce lead gen and competitor research.

Ideal if you need a **Shopify catalog export**, **Shopify products.json scraper**, multi-store **ecommerce leads**, or price monitoring across Shopify merchants.

> **For users**\
> Most Shopify stores expose `/products.json` **without proxy**.\
> If you get **403**, turn **Apify RESIDENTIAL** ON and retry.\
> Sites that are **not** Shopify (or hide the catalog) return 404 — that is expected.

**Why this Actor:** Multi-store batch · Public API (no Admin token) · Variants + summary · Collection filter · Ecommerce-ready schema

***

### Table of contents

1. [What this Actor does](#what-this-actor-does)
2. [What you get](#what-you-get)
3. [Features](#features)
4. [Input](#input)
5. [Output examples](#output-examples)
6. [Output fields](#output-fields)
7. [Quick start (API)](#quick-start-api)
8. [Use cases](#use-cases)
9. [Limitations](#limitations)
10. [FAQ](#faq)
11. [Keywords](#keywords)

***

### What this Actor does

| Step | Action |
|------|--------|
| 1 | Normalize each store URL / domain |
| 2 | Call public `GET /products.json` (or `/collections/{handle}/products.json`) |
| 3 | Paginate (`limit=250`, `page=N`) until `maxProducts` |
| 4 | Push product rows + optional `store_summary` |

***

### What you get

**Products**

- Title, handle, vendor, product type, tags
- Min / max price across variants
- Availability, image, product URL
- Optional nested `variants` (SKU, options, prices)

**Store summary**

- Product count scraped
- Top vendors & product types
- Price band for lead scoring

***

### Features

| Capability | Detail |
|------------|--------|
| **Any Shopify storefront** | Custom domain or `*.myshopify.com` |
| **Batch stores** | Multiple URLs in one run |
| **Collection filter** | Optional `collectionHandle` |
| **No Admin token** | Uses public storefront JSON |
| **Lead-friendly** | `store_summary` row per store |

***

### Input

| Field | Required | Description |
|-------|----------|-------------|
| `storeUrls` | Yes | Store URLs or domains |
| `collectionHandle` | No | e.g. `sale`, `mens` |
| `maxProducts` | No | Per store (default 100) |
| `includeVariants` | No | Default true |
| `includeStoreSummary` | No | Default true |
| `proxyConfiguration` | No | RESIDENTIAL if 403 |

#### Example

```json
{
  "storeUrls": ["https://allbirds.com", "gymshark.com"],
  "maxProducts": 50,
  "includeVariants": true,
  "includeStoreSummary": true
}
```

***

### Output examples

#### Product

```json
{
  "recordType": "product",
  "storeDomain": "allbirds.com",
  "productId": "1234567890",
  "handle": "wool-runners",
  "title": "Wool Runners",
  "vendor": "Allbirds",
  "priceMin": 98.0,
  "priceMax": 98.0,
  "available": true,
  "variantsCount": 8,
  "productUrl": "https://allbirds.com/products/wool-runners"
}
```

#### Store summary

```json
{
  "recordType": "store_summary",
  "storeDomain": "allbirds.com",
  "productCount": 50,
  "vendors": ["Allbirds"],
  "productTypes": ["Shoes", "Apparel"],
  "priceMin": 9.0,
  "priceMax": 168.0
}
```

***

### Output fields

| Type | Fields |
|------|--------|
| `product` | `productId`, `handle`, `title`, `vendor`, `productType`, `tags`, `priceMin`, `priceMax`, `available`, `variantsCount`, `imageUrl`, `productUrl`, `variants?` |
| `store_summary` | `productCount`, `vendors`, `productTypes`, `priceMin`, `priceMax` |

***

### Quick start (API)

```python
from apify_client import ApifyClient

client = ApifyClient("<YOUR_TOKEN>")
run = client.actor("YOUR_USERNAME/shopify-products-store-leads").call(
    run_input={
        "storeUrls": ["https://allbirds.com"],
        "maxProducts": 40,
        "includeStoreSummary": True,
    }
)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)
```

***

### Use cases

- Competitor catalog & price monitoring
- Ecommerce lead lists (store + assortiment size)
- Dropship / supplier product discovery
- Brand assortment audits across markets

***

### Limitations

- Only works on **Shopify** storefronts with public `products.json`.
- Password-protected / headless-custom stores may block the endpoint.
- Currency is often missing on public JSON (prices are store-default).
- Respect each merchant’s Terms of Service and robots policy.

***

### FAQ

**Is this the Admin API?**\
No — it uses the **public** storefront `products.json` (no access token).

**403 / blocked?**\
Enable Apify **RESIDENTIAL** proxy and retry.

**404?**\
Domain is likely not Shopify, or the catalog endpoint is disabled.

**One collection only?**\
Set `collectionHandle` (e.g. `bestsellers`).

***

### Keywords

shopify scraper, shopify products, shopify products.json, shopify store leads, shopify catalog export, ecommerce product scraper, shopify competitor research, shopify variants api

# Actor input Schema

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

Store homepage URLs or domains. Examples: https://allbirds.com, gymshark.com, brand.myshopify.com

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

If set, scrape /collections/{handle}/products.json instead of the full catalog. Example: mens, sale.

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

Maximum products to return per store (1–2000).

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

When true, each product row includes a variants array (sku, price, available, options).

## `includeStoreSummary` (type: `boolean`):

Append a store\_summary row with product count, price band and top vendors/types.

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

FOR USERS: most Shopify stores work without proxy. If you get 403/blocked, turn Apify Proxy ON and choose RESIDENTIAL. You do not install a proxy on your PC.

## Actor input object example

```json
{
  "storeUrls": [
    "https://allbirds.com"
  ],
  "maxProducts": 100,
  "includeVariants": true,
  "includeStoreSummary": true
}
```

# Actor output Schema

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

Catalog products and store lead summaries.

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

// Run the Actor and wait for it to finish
const run = await client.actor("noahadler/shopify-products-store-leads").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://allbirds.com"] }

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

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,noahadler/shopify-products-store-leads"
        }
    }
}
```

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/ZmfPwjX9rKtHwbjrD/builds/fK4NKRsO0d6b0EblN/openapi.json
