Discover/Kaufland API
live

Kaufland APIkaufland.de

Access current Kaufland Germany promotional offers and store locations. Retrieve discounted products with pricing, discount %, validity dates, and nearby stores.

Endpoint health
verified 3d ago
search_products
get_offers
get_stores
3/3 passing latest checkself-healing
Endpoints
3
Updated
26d ago

What is the Kaufland API?

The Kaufland.de API provides 3 endpoints covering current promotional product offers and store location data from Kaufland Germany. The get_offers endpoint returns the full weekly deals catalog including each product's price, old price, discount percentage, and validity period. The search_products endpoint filters that catalog by keyword across name, subtitle, description, and category fields. The get_stores endpoint returns nearby store addresses, coordinates, and opening hours.

Try it

No input parameters required.

api.parse.bot/scraper/e55f8db6-78ff-4b7c-ab09-dcea5a2e8b37/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/e55f8db6-78ff-4b7c-ab09-dcea5a2e8b37/get_offers' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace kaufland-de-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Kaufland Germany API — browse weekly offers, search by keyword, find nearby stores."""
from parse_apis.kaufland_germany_api import Kaufland, InvalidQuery

client = Kaufland()

# List current promotional offers — limit caps total items fetched.
for offer in client.offers.list(limit=5):
    print(offer.name, offer.price, f"{offer.discount_percent}% off")

# Search offers by keyword, take the first match and inspect details.
result = client.offers.search(query="Milch", limit=1).first()
if result:
    print(result.name, result.subtitle, result.category, result.valid_to)

# Find nearby stores with opening hours.
store = client.stores.list(limit=1).first()
if store:
    print(store.name, store.street, store.city, store.zip)
    print(store.opening_hours)

# Typed error handling for invalid search input.
try:
    client.offers.search(query="", limit=1).first()
except InvalidQuery as exc:
    print(f"Invalid query: {exc}")

print("exercised: offers.list / offers.search / stores.list / InvalidQuery")
All endpoints · 3 totalmissing one? ·

Retrieve all currently available promotional products from Kaufland Germany. Returns the complete set of discounted items across all promotional categories with pricing, discount percentages, validity dates, and product details. The offers rotate weekly; items include food, beverages, household goods, and personal care products.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "total": "integer count of promotional products currently available",
    "products": "array of product objects each containing id, kl_nr, name, subtitle, category, price, formatted_price, old_price, discount_percent, valid_from, valid_to, unit, base_price, image, and description"
  },
  "sample": {
    "data": {
      "total": 41,
      "products": [
        {
          "id": "ART.345066_KAV.3468370",
          "name": "Span./ital. Wassermelone, lose",
          "unit": "je kg",
          "image": "https://kaufland.media.schwarz/is/image/schwarz/01125666FR",
          "kl_nr": "00398339",
          "price": 0.99,
          "category": "Unsere Knüller",
          "subtitle": null,
          "valid_to": "2026-06-10",
          "old_price": "1.99",
          "base_price": null,
          "valid_from": "2026-06-04",
          "description": "Kl. I",
          "formatted_price": "0.99",
          "discount_percent": 50
        }
      ]
    },
    "status": "success"
  }
}

About the Kaufland API

Promotional Offers

The get_offers endpoint returns the complete set of currently active promotional products across all Kaufland Germany categories. Each product object includes id, kl_nr, name, subtitle, category, price, formatted_price, old_price, and discount_percent, along with validity dates marking when the offer starts and ends. Kaufland rotates its promotional catalog weekly, so the dataset reflects the current week's active deals covering food, beverages, household goods, and more.

Keyword Search

The search_products endpoint accepts a required query string and filters the current week's promotional products against name, subtitle, description, and category fields using case-insensitive matching. The response includes a note field confirming the search scope (current week only), a total count, and a products array with the same field structure as get_offers. This is useful when you need to surface specific product types — for example, searching "Joghurt" or "Waschmittel" against the live deals.

Store Locations

The get_stores endpoint resolves nearby Kaufland store locations based on the requesting IP's geolocation. Each store object includes id, name, city, zip, street, friendly_url, lat, lng, and a structured opening_hours object covering the full week. The total field in the response indicates how many stores were returned. No query parameters are required; proximity is determined automatically.

