# Shopify Best Sellers Catalog

**Use case:** 

Export a bounded public Shopify catalog sample for shopify best sellers catalog, including product URLs, prices, variants, availability, and image metadata...

## Input

```json
{
  "storeUrls": [
    {
      "url": "https://kith.com"
    }
  ],
  "maxProductsPerStore": 15,
  "includeVariants": false,
  "includeImages": true,
  "includeRawProduct": false,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "status": {
    "label": "Status",
    "format": "string"
  },
  "storeDomain": {
    "label": "Store domain",
    "format": "string"
  },
  "productId": {
    "label": "Product ID",
    "format": "integer"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "vendor": {
    "label": "Vendor",
    "format": "string"
  },
  "productType": {
    "label": "Product type",
    "format": "string"
  },
  "priceMin": {
    "label": "Min price",
    "format": "number"
  },
  "priceMax": {
    "label": "Max price",
    "format": "number"
  },
  "available": {
    "label": "Available",
    "format": "boolean"
  },
  "variantCount": {
    "label": "Variant count",
    "format": "integer"
  },
  "imageCount": {
    "label": "Image count",
    "format": "integer"
  },
  "url": {
    "label": "Product URL",
    "format": "string"
  },
  "errorMessage": {
    "label": "Error",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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