Lidl Germany Product Scraper avatar

Lidl Germany Product Scraper

Pricing

from $2.50 / 1,000 results

Go to Apify Store
Lidl Germany Product Scraper

Lidl Germany Product Scraper

[💰 $2.5 / 1K] Scrape products from Lidl Germany (lidl.de) — titles, brands, prices with discounts, images, categories, ratings and stock. Search by keyword or paste search, category, and product URLs.

Pricing

from $2.50 / 1,000 results

Rating

0.0

(0)

Developer

SolidCode

SolidCode

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Share

Pull the full product catalog from Lidl Germany (lidl.de) at scale — titles, brands, current and original prices, discount percentages, high-resolution images, German category paths, star ratings, and live stock status as one clean row per product. Built for price-monitoring teams, German-market e-commerce analysts, and deal aggregators who need fresh Lidl.de pricing and assortment data without building and maintaining their own collector.

Why This Scraper?

  • Full pricing intelligence on every row — current price, original (struck-through) price, discount percentage, and currency code, so you can track every Lidl markdown and compute savings without a second lookup.
  • 7 sort orders, including Biggest discount and Best selling — surface clearance items and bestseller rankings on demand, not just Lidl's default relevance ordering.
  • Brand filter + in-stock-only toggle together — pull a clean SILVERCREST, PARKSIDE, or KRUPS catalog with sold-out noise stripped out in a single run.
  • Star ratings with the recommend breakdown — average score, total review count, and the would-recommend yes/no split captured for every rated product.
  • Three input modes, zero URL-building — plain keyword search, a pasted Lidl.de URL, or a direct product link; the type is detected for you automatically.
  • German product taxonomy in full — the main category plus the complete category breadcrumb path Lidl shows on each product.
  • Every product image, not just the thumbnail — the main image URL plus the full ordered image gallery array per product.
  • Up to the entire matching catalog per search — smooth automatic pagination walks all results for a keyword with a single total cap across the whole run.
  • Brand logos and order minimums — each row carries the brand logo URL and the minimum orderable quantity, ready for catalog and storefront builds.

Use Cases

Price Monitoring

  • Track current vs. original price on key products to catch every markdown
  • Watch discount percentages move over time across a category
  • Alert when a target item drops below a price threshold
  • Compare Lidl pricing against your own or a competitor's catalog

Competitive Intelligence

  • Pull a full single-brand catalog (e.g. PARKSIDE tools) for assortment analysis
  • Benchmark Lidl's bestseller ranking against your product line
  • Map which brands Lidl carries in a category and at what price points
  • Detect new product launches by sorting on Newest

Deal Aggregation

  • Feed a deals or coupon site with Lidl's biggest current discounts
  • Surface clearance items with the Biggest discount sort order
  • Build a daily "top markdowns" feed filtered to in-stock products
  • Rank deals by savings using current and original price together

Market Research

  • Analyze price distribution across an entire German product category
  • Study rating and review volume as a demand signal per product
  • Track stock availability patterns across the assortment
  • Build pricing histories for German-market retail studies

Catalog Building

  • Populate a product database with images, descriptions, and categories
  • Sync brand, category path, and pricing into a comparison engine
  • Enrich an existing catalog with Lidl ratings and stock status

Getting Started

Just one keyword and a small result cap to start:

{
"searchTerms": ["kaffee"],
"maxResults": 50
}

Brand Catalog, In Stock, Best Deals First

Pull only available PARKSIDE products, biggest discounts first:

{
"searchTerms": ["bohrmaschine"],
"brand": "PARKSIDE",
"inStockOnly": true,
"sortBy": "percentageDiscount-desc",
"maxResults": 200
}

Paste Lidl.de URLs Directly

Mix a search results page and a single product page — the type is detected automatically:

{
"startUrls": [
"https://www.lidl.de/q/search?q=bettw%C3%A4sche",
"https://www.lidl.de/p/silvercrest-kaffeevollautomat/p100123456"
],
"maxResults": 100
}

Multiple Terms, Newest First, Unlimited

{
"searchTerms": ["kaffee", "tee", "kakao"],
"sortBy": "firstOnlineDate-desc",
"maxResults": 0
}

Input Reference

What to Scrape

ParameterTypeDefaultDescription
searchTermsstring[]["kaffee"]Plain keywords to search Lidl.de for, such as kaffee, bohrmaschine, or bettwäsche. One search runs per term — no URLs to build. Add as many as you like.
startUrlsstring[][]Paste Lidl.de links directly: search result pages, category pages, or individual product pages. The type is detected automatically.

Filters

ParameterTypeDefaultDescription
sortByselectRelevanceOrder results are returned in: Relevance, Price: low to high, Price: high to low, Newest, Highest rated, Best selling, or Biggest discount. Applies to keyword and category searches.
brandstringnullOnly return products from a single brand, e.g. SILVERCREST, PARKSIDE, KRUPS. Enter the brand name exactly as Lidl shows it. Leave empty for all brands.
inStockOnlybooleanfalseWhen on, only products currently available to order online are returned.

Options

