🍷Wine Searcher data scraper avatar

🍷Wine Searcher data scraper

Pricing

from $1.20 / 1,000 results

Go to Apify Store
🍷Wine Searcher data scraper

🍷Wine Searcher data scraper

price, ratings, critic score, and the full per-merchant offers table (merchant name, location, price, bottle size, verified status) for each wine.

Pricing

from $1.20 / 1,000 results

Rating

0.0

(0)

Developer

Jordan Byte

Jordan Byte

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

6 days ago

Last modified

Categories

Share

Wine-Searcher Scraper

Scrapes wine listings and detail pages from wine-searcher.com — price, ratings, critic score, and the full per-merchant offers table (merchant name, location, price, bottle size, verified status) for each wine.

What it does

  • Listing pages: give it a search term or a wine-searcher.com search URL, and it finds every wine/vintage link on the results page.
  • Detail pages: for each wine it visits, it extracts the wine name, region, vintage, average price, user rating, critic score, style, and every individual merchant offer with price and location.
  • Whole-site mode: optionally keep following every wine link discovered on every page (not just the ones you started with), up to a limit you set.

Input

FieldTypeDescription
startUrlsarray of stringswine-searcher.com URLs to scrape directly — listing pages or specific vintage detail pages.
searchQueriesarray of stringsPlain wine search terms (e.g. "opus one") — turned into search URLs automatically. Alternative to startUrls.
scrapeWholeSitebooleanIf enabled, keeps following every wine link found on every page instead of just the ones you gave it. Default false.
maxItemsintegerStop once this many wine detail pages have been scraped. Default 2.
maxConcurrencyintegerNumber of pages processed in parallel (1–5). Default 1.

Output

One dataset row per wine, e.g.:

{
"url": "https://www.wine-searcher.com/find/opus+one+napa+valley+county+north+coast+california+usa/2019",
"wineName": "Opus One",
"region": "Napa Valley, USA",
"vintage": "2019",
"avgPrice": 439,
"avgPriceCurrency": "US$",
"userRating": 4.5,
"userRatingCount": 31,
"criticScore": "97 / 100",
"criticReviewCount": 7,
"style": "Red - Bold and Structured",
"offerCount": 51,
"offers": [
{
"merchantName": "WineBid",
"merchantUrl": "https://www.wine-searcher.com/merchant/362-winebid",
"shopUrl": "https://www.winebid.com/BuyWine/Item/10833098",
"location": "USA (CA) Napa",
"price": 48793,
"currency": "Rs",
"bottleSize": "Bottle (750ml)",
"rating": 5,
"verified": true
}
]
}

Notes

  • Some summary fields (userRatingCount, criticScore, criticReviewCount, style) may come back null for wines that don't have that data on their page.
  • Each page load takes a few seconds — this is expected and by design for reliability, not a performance bug. Keep maxItems/maxConcurrency modest for testing.