# Italian wines: ratings & prices on Vivino

**Use case:** 

Scrape Italian wines from Vivino with wine name, rating, ratings count, price, region and winery. Public data, no login, export to CSV.

## Input

```json
{
  "wineTypes": [
    "red"
  ],
  "wineCountries": [
    "it"
  ],
  "sortBy": "topRated",
  "marketCountry": "US",
  "currency": "USD",
  "includeWineDetails": true,
  "includeReviews": false,
  "maxReviewsPerWine": 10,
  "reviewsLanguage": "any",
  "includeAllVintages": false,
  "includeMedianPrice": true,
  "maxResults": 100,
  "maxPagesPerSearch": 10,
  "deduplicateWines": true,
  "monitorMode": false,
  "monitorKey": "default",
  "maxConcurrency": 4,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "name": {
    "label": "Wine",
    "format": "text"
  },
  "year": {
    "label": "Year",
    "format": "text"
  },
  "wineType": {
    "label": "Type",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "ratingsCount": {
    "label": "Ratings",
    "format": "number"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "medianPrice": {
    "label": "Median",
    "format": "number"
  },
  "currency": {
    "label": "Cur",
    "format": "text"
  },
  "regionName": {
    "label": "Region",
    "format": "text"
  },
  "countryName": {
    "label": "Country",
    "format": "text"
  },
  "wineryName": {
    "label": "Winery",
    "format": "text"
  },
  "alcohol": {
    "label": "ABV %",
    "format": "number"
  },
  "url": {
    "label": "Vivino URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Vivino Scraper - Wines, Ratings, Reviews & Prices](https://apify.com/scrapesage/vivino-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/vivino-scraper) to learn more, explore other use cases, and run it yourself.