# Storenvy catalog scraper example

**Use case:** 

Extract a public Storenvy store catalog with product prices, variants, inventory, collections, images, and availability.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://storenvyou.storenvy.com"
    }
  ],
  "maxItems": 10,
  "includeInactive": false,
  "includeSoldOut": true
}
```

## Output

```json
{
  "productId": {
    "label": "Product ID",
    "format": "integer"
  },
  "storeId": {
    "label": "Store ID",
    "format": "integer"
  },
  "name": {
    "label": "Product",
    "format": "string"
  },
  "url": {
    "label": "Product URL",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "onSale": {
    "label": "On sale",
    "format": "boolean"
  },
  "soldOut": {
    "label": "Sold out",
    "format": "boolean"
  },
  "available": {
    "label": "Available",
    "format": "boolean"
  },
  "marketplaceCategory": {
    "label": "Category",
    "format": "string"
  },
  "collections": {
    "label": "Collections",
    "format": "array"
  },
  "variants": {
    "label": "Variants",
    "format": "array"
  },
  "imageUrls": {
    "label": "Images",
    "format": "array"
  },
  "store": {
    "label": "Store",
    "format": "object"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Storenvy Store Products Scraper](https://apify.com/automation-lab/storenvy-store-products-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/storenvy-store-products-scraper) to learn more, explore other use cases, and run it yourself.