# Scrape Any Shopify Store for Product Research

**Use case:** 

Pull products, prices, variants (SKU, price, compare-at, availability), images, vendor, type and tags from any public Shopify store, no login or API key. Great 

## Input

```json
{
  "storeUrls": [
    "https://www.allbirds.com"
  ],
  "collectionHandles": [],
  "sortBy": "relevance",
  "maxProductsPerStore": 10,
  "includeVariants": true,
  "useProxy": false
}
```

## Output

```json
{
  "store_domain": {
    "label": "Store",
    "format": "text"
  },
  "title": {
    "label": "Product",
    "format": "text"
  },
  "vendor": {
    "label": "Vendor",
    "format": "text"
  },
  "product_type": {
    "label": "Type",
    "format": "text"
  },
  "min_price": {
    "label": "Min Price",
    "format": "text"
  },
  "max_price": {
    "label": "Max Price",
    "format": "text"
  },
  "available": {
    "label": "In Stock",
    "format": "boolean"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Shopify Store Scraper - Products, Prices & Variants](https://apify.com/thirdwatch/shopify-store-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/thirdwatch/shopify-store-scraper) to learn more, explore other use cases, and run it yourself.