Shopify Store Scraper avatar

Shopify Store Scraper

Pricing

from $2.00 / 1,000 product records

Go to Apify Store
Shopify Store Scraper

Shopify Store Scraper

Products, variants, prices, images and collections for any list of Shopify store domains, no contact data

Pricing

from $2.00 / 1,000 product records

Rating

0.0

(0)

Developer

Nick Randall

Nick Randall

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

a day ago

Last modified

Categories

Share

Get every product, variant, price and image from any Shopify store's public catalog, no login, no API key, no per-store setup fee that paid Shopify scraper Actors on the Store charge $3 to $10 per 1,000 results for.

Get clean, structured product data from any Shopify store's storefront as JSON, CSV or Excel, or call it as a tool from Claude, Cursor, ChatGPT or any MCP client. Pay only for the results you receive.

What you get

For every domain you list, every product currently in the store's catalog: title, handle, vendor, product type, tags, timestamps, a canonical product URL, every variant (price, compare-at price, SKU, availability, weight, inventory policy) and every image (source URL, alt text, dimensions). Pulled straight from Shopify's own public products.json storefront endpoint, the same data your browser gets when you load a collection page.

Every result is a flat record with stable field names, so it drops straight into a spreadsheet, a database or an AI agent's context.

Why use this instead of manual browsing or a browser-based scraper

  • No login, no API key, no app install on the target store: this reads the same public JSON Shopify already serves to any visitor's browser
  • No headless browser needed, so runs are fast and cheap compared to scrapers that render each product page
  • Full variant and pricing detail in one pass, not just what is visible on a collection grid
  • Results in JSON, CSV, Excel or via API, or piped into Zapier, Make, n8n and Google Sheets
  • Works as an MCP tool, so AI agents can pull competitor pricing or catalog data on demand

Input

FieldTypeDefaultMeaning
domainsarrayShopify store domains to scrape, e.g. allbirds.com or https://allbirds.com. Either form works; both are normalized to the same host.
maxResultsinteger100Cap on results saved. You are charged per result, so this caps your cost.

Example input:

{
"domains": ["allbirds.com", "gymshark.com"],
"maxResults": 100
}

Output

Example result:

{
"domain": "allbirds.com",
"id": 7218356060240,
"title": "Men's Strider Explore - Natural Black (Dark Grey Sole)",
"handle": "mens-strider-explore",
"url": "https://allbirds.com/products/mens-strider-explore",
"vendor": "Allbirds",
"productType": "Shoes",
"tags": ["allbirds::edition => classic", "allbirds::gender => mens", "allbirds::silhouette => runner", "loop::returnable => true", "shoprunner"],
"createdAt": "2025-09-10T12:47:47-07:00",
"updatedAt": "2026-09-24T15:50:10-07:00",
"publishedAt": "2026-08-26T10:22:14-07:00",
"variants": [
{ "id": 41334293889104, "title": "8", "price": "130.00", "compareAtPrice": null, "sku": "A11768M080", "available": false, "weight": null, "inventoryPolicy": null },
{ "id": 41334293921872, "title": "8.5", "price": "130.00", "compareAtPrice": null, "sku": "A11768M085", "available": false, "weight": null, "inventoryPolicy": null }
],
"images": [
{ "src": "https://cdn.shopify.com/s/files/1/1104/4168/files/A11768_25Q4_Strider-Explore-Natural-Black-Dark-Grey-Sole_PDP_LEFT.png?v=1759336475", "alt": null, "width": 4000, "height": 4000 }
],
"optionsSummary": "Size"
}

Sample rows from the same live run (25 products from allbirds.com at maxResults: 25):

domaintitlevendorvariants
allbirds.comFree Returns Coveragere:do2
allbirds.comMen's Strider Explore - Natural Black (Dark Grey Sole)Allbirds13
allbirds.comWomen's Dasher NZ - Blizzard/Deep Navy (Blizzard Sole)Allbirds13
allbirds.comMen's Merino Blend Sweatpant - True BlackAllbirds5

Field reference:

  • domain - the store's host, e.g. allbirds.com
  • id - Shopify's numeric product ID
  • title, handle - product title and URL slug
  • url - canonical product page URL, built from domain and handle
  • vendor, productType - as set by the store
  • tags - array of tags (split from Shopify's comma-separated tag string)
  • createdAt, updatedAt, publishedAt - ISO timestamps from the store
  • variants - array of { id, title, price, compareAtPrice, sku, available, weight, inventoryPolicy }
  • images - array of { src, alt, width, height }
  • optionsSummary - the product's option names joined together, e.g. "Size, Color"

Pricing

Pay per event. You are charged $2.00 per 1,000 results saved to the dataset, plus a fraction of a cent per run start. Nothing is charged for results you do not receive. Set "Max total charge per run" in the run options to cap spending on any run. When a run reaches your cap it stops cleanly and keeps everything it already saved.

Rough guide: 1,000 results cost $2.00 and take under two minutes.

Use it from an AI agent (MCP)

This Actor is available as an MCP tool through the Apify MCP server. Add it to your client, then ask the agent for the data in plain language.

Claude Desktop, Claude Code or Cursor (mcp.json / claude_desktop_config.json):

{
"mcpServers": {
"apify": {
"url": "https://mcp.apify.com/?actors=brightpath-data/shopify-store-scraper",
"headers": { "Authorization": "Bearer YOUR_APIFY_TOKEN" }
}
}
}

ChatGPT and other clients that support remote MCP servers: add https://mcp.apify.com/?actors=brightpath-data/shopify-store-scraper as a connector with your Apify token.

Example prompt once connected: "Pull every product and price from allbirds.com and gymshark.com so I can compare their shoe lineups."

Use it from code

curl -X POST "https://api.apify.com/v2/acts/brightpath-data~shopify-store-scraper/run-sync-get-dataset-items?token=YOUR_APIFY_TOKEN" \
-H "Content-Type: application/json" \
-d '{"domains":["allbirds.com","gymshark.com"],"maxResults":100}'

Python:

from apify_client import ApifyClient
client = ApifyClient("YOUR_APIFY_TOKEN")
run = client.actor("brightpath-data/shopify-store-scraper").call(run_input={"domains": ["allbirds.com", "gymshark.com"], "maxResults": 100})
items = client.dataset(run["defaultDatasetId"]).list_items().items

Limits and fair use

  • Up to 10,000 results per run, across as many domains as you list.
  • Works on essentially any live store built on Shopify that has not specifically blocked its public products.json endpoint. A small number of stores rate-limit or block this endpoint; if a domain's first page returns a 404 or 403, that domain is skipped (logged as a warning) and the run continues with the rest.
  • Requests are paced at least 500ms apart per the run, out of respect for stores that rate-limit bots.
  • Only products currently published to the storefront are returned; draft or unpublished products are not visible through this endpoint and are not included.

This Actor reads only Shopify's public, unauthenticated storefront products.json endpoint, the same catalog JSON a store already serves to any visitor's browser when its collection pages load. It collects public product catalog data only: no customer data, no contact information, no order or checkout data is ever touched or collected. No login, account, app installation or access control is bypassed. This Actor collects public, non-personal data only and does not bypass logins, paywalls or access controls. You are responsible for how you use the data.

Support

Found a problem or need a field added? Open an issue on the Actor's Issues tab. Fixes for broken runs are prioritized.