Shopify Store Scraper
Fetch a public Shopify collection page and normalize product titles, handles, URLs, prices, availability, and images without relying on the commonly blocked products.json feed.
Workspace
Configure
Inputs stay here while results become exportable artifacts.
Start from an example
Results
Preview, inspect, copy, or export the complete output.
Your result will become an artifact
Run the tool to inspect structured rows, raw JSON, execution details, and downloadable JSON, CSV, and Markdown files.
Overview
Fetch a public Shopify collection page and normalize product titles, handles, URLs, prices, availability, and images. The tool deliberately reads storefront HTML instead of the frequently rate-limited products.json endpoint, keeping ordinary runs on Better Fetch's low-cost one-credit path. Results can be inspected in the web workspace, exported as JSON or CSV, called through REST, or composed by an AI agent over MCP.
Last validated: Jul 13, 2026
Input
limitintegerdefault: 20Maximum products to return.
store_urlstring (uri)requiredShopify storefront base URL.
Output
countintegerrequiredNumber of records returned
productsobject[]requiredNormalized products records
source_urlstringrequiredFetched source URL
Examples
first-run
{
"limit": 3,
"store_url": "https://theme-dawn-demo.myshopify.com"
}Use cases
FAQ
What does Shopify Store Scraper return?
It returns normalized structured fields documented in the output schema, plus the fetched source URL and a record count for receipts and exports.
Does this tool store the retrieved output?
No. Better Fetch records privacy-safe run metadata for reliability and retention analysis, but the output payload itself is not stored by the workspace.
Use it anywhere
MCP (Claude, ChatGPT, Codex)
# After connecting https://betterfetch.co/api/mcp, ask your AI to:
1. Call search_tools for "Shopify Store Scraper"
2. Call run_tool with:
name: "shopify_store_scraper"
input: {"limit":3,"store_url":"https://theme-dawn-demo.myshopify.com"}REST
curl -sS -X POST "https://betterfetch.co/api/tools/shopify_store_scraper/run" \
-H "Authorization: Bearer bf_your_key_here" \
-H "Content-Type: application/json" \
-d '{"input": {"limit":3,"store_url":"https://theme-dawn-demo.myshopify.com"}}'Run locally
git clone https://github.com/better-fetch/tools/tree/main/tools/shopify-store-scraper && cd shopify-store-scraper && npm i
BETTER_FETCH_API_KEY=bf_your_key_here npx bf-tool run --input '{"limit":3,"store_url":"https://theme-dawn-demo.myshopify.com"}'