ParameterTypeDefaultDescription
maxResultsinteger100Maximum number of products to return in total across all search terms and URLs. Set to 0 to collect everything available. Start with 20–100 to test, then increase.

Output

One flat row per product. Here's a representative result:

{
"productId": "100123456",
"title": "SILVERCREST Kaffeevollautomat",
"brand": "SILVERCREST",
"brandLogo": "https://www.lidl.de/assets/silvercrest-logo.png",
"description": "Vollautomatische Kaffeemaschine mit Milchaufschäumer und 15 bar Druck.",
"canonicalUrl": "https://www.lidl.de/p/silvercrest-kaffeevollautomat/p100123456",
"price": {
"current": 199.0,
"currency": "EUR",
"originalPrice": 249.0,
"discountPercentage": 20
},
"mainImage": "https://www.lidl.de/p/media/silvercrest-1.jpg",
"images": [
"https://www.lidl.de/p/media/silvercrest-1.jpg",
"https://www.lidl.de/p/media/silvercrest-2.jpg"
],
"category": {
"main": "Haushalt",
"path": ["Haushalt", "Küche", "Kaffee & Espresso", "Kaffeevollautomaten"]
},
"ratings": {
"average": 4.6,
"count": 312,
"recommendedYes": 290,
"recommendedNo": 22
},
"stock": {
"available": true,
"minOrderQuantity": 1
},
"searchUrl": "https://www.lidl.de/q/search?q=kaffee",
"scrapedAt": "2026-06-17T14:30:00Z"
}

Core Fields

FieldTypeDescription
productIdstringUnique Lidl product identifier
titlestringProduct name
brandstringBrand name as shown on Lidl
brandLogostringBrand logo image URL
descriptionstringProduct description text
canonicalUrlstringDirect link to the Lidl.de product page

Pricing

FieldTypeDescription
price.currentnumberCurrent selling price
price.currencystringCurrency code (e.g. EUR)
price.originalPricenumberOriginal / struck-through price before discount; null when not discounted
price.discountPercentagenumberDiscount percentage off the original price

Images & Category

FieldTypeDescription
mainImagestringPrimary product image URL
imagesstring[]Full ordered gallery of product image URLs
category.mainstringTop-level category name
category.pathstring[]Full category breadcrumb path

Ratings

FieldTypeDescription
ratings.averagenumberAverage star rating; null when there are no reviews
ratings.countnumberTotal number of reviews
ratings.recommendedYesnumberReviewers who would recommend the product
ratings.recommendedNonumberReviewers who would not recommend the product

Stock & Meta

FieldTypeDescription
stock.availablebooleanWhether the product is currently available to order online
stock.minOrderQuantitynumberMinimum orderable quantity
searchUrlstringThe search or source URL this product came from
scrapedAtstringISO timestamp of data collection

Tips for Best Results

  • Start small to verify, then scale. Set maxResults to 20–100 on your first run to confirm the data matches your needs, then raise the cap or set it to 0 for everything.
  • Use Biggest discount to surface clearance. The percentageDiscount-desc sort order puts the deepest markdowns at the top — ideal for deal feeds and clearance tracking.
  • Pair brand with inStockOnly for a clean competitor catalog. A single brand name plus the in-stock toggle gives you a sellable, deduplicated assortment with no sold-out clutter.
  • Prefer keyword search for category coverage. Pasting a category page works, but typing the category keyword into searchTerms (e.g. kaffee) reliably returns the fullest set of products for that category.
  • Combine many terms in one run. Add several keywords to searchTerms to cover a whole product area at once — maxResults is a single total cap across all of them.
  • Sort by Newest to catch launches. The firstOnlineDate-desc order surfaces freshly added products first, perfect for new-arrival monitoring.
  • Enter brand names exactly as Lidl shows them. Lidl's own brands are typically uppercase (SILVERCREST, PARKSIDE, KRUPS); match the casing for a clean filter.

Pricing

From $2.50 per 1,000 results — priced below comparable Lidl product collectors on the market. Bronze, Silver, and Gold subscribers pay progressively less; the table below shows total cost at each discount tier.

ResultsNo discountBronzeSilverGold
100$0.30$0.28$0.27$0.25
1,000$3.00$2.80$2.65$2.50
10,000$30.00$28.00$26.50$25.00
100,000$300.00$280.00$265.00$250.00

A "result" is any product row in the output dataset. No compute or time-based charges — you pay per result, plus a small fixed per-run start fee.

Integrations

Export data in JSON, CSV, Excel, XML, or RSS. Connect to 1,500+ apps via:

  • Zapier / Make / n8n — Workflow automation
  • Google Sheets — Direct spreadsheet export
  • Slack / Email — Notifications on new results
  • Webhooks — Trigger custom APIs on run completion
  • Apify API — Full programmatic access

This actor is designed for legitimate price monitoring, market research, and competitive analysis of publicly available Lidl.de product listings. Users are responsible for complying with applicable laws and Lidl's Terms of Service. Do not use collected data for spam, harassment, or any illegal purpose. Only publicly available product information is collected — no personal data and no login-protected content.