# Export a Shopify store's full product catalog to CSV

**Use case:** 

Export any Shopify store's full product catalog - titles, prices, SKUs, variants, images, stock. For competitor research. No API key. CSV/Excel.

## Input

```json
{
  "storeUrls": [
    "https://www.allbirds.com"
  ],
  "maxProducts": 0,
  "oneRowPerVariant": false
}
```

## Output

```json
{
  "store": {
    "label": "Store",
    "format": "text"
  },
  "title": {
    "label": "Product",
    "format": "text"
  },
  "vendor": {
    "label": "Vendor",
    "format": "text"
  },
  "product_type": {
    "label": "Type",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "available": {
    "label": "Available",
    "format": "boolean"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "image": {
    "label": "Image",
    "format": "image"
  }
}
```

## About this Actor

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