# Wine Taste Profiles & Grape Varieties Extractor

**Use case:** 

Extract detailed taste profiles and grape varieties for selected wines. Obtain data for Barolo, Chablis, Châteauneuf-du-Pape, and Riesling.

## Input

```json
{
  "wines": [
    "Barolo 2018",
    "Chablis Grand Cru Les Clos 2020",
    "Châteauneuf-du-Pape 2019",
    "Riesling Kabinett 2021"
  ],
  "searchMode": "auto",
  "matchingMode": "basic",
  "includeTasteProfile": true,
  "includeReviews": false,
  "maxReviewsPerWine": 10,
  "shipTo": "",
  "countryCode": "FR",
  "currencyCode": "EUR",
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "searchQuery": {
    "label": "Search Query",
    "format": "text"
  },
  "name": {
    "label": "Wine",
    "format": "text"
  },
  "winery": {
    "label": "Winery",
    "format": "text"
  },
  "vintage": {
    "label": "Vintage",
    "format": "number"
  },
  "requested_vintage": {
    "label": "Requested Vintage",
    "format": "number"
  },
  "wine_type": {
    "label": "Type",
    "format": "text"
  },
  "region": {
    "label": "Region",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "vivino_url": {
    "label": "Vivino URL",
    "format": "link"
  },
  "appellation": {
    "label": "Appellation",
    "format": "text"
  },
  "grape_varieties": {
    "label": "Grapes",
    "format": "text"
  },
  "food_pairings": {
    "label": "Food Pairings",
    "format": "text"
  },
  "wine_description": {
    "label": "Description",
    "format": "text"
  },
  "alcohol": {
    "label": "ABV %",
    "format": "number"
  },
  "average_rating": {
    "label": "Rating",
    "format": "number"
  },
  "ratings_count": {
    "label": "# Ratings",
    "format": "number"
  },
  "wine_average_rating": {
    "label": "Wine Rating (all yrs)",
    "format": "number"
  },
  "wine_ratings_count": {
    "label": "# Ratings (all yrs)",
    "format": "number"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "image_url": {
    "label": "Image",
    "format": "link"
  },
  "merchant_url": {
    "label": "Merchant URL",
    "format": "link"
  },
  "discounted_from": {
    "label": "Discounted From",
    "format": "number"
  },
  "discount_percent": {
    "label": "Discount %",
    "format": "number"
  },
  "bottle_volume_ml": {
    "label": "Volume (ml)",
    "format": "number"
  },
  "vfm_score": {
    "label": "VFM Score",
    "format": "number"
  },
  "vfm_category": {
    "label": "VFM Cat.",
    "format": "number"
  },
  "is_natural": {
    "label": "Natural?",
    "format": "text"
  },
  "winery_id": {
    "label": "Winery ID",
    "format": "number"
  },
  "winery_seo_name": {
    "label": "Winery Slug",
    "format": "text"
  },
  "region_id": {
    "label": "Region ID",
    "format": "number"
  },
  "country_code": {
    "label": "Country Code",
    "format": "text"
  },
  "label_image_url": {
    "label": "Label Image",
    "format": "link"
  },
  "matchScore": {
    "label": "Match Score",
    "format": "number"
  },
  "isAlternative": {
    "label": "Alternative?",
    "format": "text"
  },
  "inputSource": {
    "label": "Source",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped",
    "format": "text"
  },
  "lwin": {
    "label": "LWIN",
    "format": "text"
  },
  "lwin_canonical": {
    "label": "LWIN canonical",
    "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.