# Wine-Searcher Scraper - Wine Prices, Scores, Offers & LWIN

**Use case:** 

Scrape Wine-Searcher data by wine name, URL, or LWIN code. Get scores, prices, grapes, region, producer, ratings, label image, and live offer counts.

## Input

```json
{
  "inputType": "auto",
  "wineNames": [
    "Domaine Leflaive Puligny-Montrachet Les Pucelles 2020",
    "Petrus 2015"
  ],
  "urls": [
    "https://www.wine-searcher.com/find/petrus/2015"
  ],
  "lwins": [
    "11316442021",
    "11084042019",
    "1131644"
  ],
  "fetchOffers": true,
  "fetchReviews": false,
  "concurrency": 3,
  "maxItems": 20,
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "FR"
  },
  "maxNotifyListings": 50
}
```

## Output

```json
{
  "wineName": {
    "label": "Wine",
    "format": "text"
  },
  "vintage": {
    "label": "Vintage",
    "format": "number"
  },
  "appellation": {
    "label": "Appellation",
    "format": "text"
  },
  "region": {
    "label": "Region",
    "format": "text"
  },
  "grapeVariety": {
    "label": "Grape",
    "format": "text"
  },
  "style": {
    "label": "Style",
    "format": "text"
  },
  "score": {
    "label": "Critic Score",
    "format": "number"
  },
  "criticReviewsCount": {
    "label": "# Critic Reviews",
    "format": "number"
  },
  "avgPrice": {
    "label": "Avg Price",
    "format": "number"
  },
  "avgPriceCurrency": {
    "label": "Currency",
    "format": "text"
  },
  "cheapestPriceAmount": {
    "label": "Cheapest",
    "format": "number"
  },
  "cheapestPriceCurrency": {
    "label": "Cheapest Cur.",
    "format": "text"
  },
  "cheapestPriceMerchant": {
    "label": "Merchant",
    "format": "text"
  },
  "bottlesPerUnit": {
    "label": "Bottles/Unit",
    "format": "number"
  },
  "offersCount": {
    "label": "# Offers",
    "format": "number"
  },
  "producer": {
    "label": "Producer",
    "format": "text"
  },
  "labelImageUrl": {
    "label": "Label",
    "format": "image"
  },
  "wineSearcherUrl": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Wine-Searcher Scraper | Wine Prices, Scores, Offers & LWIN](https://apify.com/abotapi/wine-searcher-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/abotapi/wine-searcher-scraper) to learn more, explore other use cases, and run it yourself.