# Carrefour.es Grocery Products, Prices & EAN Scraper

**Use case:** 

Scrape Carrefour ES. Search/URL. Get name, brand, price, unit price, promo, stock, image. Optional: EAN, ingredients, nutrition & rating.

## Input

```json
{
  "mode": "search",
  "queries": [
    "leche"
  ],
  "categories": [
    "https://www.carrefour.es/supermercado/lacteos-huevos/leche/cat20003/c"
  ],
  "sortBy": "relevance",
  "minRating": "0",
  "onPromotionOnly": false,
  "inStockOnly": false,
  "urls": [
    "https://www.carrefour.es/supermercado/lacteos-huevos/leche/cat20003/c"
  ],
  "fetchDetails": true,
  "maxItems": 20,
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "ES"
  },
  "maxNotifyListings": 50
}
```

## Output

```json
{
  "name": {
    "label": "Name"
  },
  "brand": {
    "label": "Brand"
  },
  "price": {
    "label": "Price"
  },
  "regularPrice": {
    "label": "Was"
  },
  "unitPrice": {
    "label": "Unit price"
  },
  "onPromotion": {
    "label": "On promotion",
    "format": "boolean"
  },
  "inStock": {
    "label": "In stock",
    "format": "boolean"
  },
  "ean": {
    "label": "EAN"
  },
  "rating": {
    "label": "Rating"
  },
  "reviewCount": {
    "label": "Reviews"
  },
  "categoryId": {
    "label": "Category"
  },
  "productId": {
    "label": "Product ID"
  },
  "image": {
    "label": "Image",
    "format": "image"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Carrefour.es Grocery Products, Prices & EAN Scraper](https://apify.com/abotapi/carrefour-es-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/abotapi/carrefour-es-scraper) to learn more, explore other use cases, and run it yourself.