# Storenvy product extractor example

**Use case:** 

Extract one Storenvy product with SKU, variants, stock quantities, sale price, collections, store details, and image URLs.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://storenvyou.storenvy.com/products/34470496-harajuku-poached-backpack"
    }
  ],
  "maxItems": 1,
  "includeInactive": true,
  "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.