# Lidl Milk Product Data Extractor

**Use case:** 

Extract pricing, descriptions, and availability for milk products from Lidl's database. Get structured data for analysis or market tracking.

## Input

```json
{
  "url": "https://www.lidl.com/search/products/milk",
  "keyword": "milk",
  "results_wanted": 100,
  "max_pages": 10,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "rank": {
    "label": "Rank",
    "format": "number"
  },
  "name": {
    "label": "Product",
    "format": "text"
  },
  "product_url": {
    "label": "Product URL",
    "format": "link"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "current_price": {
    "label": "Current Price",
    "format": "number"
  },
  "regular_price": {
    "label": "Regular Price",
    "format": "number"
  },
  "promotion_price": {
    "label": "Promotion Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "primary_image_url": {
    "label": "Image",
    "format": "image"
  },
  "gtin": {
    "label": "GTIN",
    "format": "text"
  },
  "item_id": {
    "label": "Item ID",
    "format": "text"
  },
  "product_id": {
    "label": "Product ID",
    "format": "text"
  },
  "stock_status_code": {
    "label": "Stock",
    "format": "text"
  },
  "merchandising_module": {
    "label": "Module",
    "format": "text"
  },
  "aisle": {
    "label": "Aisle",
    "format": "number"
  },
  "store_id": {
    "label": "Store ID",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Lidl Product Scraper](https://apify.com/shahidirfan/lidl-product-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/shahidirfan/lidl-product-scraper) to learn more, explore other use cases, and run it yourself.