Shopify Store Scraper — Products, Prices & Inventory avatar

Shopify Store Scraper — Products, Prices & Inventory

Pricing

$10.00 / 1,000 results

Go to Apify Store
Shopify Store Scraper — Products, Prices & Inventory

Shopify Store Scraper — Products, Prices & Inventory

Extract complete product catalogs from any Shopify store including prices, variants, inventory, images, and descriptions. Perfect for competitive analysis and dropshipping research.

Pricing

$10.00 / 1,000 results

Rating

0.0

(0)

Developer

Luan M.

Luan M.

Maintained by Community

Actor stats

2

Bookmarked

8

Total users

1

Monthly active users

15 days ago

Last modified

Categories

Share

Shopify Store Scraper

Scrape products from any Shopify store using public JSON endpoints. Extract products, variants, prices, images, inventory, and metadata — no API key required and no browser overhead.

Features

  • Scrape any Shopify store via public /products.json API
  • Extract all product variants with pricing, SKUs, and inventory status
  • Filter by vendor or tag
  • Supports subdirectory storefronts (e.g. https://example.com/shop)
  • Up to 10,000 products per run (250 per page)
  • Optional Apify Proxy support for high-volume scraping

Input

{
"storeUrl": "https://mystore.myshopify.com",
"maxResults": 500,
"vendor": "Nike",
"tag": "summer"
}
ParameterRequiredDefaultDescription
storeUrlURL of the Shopify store
maxResults250Max products to scrape (1–10,000)
vendorFilter by vendor/brand
tagFilter by product tag (exact match)
proxyConfigurationApify Proxy settings

Output

Each dataset item contains:

{
"id": 123456789,
"handle": "classic-tshirt",
"title": "Classic T-Shirt",
"description": "<p>Comfortable cotton tee…</p>",
"vendor": "Nike",
"productType": "T-Shirts",
"tags": ["summer", "new"],
"url": "https://mystore.myshopify.com/products/classic-tshirt",
"price": "29.99",
"compareAtPrice": "39.99",
"images": ["https://cdn.shopify.com/.../image.jpg"],
"variants": [
{
"id": 987654321,
"title": "Medium / Blue",
"price": "29.99",
"sku": "TSH-BLU-M",
"available": true,
"inventoryQuantity": 14
}
],
"createdAt": "2024-01-15T10:00:00-05:00",
"updatedAt": "2024-06-01T12:30:00-05:00"
}