# Zalando Product Reviews and Availability Scraper

**Use case:** 

Extract a Zalando UK product's current price and size availability, then collect its public review ratings, text, dates, and verified status.

## Input

```json
{
  "query": "running shoes",
  "domain": "zalando.co.uk",
  "audience": "men",
  "startUrls": [
    {
      "url": "https://www.zalando.co.uk/nike-sportswear-club-unisex-cap-off-white-ni154b02i-a11.html"
    }
  ],
  "maxItems": 1,
  "includeReviews": true,
  "maxReviewsPerProduct": 20
}
```

## Output

```json
{
  "sku": {
    "label": "SKU",
    "format": "string"
  },
  "brand": {
    "label": "Brand",
    "format": "string"
  },
  "name": {
    "label": "Product",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "availability": {
    "label": "Availability",
    "format": "string"
  },
  "sourceDomain": {
    "label": "Storefront",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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