Discover/edeka24 API
live

edeka24 APIedeka24.de

Access edeka24.de product data via 5 endpoints: search products, browse categories, get full product details with specs, and export results.

Endpoint health
verified 4d ago
get_categories
get_product_details
search_products
get_products_by_category
export_products
5/5 passing latest checkself-healing
Endpoints
5
Updated
26d ago

What is the edeka24 API?

The edeka24.de API gives developers programmatic access to the EDEKA24 online grocery catalog through 5 endpoints covering product search, category browsing, and individual product details. The get_product_details endpoint returns up to a dozen structured fields per product including price, unit price, images, description, and a key-value specifications table. Whether you need to track grocery prices, compare products, or map out the category tree, the API surfaces the structured data from one of Germany's major online supermarkets.

Try it
Number of results per page.
Search keyword (e.g. 'kaffee', 'milch', 'bio').
Offset for pagination (0-based item index).
api.parse.bot/scraper/744a348d-583f-495b-bfa0-78de7ed60562/<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/744a348d-583f-495b-bfa0-78de7ed60562/search_products?limit=24&query=kaffee&offset=0' \
  -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 edeka24-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.

"""Walkthrough: EDEKA24 SDK — search products, browse categories, get details."""
from parse_apis.edeka24_scraper_api import Edeka24, ProductNotFound

client = Edeka24()

# Search for coffee products — limit= caps total items fetched
for product in client.products.search(query="kaffee", limit=5):
    print(product.name, product.price, product.sku)

# Get the full category tree
category = client.categories.list(limit=3).first()
if category:
    print(category.name, len(category.subcategories))
    for sub in category.subcategories[:2]:
        print(f"  - {sub.name}", sub.url)

# Browse products in a category by URL
for item in client.categoryproducts.list(
    url="https://www.edeka24.de/Lebensmittel/Kaffee-Tee/Kaffee-gemahlen-Instant/",
    limit=3,
):
    print(item.name, item.price, item.unit_price)

# Drill into a product's full details — typed error catch
try:
    detail = client.productdetails.get(
        url="https://www.edeka24.de/Lebensmittel/Kaffee-Tee/Kaffee-gemahlen-Instant/EDEKA-Bio-Auslese-Kaffee-gemahlen-500G.html"
    )
    print(detail.name, detail.price, detail.unit_price)
    print(detail.description[:80])
    print(detail.specifications)
except ProductNotFound as exc:
    print(f"Product gone: {exc.url}")

# Export search results in a flat format
for row in client.exportitems.export(query="milch", limit=5):
    print(row.product_name, row.price, row.sku)

print("exercised: products.search / categories.list / categoryproducts.list / productdetails.get / exportitems.export")
All endpoints · 5 totalmissing one? ·

Full-text search over the edeka24.de product catalog via the Findologic search engine. Returns paginated product summaries including name, price, URL, image, and SKU. Pagination is offset-based; each page returns up to `limit` items starting from `offset`.

Input
ParamTypeDescription
limitintegerNumber of results per page.
queryrequiredstringSearch keyword (e.g. 'kaffee', 'milch', 'bio').
offsetintegerOffset for pagination (0-based item index).
Response
{
  "type": "object",
  "fields": {
    "total": "integer total number of matching products",
    "products": "array of product summaries with id, name, price, url, image_url, sku"
  },
  "sample": {
    "data": {
      "total": 396,
      "products": [
        {
          "id": "c284d997e3b94b765.16466055",
          "sku": "1594384008",
          "url": "https://www.edeka24.de/Lebensmittel/Kaffee-Tee/Kaffee-gemahlen-Instant/EDEKA-Bio-Auslese-Kaffee-gemahlen-500G.html",
          "name": "EDEKA Bio Auslese Kaffee gemahlen 500G",
          "price": 8.29,
          "image_url": "https://www.edeka24.de/out/pictures/generated/product/1/400_400_90/edeka-bio-kaffee-gemahlen.jpg"
        }
      ]
    },
    "status": "success"
  }
}

About the edeka24 API

Search and Browse Products

The search_products endpoint accepts a query string (e.g. 'kaffee' or 'milch') and returns paginated product summaries including id, name, price, url, image_url, and sku. Pagination is controlled via limit and offset parameters, and the response includes a total integer indicating the full result count for the query. For browsing by category rather than keyword, get_products_by_category accepts a full url pointing to any category page on edeka24.de and returns product cards with name, url, price, unit_price, image_url, and id, paginated using a 1-based page parameter.

