Lidl Product Scraper ๐Ÿ›๏ธ avatar

Lidl Product Scraper ๐Ÿ›๏ธ

Try for free

2 hours trial then $19.99/month - No credit card required now

Go to Store
Lidl Product Scraper ๐Ÿ›๏ธ

Lidl Product Scraper ๐Ÿ›๏ธ

easyapi/lidl-product-scraper
Try for free

2 hours trial then $19.99/month - No credit card required now

Scrape product data from Lidl's online store including prices, images, descriptions, ratings and stock information. Perfect for price monitoring, market research and competitive analysis.

Developer
Maintained by Community

Actor Metrics

  • 4 monthly users

  • No reviews yet

  • No bookmarks yet

  • >99% runs succeeded

  • Created in Feb 2025

  • Modified 7 days ago

Powerful scraper for extracting detailed product information from Lidl's online store. Get comprehensive data about products, prices, availability, and more.

๐ŸŽฏ Use Cases

  • Price monitoring and tracking
  • Market research and analysis
  • Product catalog building
  • Competitive analysis
  • Stock availability monitoring
  • Brand and category insights

โœจ Features

  • Extract detailed product information including:
    • Product titles and IDs
    • Current and original prices
    • Discount information
    • Brand details and logos
    • Product images (main + gallery)
    • Category information
    • Product descriptions
    • Customer ratings and reviews
    • Stock availability
    • Canonical URLs
  • Support for:
    • Multiple search URLs
    • Customizable maximum items limit
    • Automatic pagination handling
    • Built-in proxy rotation
    • Anti-blocking measures

๐Ÿ’Ž Output

The actor provides structured JSON output containing all scraped product details. Each product entry includes:

  • Basic product information (ID, title, brand)
  • Pricing details (current price, original price, discounts)
  • Multiple product images
  • Category hierarchy
  • Customer ratings and recommendations
  • Stock availability status
  • Timestamps for data freshness

๐Ÿ” Input Parameters

The actor accepts the following input parameters:

  • searchUrls: Array of Lidl search URLs to scrape
  • maxItems: Maximum number of items to scrape (optional)
  • proxyConfiguration: Proxy settings (optional)

๐Ÿ“ Notes

  • Respects Lidl's robots.txt and implements reasonable delays
  • Uses smart retry mechanisms for reliable data collection
  • Regularly maintained and updated

Input Example

A full explanation of an input example in JSON.

1{
2    "searchUrls": [
3        "https://www.lidl.de/q/search?q=bad%20organizer"
4    ],
5    "maxItems": 50
6}

Output sample

The results will be wrapped into a dataset which you can always find in theย Storageย tab. Here's an excerpt from the data you'd get if you apply the input parameters above:

And here is the same data but in JSON. You can choose in which format to download your data: JSON, JSONL, Excel spreadsheet, HTML table, CSV, or XML.

1[
2    {
3        "searchUrl": "https://www.lidl.de/q/search?q=bad%20organizer",
4        "productId": "100385369",
5        "title": "Bad- und Duschabzieher / Bad-Organizer / Wattestรคbchen-Behรคlter / Seifenspender",
6        "brand": "LIVARNO home",
7        "brandLogo": "https://www.lidl.de/assets/gcp325f0c56f2cc44e9826fb41bb987ecca.png",
8        "price": {
9            "current": 3.49,
10            "currency": "โ‚ฌ",
11            "originalPrice": null,
12            "discountPercentage": null
13        },
14        "images": [
15            "https://www.lidl.de/assets/gcp0e7d2a625cb045389a60f5954120a9e1.jpg",
16            "https://www.lidl.de/assets/gcpc4740d3407c44d5796104f6657cc0af3.jpg",
17            "https://www.lidl.de/assets/gcp69ded2324e12409693bbaecab739d86b.jpg"
18        ],
19        "mainImage": "https://www.lidl.de/assets/gcp0e7d2a625cb045389a60f5954120a9e1.jpg",
20        "canonicalUrl": "https://www.lidl.de/p/livarno-home-bad-und-duschabzieher-bad-organizer-wattestaebchen-behaelter-seifenspender/p100385369",
21        "category": {
22            "main": "Kategorien/Gesundheit & Pflege/Beauty/Beauty-Zubehรถr",
23            "path": "0/55/5515/551520"
24        },
25        "description": null,
26        "ratings": {
27            "average": 4.5,
28            "count": 13,
29            "recommendedYes": 12,
30            "recommendedNo": 1
31        },
32        "stock": {
33            "available": true,
34            "minOrderQuantity": 1
35        },
36        "scrapedAt": "2025-02-12T01:06:49.488Z"
37    },
38    ...
39]