Shopify Store Scraper — Any Store, 18 Fields, No API Key avatar

Shopify Store Scraper — Any Store, 18 Fields, No API Key

Pricing

from $1.20 / 1,000 product scrapeds

Go to Apify Store
Shopify Store Scraper — Any Store, 18 Fields, No API Key

Shopify Store Scraper — Any Store, 18 Fields, No API Key

Scrape the full product catalogue of any Shopify store — title, vendor, type, tags, variants, price range, SKUs, stock and images. Uses each store's public products feed: no login, no API key, no browser. Competitor and dropshipping research. Use it as an MCP server in Claude, ChatGPT & AI agents.

Pricing

from $1.20 / 1,000 product scrapeds

Rating

0.0

(0)

Developer

The Mine Works

The Mine Works

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

2 days ago

Last modified

Share

Shopify Store Scraper: Products, Prices & SKUs

Scrape the full product catalogue of any Shopify store — title, vendor, type, tags, variants, price range, SKUs, stock and images. Uses each store's public products feed: no login, no API key, no browser. Competitor and dropshipping research. Use it as an MCP server in Claude, ChatGPT & AI agents.

⚡ Part of a 74-scraper suite with 8,800+ runs · no login, no cookies, no ban risk.

💸 You are only charged for delivered results — empty searches, failed pages and duplicates are never billed.

What it does

Every Shopify store exposes its full catalogue as public structured JSON — it is how the storefront itself works. This actor reads that surface directly, so it needs no API key, no app install and no permission from the store owner, and it is fast and cheap because there is no browser involved.

Give it one or more store domains. It returns one record per product: product id, store domain, title, handle, vendor, product type, tags, published and updated timestamps, variant count, the minimum and maximum price across variants, an in-stock boolean, and the full SKU list.

Input

FieldTypeRequiredDefaultDescription
storeDomainsarrayyes["allbirds.com"]Shopify store domains, e.g. allbirds.com. Works on any Shopify-hosted storefront.
maxProductsPerStoreintegerno10Maximum products to return per store.

Example input

{
"storeDomains": [
"allbirds.com"
],
"maxProductsPerStore": 10
}

Output

One record per product. Field list and example below are taken from a real run, not a mock-up.

FieldTypeExample
product_idstring"7292464955472"
store_domainstring"allbirds.com"
titlestring"Men's Cruiser - Shadow Blue (Natural White…
handlestring"mens-cruiser-shadow-blue-natural-white-sole"
vendorstring"Allbirds"
product_typestring"Shoes"
tagsarray["allbirds::cfId => color-8d8c461eb0f65396c…
published_atstring"2026-07-08T11:32:23-07:00"
updated_atstring"2026-07-27T01:17:05-07:00"
variant_countnumber13
price_minnumber105
price_maxnumber105
in_stockbooleantrue
skusarray["A12856M080", "A12856M085", "A12856M090", …
imagestring"https://cdn.shopify.com/s/files/1/1104/416…
image_countnumber5
urlstring"https://allbirds.com/products/mens-cruiser…
scraped_atstring"2026-07-27T08:17:10.468Z"

Example output

{
"product_id": "7292464955472",
"store_domain": "allbirds.com",
"title": "Men's Cruiser - Shadow Blue (Natural White Sole)",
"handle": "mens-cruiser-shadow-blue-natural-white-sole",
"vendor": "Allbirds",
"product_type": "Shoes",
"tags": [
"allbirds::cfId => color-8d8c461eb0f65396c57fcd7467def939",
"DNAM BRANDS",
"EC STOCK"
],
"published_at": "2026-07-08T11:32:23-07:00",
"updated_at": "2026-07-27T01:17:05-07:00",
"variant_count": 13,
"price_min": 105,
"price_max": 105,
"in_stock": true,
"skus": [
"A12856M080",
"A12856M085",
"A12856M090",
"A12856M095",
"A12856M100",
"A12856M105",
"A12856M110",
"A12856M115",
"A12856M120",
"A12856M125",
"A12856M130",
"A12856M140",
"A12856M150"
],
"image": "https://cdn.shopify.com/s/files/1/1104/4168/files/All-birds_0010.png?v=1783535519",
"image_count": 5,
"url": "https://allbirds.com/products/mens-cruiser-shadow-blue-natural-white-sole",
"scraped_at": "2026-07-27T08:17:10.468Z"
}

Use cases

  • Competitor catalogue monitoring — track a rival's full range, and diff runs to catch new launches and discontinuations.
  • Price trackingprice_min and price_max per product make repricing and undercutting analysis a direct comparison.
  • Stock-out monitoring — the in_stock boolean across runs shows which lines actually sell through.
  • Dropshipping and sourcing research — find which vendors and product types a successful store carries.
  • Brand and MAP compliance — check that resellers are honouring agreed pricing.
  • Market-entry sizing — catalogue breadth and price banding across a set of stores maps a category quickly.

FAQ

Does this work on any Shopify store?

Any store that leaves its public product surface enabled, which is the default. A minority of stores disable it; those return no products rather than failing the run.

Do I need permission or an API key?

No key and no app install. The actor reads only what the storefront already serves publicly to every visitor.

How do I know a site is on Shopify?

Pass the domain and see. Non-Shopify domains simply return no products and are not billed.

Are variants included individually?

You get variant_count, the full skus array, and the price range across variants. Per-variant rows are deliberately not emitted, because that would multiply your bill several times over for data most users aggregate straight back down.

Is inventory quantity available?

No. Shopify's public surface exposes availability as a boolean, not a count, so in_stock is what can honestly be returned.

Billing

Pay per event: one product-scraped event per delivered record, charged only after the record is validated and stored. Empty results, blocked pages and duplicates are never charged. Store discounts apply automatically on paid Apify plans.

Use in Claude, ChatGPT & any MCP agent

This actor runs as an MCP server, so an AI agent can call it directly:

https://mcp.apify.com/?tools=themineworks/shopify-store-scraper
from apify_client import ApifyClient
client = ApifyClient("YOUR_APIFY_TOKEN")
run = client.actor("themineworks/shopify-store-scraper").call(run_input={"storeDomains": ["allbirds.com"], "maxProductsPerStore": 10})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item)

This actor collects only publicly available information — the same data any visitor can see without logging in. It does not access private or authenticated areas, does not attempt to bypass paywalls, and collects no personal data beyond what the source already publishes openly. You are responsible for using the output in line with the source site's terms and with the data protection law that applies to you.

MIT © The Mine Works