Skip to content

Lidl

Product data from Lidl — a first-party retailer, so results carry Lidl's own price rather than a multi-seller offer list. Delivered via partner data feeds in kwery's normalized shape.

Rolling out. Lidl is onboarding now and is not yet enabled by default on new accounts. Contact us to be enabled as it goes live — the API shape documented on this page is final and will not change.

Supported countries

country accepts: at be bg ch cy cz de dk ee es fi fr gr hr hu ie it lt lu lv mt nl pl pt ro rs se si sk uk

Lidl is a first-party retailer operating a searchable online shop across these 30 European markets; prices are returned in each market's local currency (EUR in most, with CHF, GBP, CZK, HUF, PLN, RON, BGN, RSD, SEK, and DKK in the respective non-euro markets). Lidl's remaining national sites (Bosnia-Herzegovina, North Macedonia) are corporate-only with no product catalog and are not available as sources.

Keys

KeyValuesDescription
termFree textKeyword search.
idLidl product IDDirect product lookup.

Topics

TopicDescription
search (default)Product page, including Lidl's price.

Lidl has no third-party seller list, so there is no search_and_offers topic — the price is Lidl's own (single first-party seller).

Response

Returns the standard normalized content object (see Sources overview): name, url, currency, price, availability, review_rating / review_count. The single Lidl price is returned as the buy-box; there is no multi-seller offers[].

Example request

curl -s https://api.kwery.co/job \
  -H "Authorization: Bearer $KWERY_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"source":"lidl","country":"de","key":"term","values":["Parkside Akkuschrauber"]}'

Example response

Results are fetched with GET /job/{id}/download once the job is finished — each entry is the result for one input value (abridged); a term search returns a list of product cards:

[
  {
    "key": "Parkside Akkuschrauber",
    "success": true,
    "reason": null,
    "content": {
      "products": [
        {
          "name": "Parkside Akkuschrauber 20V",
          "url": "https://www.lidl.de/p/1234567890",
          "currency": "EUR",
          "price": 39.99,
          "availability": "in_stock",
          "review_rating": 4.2,
          "review_count": 98
        }
      ]
    }
  }
]