# Vivino Wine Search Scraper

**Use case:** 

Scrape Vivino search listings into structured wine, rating, vintage, price, merchant, bottle, and region records.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.vivino.com/en/"
    }
  ],
  "maxItems": 10,
  "maxPages": 1,
  "includeOffers": true,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "wineName": {
    "label": "Wine"
  },
  "year": {
    "label": "Vintage"
  },
  "wineryName": {
    "label": "Winery"
  },
  "regionName": {
    "label": "Region"
  },
  "countryName": {
    "label": "Country"
  },
  "rating": {
    "label": "Rating"
  },
  "ratingsCount": {
    "label": "Ratings"
  },
  "price": {
    "label": "Price"
  },
  "currency": {
    "label": "Currency"
  },
  "merchantName": {
    "label": "Merchant"
  },
  "bottle": {
    "label": "Bottle"
  },
  "canonicalUrl": {
    "label": "Vivino URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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