# Export Shopify store product samples

**Use case:** 

Export a Shopify store's products - title, vendor, type, price, variants, images, and dates - as clean structured rows for analysis or product feeds.

## Input

```json
{
  "storeUrls": [
    "allbirds.com"
  ],
  "maxProductsPerStore": 100,
  "includeContacts": false,
  "includeProductRows": true
}
```

## Output

```json
{
  "recordType": {
    "label": "Record type"
  },
  "domain": {
    "label": "Domain"
  },
  "title": {
    "label": "Product"
  },
  "vendor": {
    "label": "Vendor"
  },
  "productType": {
    "label": "Type"
  },
  "price": {
    "label": "Price"
  },
  "variantCount": {
    "label": "Variant count"
  },
  "imageCount": {
    "label": "Image count"
  },
  "tags": {
    "label": "Tags"
  },
  "createdAt": {
    "label": "Created"
  },
  "updatedAt": {
    "label": "Updated at"
  },
  "url": {
    "label": "URL"
  }
}
```

## About this Actor

This example demonstrates how to use [Shopify Store Analyzer - Catalog, Contacts & Pricing](https://apify.com/webdata_labs/shopify-store-enricher) with a specific input configuration. Visit the [Actor detail page](https://apify.com/webdata_labs/shopify-store-enricher) to learn more, explore other use cases, and run it yourself.