# Scrape Vivino wine reviews & tasting notes

**Use case:** 

Extract Vivino community wine reviews: wine name, rating, review note, reviewer alias and date. Public data, no login, export to CSV.

## Input

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

## Output

```json
{
  "wineName": {
    "label": "Wine",
    "format": "text"
  },
  "year": {
    "label": "Year",
    "format": "text"
  },
  "rating": {
    "label": "Stars",
    "format": "number"
  },
  "note": {
    "label": "Review",
    "format": "text"
  },
  "userAlias": {
    "label": "Taster",
    "format": "text"
  },
  "createdAt": {
    "label": "Date",
    "format": "text"
  },
  "wineUrl": {
    "label": "Wine 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.