# Vivino Margaux Red Wines Scraper

**Use case:** 

Scrape Margaux red wines from Vivino with title, winery, vintage, price, rating, and image. Export structured wine marketplace data to JSON or CSV.

## Input

```json
{
  "query": "margaux",
  "maxItems": 50,
  "wineType": "red",
  "country": "US"
}
```

## Output

```json
{
  "imageUrl": {
    "label": "🖼️ Image",
    "format": "image"
  },
  "title": {
    "label": "🏷️ Title",
    "format": "text"
  },
  "price": {
    "label": "💰 Price",
    "format": "text"
  },
  "winery": {
    "label": "🍇 Winery",
    "format": "text"
  },
  "vintage": {
    "label": "📅 Vintage",
    "format": "text"
  },
  "rating": {
    "label": "⭐ Rating",
    "format": "text"
  },
  "region": {
    "label": "🌍 Region",
    "format": "text"
  },
  "url": {
    "label": "🔗 URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "🕒 Scraped At",
    "format": "date"
  },
  "error": {
    "label": "❌ Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Vivino Wine Catalog Scraper](https://apify.com/parseforge/vivino-marketplace-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/vivino-marketplace-scraper) to learn more, explore other use cases, and run it yourself.