# Vivino Scraper — Wine Prices, Ratings & Reviews (`studio-amba/vivino-scraper`) Actor

Scrapes wine data from vivino.com: name, vintage, winery, region, rating, review count, and merchant price. No login required.

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

## Pricing

from $1.20 / 1,000 result scrapeds

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/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
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.
Actors are written with capital "A".

## 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.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Vivino Scraper

Scrapes wine data from vivino.com: name, vintage, winery, region, community rating, review count, and a merchant offer with price.

### Why use this actor?

Vivino aggregates ratings from millions of users and prices from dozens of wine merchants, but there's no official public API for buyers who want that data in bulk. This actor pulls it directly from Vivino's own search backend — useful for wine retailers tracking competitor pricing, for building a rating-based wine recommender, or for market research on which regions/varietals are trending by rating volume.

### How to scrape Vivino data

1. Set a `searchQuery` (a wine name, grape variety, region, or winery — e.g. `"chateau margaux"`, `"rioja"`, `"chardonnay"`) or leave it blank and set `wineType`/`minRating`/price filters instead to browse without a keyword.
2. Optionally filter by `wineType` (red, white, rosé, sparkling, dessert, fortified), `minRating` (1-5), and a price range.
3. Pick a `marketCountry` to control which currency prices are shown in.
4. Run the actor. Each result is one wine vintage with its current rating and a merchant price.

The actor talks directly to Vivino's `/api/explore/explore` JSON endpoint (the same one the vivino.com search page itself calls) rather than parsing rendered HTML, so results are clean and fast.

### Input

| Field | Type | Required | Description |
|-------|------|----------|--------------|
| `searchQuery` | String | No | Wine, grape, region, or winery to search for. Leave blank (with no other filters) to fall back to a default search. Leave blank while setting other filters to browse by those filters alone — this field has no schema default on purpose, so it never silently narrows a filter-only search. |
| `wineType` | String | No | `red`, `white`, `rose`, `sparkling`, `dessert`, `fortified`, or blank for any |
| `marketCountry` | String | No | ISO country code controlling currency (default `BE` → EUR) |
| `minRating` | Integer | No | Minimum Vivino rating, 1-5 scale (default `1`, i.e. no filter) |
| `minPrice` | Integer | No | Minimum price in the market country's currency (default `0`) |
| `maxPrice` | Integer | No | Maximum price in the market country's currency (default `1000`) |
| `sortBy` | String | No | `rating_desc` (default), `rating_asc`, `price_asc`, `price_desc` |
| `maxResults` | Integer | No | Maximum wines to return, hard-capped at 2000 (default `50`) |
| `proxyConfiguration` | Object | No | Apify Proxy settings (automatic works — see Limitations) |

### Output

Each result contains:

| Field | Type | Example |
|-------|------|---------|
| `vintageId` | Integer | `183041714` |
| `wineId` | Integer | `2169229` |
| `wineName` | String | `"Cabernet Sauvignon"` |
| `vintageName` | String | `"Terre di Rai Cabernet Sauvignon 2025"` |
| `vintageYear` | Integer or null | `2025` |
| `winery` | String or null | `"Terre di Rai"` |
| `region` | String or null | `"delle Venezie"` |
| `country` | String or null | `"Italy"` |
| `wineType` | String or null | `"Red"` |
| `rating` | Number or null | `3.4` |
| `ratingCount` | Integer or null | `128` |
| `price` | Number or null | `24.99` |
| `currency` | String or null | `"EUR"` |
| `originalPrice` | Number or null | `29.99` |
| `discountPercent` | Number or null | `17` |
| `bottleVolumeMl` | Integer or null | `750` |
| `merchantId` | Integer or null | `34978` |
| `merchantUrl` | String or null | Outbound link to buy at that merchant |
| `available` | Boolean or null | `true` |
| `imageUrl` | String or null | Bottle/label image URL |
| `wineUrl` | String | Canonical vivino.com wine page |
| `scrapedAt` | String | ISO 8601 timestamp |
| `searchQuery` | String or null | Input echo |
| `marketCountry` | String or null | Input echo |

### Example output

