# Track Burgundy wine prices and ratings

**Use case:** 

Get Burgundy wines with rating, rating count, appellation and current price, for a price list or a market watch on the region. By MrBridge (mr-bridge.com)

## Input

```json
{
  "region": "bourgogne",
  "wineType": "red",
  "grape": "",
  "wineryName": "",
  "maxWines": 50,
  "minRating": 3.5,
  "maxRating": 5,
  "countryCode": "fr",
  "currencyCode": "EUR",
  "orderBy": "ratings_average",
  "order": "desc",
  "includeAllVintages": false,
  "vintageStartYear": 2005,
  "debug": false
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "fullName": {
    "label": "Wine",
    "format": "text"
  },
  "wineryName": {
    "label": "Producer",
    "format": "text"
  },
  "vintageYear": {
    "label": "Vintage",
    "format": "number"
  },
  "year": {
    "label": "Year",
    "format": "number"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "ratingsCount": {
    "label": "Reviews",
    "format": "number"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "regionName": {
    "label": "Region",
    "format": "text"
  },
  "wineType": {
    "label": "Type",
    "format": "text"
  },
  "wineUrl": {
    "label": "Vivino",
    "format": "link"
  },
  "sweetness": {
    "label": "Sweetness",
    "format": "number"
  },
  "tannin": {
    "label": "Tannin",
    "format": "number"
  },
  "acidity": {
    "label": "Acidity",
    "format": "number"
  },
  "intensity": {
    "label": "Intensity",
    "format": "number"
  },
  "fizziness": {
    "label": "Fizziness",
    "format": "number"
  },
  "tasteProfile": {
    "label": "Taste Profile",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Vivino region scraper: wine ratings and prices](https://apify.com/mrbridge/vivino-powerful-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/mrbridge/vivino-powerful-scraper) to learn more, explore other use cases, and run it yourself.


## 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.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **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 full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/mrbridge/vivino-powerful-scraper.md

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).
