# 🍷 Vivino Wine Ratings & Prices Scraper (`hipersoft/vivino-scraper`) Actor

Scrape wines from Vivino with ratings, review counts, prices, region and winery. Filter by country, currency, wine type, price range and minimum rating — export one clean row per wine as JSON, CSV or Excel.

- **URL**: https://apify.com/hipersoft/vivino-scraper.md
- **Developed by:** [hiper soft](https://apify.com/hipersoft) (community)
- **Categories:** E-commerce
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.0015 / wine scraped

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## 🍷 Vivino Wine Ratings & Prices Scraper

Scrape wines from **Vivino**, the world's largest wine marketplace and ratings community, into clean, structured **JSON, CSV or Excel**. Filter by **country, currency, wine type, price range and minimum rating**, and pull **one tidy row per wine**: **name, winery, vintage, type, region, country, average rating, review count, price and the wine's URL**. Built for price tracking, wine market research, catalog building and automations.

### Features

- ⭐ **Ratings & reviews** — the community average rating and the number of ratings for every wine.
- 💰 **Prices** — the current price in the currency you choose, ready for tracking and comparison.
- 🍇 **Wine type filter** — narrow to red, white, sparkling, rosé, dessert or fortified wines.
- 🌍 **Country & currency** — see availability and prices for the market you care about (US, GB, FR, and more).
- 🎚️ **Price range** — set a minimum and maximum price to focus the results.
- 🏅 **Minimum rating** — collect only top-rated wines by setting a rating floor.
- 🏰 **Winery & region** — the producer, region and country of origin for each wine.
- 🖼️ **Bottle image** — a direct image URL for every wine.
- 🔗 **Direct wine URL** — a ready-to-open link to each wine on Vivino.
- 📄 **Volume control** — set `maxItems` to balance coverage and cost.

### Input

```json
{
  "countryCode": "US",
  "currencyCode": "USD",
  "wineTypes": ["red"],
  "priceMin": 10,
  "priceMax": 100,
  "minRating": 4,
  "maxItems": 100
}
```

| Field | Description |
| --- | --- |
| `countryCode` | Two-letter country code that sets which market's availability and prices you see (e.g. `US`, `GB`, `FR`). Defaults to `US`. |
| `currencyCode` | Three-letter currency code for the prices (e.g. `USD`, `EUR`, `GBP`). Defaults to `USD`. |
| `wineTypes` | Optional. Limit to specific types — names (`red`, `white`, `sparkling`, `rose`, `dessert`, `fortified`) or ids (`1`, `2`, `3`, `4`, `7`, `24`). |
| `priceMin` | Lowest wine price to include, in the chosen currency. |
| `priceMax` | Highest wine price to include, in the chosen currency. |
| `minRating` | Optional. Only return wines rated at or above this value (1–5). |
| `maxItems` | Maximum wines to collect (0 = no limit). |
| `maxConcurrency` | How many requests to run in parallel. Leave at the default unless you have a reason to change it. |
| `proxyConfiguration` | Proxy settings. Not required by default. |

#### How to search

Pick a `countryCode` and `currencyCode`, then optionally narrow the results with `wineTypes`, a `priceMin`/`priceMax` range and a `minRating` floor. Set `maxItems` to control how much you collect, then run. With no input at all, the Actor returns top-rated wines for the US market in USD.

### Use cases

- Track wine prices across markets and over time.
- Build and refresh a wine catalog with ratings and review counts.
- Find top-rated wines within a price band for buying or resale decisions.
- Research a region's or a wine type's rating and price distribution.
- Feed structured wine records into a store, spreadsheet or analytics pipeline.

### What you get

Each wine is one dataset record:

```json
{
  "wineId": 2716483,
  "wineName": "Pietro Dal Cero Amarone della Valpolicella",
  "winery": "Cà dei Frati",
  "vintageYear": 2019,
  "wineType": "red",
  "region": "Amarone della Valpolicella",
  "country": "Italy",
  "rating": 4.6,
  "ratingsCount": 1986,
  "price": 72.44,
  "currency": "USD",
  "imageUrl": "https://images.vivino.com/thumbs/GLOBHWGQQvi5InBjDLFV3Q_pl_480x640.png",
  "url": "https://www.vivino.com/w/2716483"
}
```

#### Output schema

| Field | Type | Description |
|---|---|---|
| `wineId` | integer | Vivino's unique identifier for the wine. |
| `wineName` | string | Wine name. |
| `winery` | string | Producer / winery name. |
| `vintageYear` | integer | Vintage year of the bottle. |
| `wineType` | string | Wine type: `red`, `white`, `sparkling`, `rose`, `dessert` or `fortified`. |
| `region` | string | Region the wine comes from. |
| `country` | string | Country of origin. |
| `rating` | number | Average community rating (out of 5). |
| `ratingsCount` | integer | Number of ratings behind the average. |
| `price` | number | Wine price in the chosen currency. `null` when no price is listed. |
| `currency` | string | Currency code of the price (e.g. `USD`). |
| `imageUrl` | string (URL) | Bottle image URL. |
| `url` | string (URL) | Direct link to the wine on Vivino. |

### Related Actors

- [Amazon Product Scraper](https://apify.com/hipersoft/amazon-product-scraper)
- [eBay Scraper](https://apify.com/hipersoft/ebay-scraper)
- [Google Shopping Scraper](https://apify.com/hipersoft/google-shopping-scraper)
- [Trustpilot Reviews Scraper](https://apify.com/hipersoft/trustpilot-reviews-scraper)

### FAQ

**Do I need a Vivino account?**
No. Just set your filters and run.

**Which country and currency can I use?**
Set `countryCode` to a two-letter code (e.g. `US`, `GB`, `FR`) and `currencyCode` to a three-letter code (e.g. `USD`, `EUR`, `GBP`). Prices reflect the market you choose.

**Can I filter by wine type?**
Yes. Use `wineTypes` with names (`red`, `white`, `sparkling`, `rose`, `dessert`, `fortified`) or their ids.

**How many wines can I collect?**
As many as your filters return. Use `maxItems` to control volume and cost.

**What export formats are supported?**
JSON, CSV, Excel and XML, plus the Apify API for programmatic access.

**Can I use this with n8n?**
Yes. Use the [Apify node for n8n](https://docs.apify.com/platform/integrations/n8n) to run this Actor and pull its dataset straight into an n8n workflow — trigger it on a schedule, then route the wine rows to a database, spreadsheet or messaging step.

**Can I connect it to other tools?**
This Actor connects with almost any cloud service or web app thanks to [integrations on the Apify platform](https://apify.com/integrations). It works with [Make](https://apify.com/integrations/make), [Zapier](https://apify.com/integrations/zapier), [Slack](https://docs.apify.com/platform/integrations/slack), [Airbyte](https://docs.apify.com/platform/integrations/airbyte), [GitHub](https://docs.apify.com/platform/integrations/github), [Google Drive](https://docs.apify.com/platform/integrations/drive) and [many more](https://apify.com/integrations), plus the [Apify API](https://docs.apify.com/api/v2), JavaScript/Python clients and MCP. Or use [webhooks](https://docs.apify.com/platform/integrations/webhooks) to trigger an action whenever a run finishes.

### Notes

Returns only public Vivino wine data — the same information any visitor can see. This is an independent tool and is not affiliated with, endorsed by or connected to Vivino; "Vivino" is a trademark of its respective owner. Original clean-room implementation.

# Actor input Schema

## `countryCode` (type: `string`):

Two-letter country code that sets which market's wine availability and results you see — for example US, GB, FR, DE, IT, ES. Defaults to US.

## `currencyCode` (type: `string`):

Three-letter currency code for the prices in the results — for example USD, EUR, GBP. Defaults to USD.

## `wineTypes` (type: `array`):

Optional. Limit results to specific wine types. Use names (red, white, sparkling, rose, dessert, fortified) or their ids (1, 2, 3, 4, 7, 24). Leave empty for all types.

## `priceMin` (type: `integer`):

Lowest wine price to include, in the chosen currency.

## `priceMax` (type: `integer`):

Highest wine price to include, in the chosen currency.

## `minRating` (type: `integer`):

Optional. Only return wines with an average rating at or above this value (1–5). Leave empty for no rating filter.

## `maxItems` (type: `integer`):

Maximum number of wines to collect (0 = no limit; collect everything the search returns).

## `maxConcurrency` (type: `integer`):

How many requests to run in parallel. Leave at the default unless you have a reason to change it.

## `proxyConfiguration` (type: `object`):

Proxy settings. Not required by default. If you experience reduced results, enable Apify Residential proxy for the most reliable access.

## Actor input object example

```json
{
  "countryCode": "US",
  "currencyCode": "USD",
  "wineTypes": [
    "red"
  ],
  "priceMin": 0,
  "priceMax": 1000,
  "maxItems": 100,
  "maxConcurrency": 3,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `results` (type: `string`):

The results as dataset items.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "wineTypes": [
        "red"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("hipersoft/vivino-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "wineTypes": ["red"] }

# Run the Actor and wait for it to finish
run = client.actor("hipersoft/vivino-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "wineTypes": [
    "red"
  ]
}' |
apify call hipersoft/vivino-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,hipersoft/vivino-scraper"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/dCIefr2vLiB4KUOvL/builds/d1SvwdS1xzzTgdIz5/openapi.json