```json
{
    "vintageId": 183041714,
    "wineId": 2169229,
    "wineName": "Cabernet Sauvignon",
    "vintageName": "Terre di Rai Cabernet Sauvignon 2025",
    "vintageYear": 2025,
    "winery": "Terre di Rai",
    "region": "delle Venezie",
    "country": "Italy",
    "wineType": "Red",
    "rating": 3.4,
    "ratingCount": 128,
    "price": 5.72,
    "currency": "EUR",
    "originalPrice": null,
    "discountPercent": null,
    "bottleVolumeMl": 750,
    "merchantId": 34978,
    "merchantUrl": "https://www.seulementproduitsitaliens.be/scheda.php?codice=ZPP2621",
    "available": true,
    "imageUrl": "https://images.vivino.com/thumbs/MYqT_2abQ4uWByvXg25kNg_pb_x600.png",
    "wineUrl": "https://www.vivino.com/w/2169229",
    "scrapedAt": "2026-08-13T09:10:33.942Z",
    "searchQuery": "chateau margaux",
    "marketCountry": "BE"
}
```

### Cost estimate

This actor uses approximately **0.5-1 compute unit per 1,000 results** — it's a lightweight JSON API scraper with no browser rendering. At standard Apify pricing that's a few cents per 1,000 wines, well under the actor's own per-result price. Usage cost only settles once a run reports **SUCCEEDED** — reading a dataset mid-run will show a cost far below the real total.

### Limitations

- Each result carries **one merchant's price**, not a full cross-retailer comparison — Vivino's search endpoint returns a single representative offer per wine, not every merchant carrying it.
- Grape variety composition isn't returned by the search endpoint used here (only available from the site's per-wine detail page, which this actor doesn't fetch to keep runs fast and single-request-per-result).
- No anti-bot wall was found on this endpoint during recon (plain HTTPS, no cookies/session, automatic Apify Proxy works fine at normal volume). If you run very high volumes and start seeing block/rate-limit warnings in the run log, switch `proxyConfiguration` to a Residential proxy group.
- Data is scraped from the public website and may change without notice.
- Respect vivino.com's terms of service and use responsibly.

### Need this data on a schedule, or a custom version?

We run this scraper as a managed service for businesses: scheduled runs,
deduplication, delta detection, and delivery to your inbox, Google Sheets,
or API — maintenance included. We can also build a custom version with your
exact fields and filters, or combine multiple sources into one feed.

See [studioamba.dev/services](https://studioamba.dev/services/) or email
<hello@studioamba.dev> for a free data sample.
We maintain 300+ European web scrapers and answer within one business day.

# Actor input Schema

## `searchQuery` (type: `string`):

Wine, grape, region, or winery to search for, e.g. "chateau margaux" or "rioja". Leave blank together with all other filters to fall back to a default search ("cabernet sauvignon"). Leave blank while setting other filters below (wine type, rating, price) to browse by those filters alone instead — deliberately has no schema default, so it never silently ANDs a keyword into a filter-only search.

## `wineType` (type: `string`):

Filter by wine type. Leave as "Any" for no filter.

## `marketCountry` (type: `string`):

Controls which currency prices are shown in (each country maps to its own currency, e.g. BE/FR/DE → EUR, GB → GBP, CH → CHF).

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

Only return wines rated at least this high, on Vivino's 1-5 scale.

## `minPrice` (type: `integer`):

Only return wines priced at or above this amount, in the market country's currency.

## `maxPrice` (type: `integer`):

Only return wines priced at or below this amount, in the market country's currency.

## `sortBy` (type: `string`):

Order results by rating or price.

## `maxResults` (type: `integer`):

Maximum number of wines to return. Hard-capped at 2000 per run.

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

No anti-bot found on vivino.com's public API during recon (Aug 2026) — automatic Apify Proxy works. Switch to Residential only if you start seeing block/rate-limit warnings in the run log at high volume.

## Actor input object example

```json
{
  "wineType": "",
  "marketCountry": "BE",
  "minRating": 1,
  "minPrice": 0,
  "maxPrice": 1000,
  "sortBy": "rating_desc",
  "maxResults": 50,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# Actor output Schema

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

No description

# 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 = {
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("studio-amba/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 = { "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    } }

# Run the Actor and wait for it to finish
run = client.actor("studio-amba/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 '{
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call studio-amba/vivino-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,studio-amba/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/dXglBpWN615YIzvML/builds/NCzQO4gMXu1m6Rkek/openapi.json
