# Wine Ratings & Prices Export for US Market

**Use case:** 

Quickly extract ratings and prices for selected wines. Get structured data for Château Margaux 2015, Sassicaia 2018, and others in a spreadsheet.

## Input

```json
{
  "wines": [
    "Château Margaux 2015",
    "Sassicaia 2018",
    "Penfolds Grange 2017",
    "Cloudy Bay Sauvignon Blanc 2022",
    "Ridge Monte Bello 2018"
  ],
  "searchMode": "auto",
  "matchingMode": "basic",
  "includeTasteProfile": false,
  "includeReviews": false,
  "maxReviewsPerWine": 10,
  "shipTo": "US",
  "countryCode": "FR",
  "currencyCode": "USD",
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "searchQuery": {
    "label": "Search Query",
    "format": "text"
  },
  "name": {
    "label": "Wine Name",
    "format": "text"
  },
  "winery": {
    "label": "Winery",
    "format": "text"
  },
  "vintage": {
    "label": "Vintage",
    "format": "number"
  },
  "wine_type": {
    "label": "Type",
    "format": "text"
  },
  "average_rating": {
    "label": "Rating",
    "format": "number"
  },
  "ratings_count": {
    "label": "# Ratings",
    "format": "number"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "region": {
    "label": "Region",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "vivino_url": {
    "label": "URL",
    "format": "link"
  },
  "error": {
    "label": "Status",
    "format": "text"
  },
  "errorMessage": {
    "label": "Status detail",
    "format": "text"
  }
}
```

## About this Actor

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