Product Details and Specifications

The get_product_details endpoint takes a full product URL and returns the most complete data shape in the API: an internal id, name, price (in EUR), unit_price text (e.g. 'Grundpreis: 16,58 €/kg'), a description string, an images array, and a specifications object of key-value pairs sourced from the product's data table. This makes it suited for building product databases or price tracking tools where you need more than just a name and price.

Category Tree and Bulk Export

The get_categories endpoint requires no inputs and returns the full site navigation as a categories array, each entry containing a name, url, and nested subcategories array. This lets you enumerate all category paths programmatically without prior knowledge of the URL structure. For bulk data collection, export_products takes a query string and returns up to 100 results in a flat format with Product Name, Price, URL, and SKU fields — useful for quick CSV-style exports or data pipeline ingestion.

Reliability & maintenanceVerified

The edeka24 API is a managed, monitored endpoint for edeka24.de — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when edeka24.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 edeka24.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
4d ago
Latest check
5/5 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
  • Track price changes over time for specific grocery products using get_product_details with the price and unit_price fields
  • Build a German grocery price comparison tool using search_products across multiple keywords
  • Map the full edeka24.de product taxonomy using get_categories to extract the nested category tree
  • Scrape full product specs for a nutritional database using the specifications object from get_product_details
  • Generate bulk product feeds by combining get_products_by_category pagination with category URLs from get_categories
  • Export product SKUs and prices for inventory or procurement analysis using export_products
  • Identify product image URLs at scale for a visual catalog using images from get_product_details
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 edeka24.de have an official developer API?+
No. EDEKA24 does not publish a public developer API or documented data access program. This Parse API provides structured access to the product catalog data available on the site.
What does the `get_product_details` endpoint return beyond basic price?+
It returns a specifications object with key-value pairs from the product data table (e.g. ingredients, weight, allergens depending on the product), a description string, an images array, and a unit_price string showing the per-unit cost. The price field is numeric in EUR.
How does pagination work across the search and category endpoints?+
search_products uses 0-based offset and limit parameters alongside a total integer in the response, letting you calculate how many pages exist. get_products_by_category uses a 1-based page parameter but does not currently return a total product count in its response, so iterating pages until an empty result is returned is the reliable stopping condition.
Does the API expose customer reviews or ratings for products?+
Not currently. The API covers product details, pricing, specifications, images, and category structure. You can fork this API on Parse and revise it to add a review-fetching endpoint if the product pages expose review data.
Is cart or checkout functionality available through this API?+
Not currently. The API is read-only and covers catalog data: search, category browsing, product details, and exports. Cart management and checkout are not included. You can fork this API on Parse and revise it to add cart-related endpoints.
Page content last updated . Spec covers 5 endpoints from edeka24.de.
Related APIs in Food DiningSee all →
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.
carrefour.eu API
Search and browse Carrefour's European online product catalog to access pricing, promotions, availability, and detailed product information including nutritional data. Retrieve comprehensive product details across categories to compare prices and find current deals in real-time.
nemlig.com API
Search and browse grocery products across categories on nemlig.com, view detailed product information and recipes, check current promotional offers, and manage a shopping basket. Add items to a basket and organize them before checkout.
ocado.com API
Search and browse Ocado UK's grocery catalog, view detailed product information including nutritional data, and discover related items to add to your cart. Get instant search suggestions and manage your shopping cart contents all in one place.
adidas.de API
Search and browse Adidas products on adidas.de to find detailed information about items, availability, pricing, and specific categories. Get comprehensive product details including size availability and stock levels across the German Adidas store.
migros.ch API
Search and browse Migros' product catalog to find items by name or category, view detailed product information, and discover current promotional offers. Get everything you need to shop smarter at Switzerland's leading supermarket.
metro.de API
Search and retrieve product information from Metro Germany's Online Marketplace and Wholesale Store, including detailed product data and refrigeration subcategories. Find exactly what you're looking for across both retail channels with comprehensive product listings and specifications.
bigbasket.com API
Browse and search BigBasket's online grocery catalog. Retrieve product details, pricing, stock availability, category trees, search suggestions, homepage promotions, and delivery coverage — all in one API.