Reliability & maintenanceVerified

The Kaufland API is a managed, monitored endpoint for kaufland.de — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when kaufland.de changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official kaufland.de API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3d ago
Latest check
3/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Display current Kaufland weekly deals with discount percentages and validity dates in a grocery savings app.
  • Alert users when a searched product keyword (e.g. 'Butter', 'Käse') appears in the current week's promotional offers.
  • Build a store finder widget showing the nearest Kaufland locations with addresses and opening hours.
  • Aggregate discount data across German supermarkets by ingesting Kaufland's discount_percent and old_price fields alongside other chains.
  • Track weekly offer rotation by comparing get_offers responses across consecutive weeks to identify new or removed products.
  • Power a price comparison tool showing price vs old_price for promoted Kaufland items by category.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Kaufland provide an official public developer API?+
Kaufland operates an official Marketplace Seller API for merchant integrations (documented at https://sellerapi.kaufland.com), but that API covers seller operations such as order management and product listings — not public promotional offers or store data. The promotional and store data this API exposes has no equivalent official public endpoint.
What does `get_stores` return, and can I search by city or zip code?+
The get_stores endpoint returns stores near the requesting IP's geolocation and includes city, zip, street, lat, lng, and weekly opening_hours per store. It does not currently accept a city name or zip code as an input parameter. The API covers IP-based proximity lookup. You can fork it on Parse and revise to add a location query parameter if you need explicit address-based filtering.
How current are the promotional offers, and do they include historical data?+
The get_offers and search_products endpoints reflect the current week's active promotions. Kaufland rotates its offers on a weekly cycle, so the dataset changes when a new promotional period begins. Historical offer data from previous weeks is not exposed. You can fork the API on Parse and revise it to add a data-logging layer if you need week-over-week history.
Are product reviews or ratings included in the offers data?+
No reviews or ratings fields are included. The product objects from get_offers and search_products cover pricing (price, old_price, formatted_price), discount_percent, validity dates, name, subtitle, and category. Review and rating data is not currently covered. You can fork the API on Parse and revise it to add a product reviews endpoint.
Does the API cover Kaufland stores outside Germany, such as in Czech Republic or Slovakia?+
The API is scoped to Kaufland Germany (kaufland.de). Store and promotional data for other countries where Kaufland operates is not currently covered. You can fork the API on Parse and revise it to point at the relevant country-specific Kaufland domain.
Page content last updated . Spec covers 3 endpoints from kaufland.de.
Related APIs in EcommerceSee all →
aldi.de API
Browse current and upcoming Aldi Nord offers, search products, and discover deals organized by category or date. Access detailed product information, weekly flyers, and explore items across all available categories to find the best bargains.
lidl.de API
Find the latest weekly promotions and browse Lidl Germany's bestselling products across different categories to discover deals and availability. Search for specific items to quickly locate what you're looking for in Lidl's product catalog.
rewe.de API
Search REWE online shop products with local delivery pricing by German postal code, browse the delivery catalog, and check whether delivery or pickup is available in a given area.
edeka24.de API
Browse and search EDEKA24's product catalog, view detailed product information and categories, and manage your shopping cart all programmatically. Authenticate your account, add items to your cart, and proceed to checkout seamlessly through automated requests.
5ka.ru API
Search and browse Pyaterochka's complete product catalog with real-time pricing, nutritional details, and special offers across all store locations. Find categories, compare products, and access the latest deals from Russia's popular grocery chain.
spesaonline.conad.it API
Find nearby Conad supermarkets and view their current promotional flyers to discover product prices and discounts. Access detailed store information like location and hours to plan your shopping trips.
carrefour.it API
Search and browse Carrefour Italy's product catalog across categories, view detailed product information, find nearby store locations, and discover current promotions all in one place. Explore online grocery selections and compare products by price, brand, and availability.
lidl.nl API
Browse Lidl Netherlands weekly leaflet offers, search the online assortment, fetch detailed product information by ERP/product IDs, and retrieve current bestsellers with pricing and availability.