# Zalando Austria Cap Search Scraper

**Use case:** 

Search Zalando Austria for men's caps and extract current product prices, currencies, size availability, images, and product URLs.

## Input

```json
{
  "query": "cap",
  "domain": "zalando.at",
  "audience": "men",
  "startUrls": [
    {
      "url": "https://www.zalando.co.uk/men/?q=running+shoes"
    }
  ],
  "maxItems": 5,
  "includeReviews": false,
  "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.