Deichmann Scraper — German Shoe Prices & Stock
Pricing
from $1.20 / 1,000 result scrapeds
Deichmann Scraper — German Shoe Prices & Stock
Scrape product data from deichmann.com, Europe's largest shoe retailer. Extract names, brands, prices, sizes, stock levels, and images via Deichmann's own product search API.
Pricing
from $1.20 / 1,000 result scrapeds
Rating
0.0
(0)
Developer
Studio Amba
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
19 hours ago
Last modified
Categories
Share
Deichmann Scraper
Pull product data from deichmann.com, Europe's largest shoe retailer with stores across roughly 24 countries. This scraper pulls directly from Deichmann's own product search API, so it returns clean, structured data -- brand, price, per-size stock, images -- without any HTML parsing.
How to scrape Deichmann data
Give the actor a search term in German (e.g. "sneaker", "stiefel", "laufschuhe") and it queries Deichmann's search endpoint directly, paginating until it hits maxResults or runs out of matching products. There's nothing to configure beyond the search term -- no category URLs to hunt down, no pagination logic to babysit.
Under the hood, Deichmann's storefront (built on the SCAYLE headless-commerce platform) calls an unauthenticated JSON API at api.deichmann.com for every search and category browse. This actor talks to that same API directly instead of rendering pages and parsing HTML, which makes it faster and far less likely to break when Deichmann tweaks its frontend markup.
If you don't provide any input, it defaults to searching for "sneaker" as a demo.
Input
| Field | Type | Description |
|---|---|---|
searchQuery | string | Search term, in German (e.g. "stiefel", "sandalen", "sportschuhe") |
maxResults | integer | Cap on number of products returned (default: 100) |
proxyConfiguration | object | Apify proxy settings. Deichmann's product API has no anti-bot protection, so the default Apify proxy is sufficient -- no residential proxy needed |
What you get back
| Field | Type | Example |
|---|---|---|
name | string | "Rieker Damen Hochschaftstiefel Schwarz" |
brand | string | "Rieker" |
price | number | 89.95 |
originalPrice | number | null | 39.99 (only set when the item is discounted) |
currency | string | "EUR" |
discount | string | null | "-30%" |
sku | string | "RI93157-00" |
productId | string | "m02512576_02512578_02512579" |
inStock | boolean | null | true (null only if the source omits stock data) |
stockLevel | integer | null | 242 (total units across all sizes) |
url | string | Full product page URL |
imageUrl | string | Primary product image |
imageUrls | array | All product images |
category | string | null | "Classic high boot" |
sizes | array | Per-size stock: [{"size": "41", "inStock": true, "stockQuantity": 7}] |
scrapedAt | string | ISO timestamp |
Sample output
{"name": "Skechers Sneaker-Socken Weiß","brand": "Skechers","price": 9.99,"originalPrice": null,"currency": "EUR","discount": null,"sku": "02512578","productId": "m02512576_02512578_02512579","inStock": true,"stockLevel": 242,"url": "https://www.deichmann.com/de-de/p/skechers-5x-sneaker-socken-weiss-101233","imageUrl": "https://asset.deichmann.com/images/f_auto,q_auto,w_800/02512578_1/img","imageUrls": ["https://asset.deichmann.com/images/f_auto,q_auto,w_800/02512578_1/img","https://asset.deichmann.com/images/f_auto,q_auto,w_800/02512578_2/img"],"category": "Sneaker sock","sizes": [{ "size": "39-42", "inStock": true, "stockQuantity": 158 }],"scrapedAt": "2026-08-24T09:19:04.134Z"}
Use cases
- Price monitoring -- track Deichmann's own price and discount changes over time on the styles you sell against.
- Stock tracking --
sizesgives you per-size availability, useful for spotting which sizes sell out fastest. - Assortment research -- see which brands and shoe categories Deichmann is pushing, and at what price points.
- Market comparison -- Deichmann's low-price positioning makes it a useful reference point when benchmarking footwear pricing across the German market.
Coverage
v1 covers the German storefront (deichmann.com/de-de) -- Germany is Deichmann's flagship market and the site's own default locale. Deichmann runs the same storefront platform across roughly 24 country sites (Austria, Switzerland, the Benelux, Poland, Czechia, Spain, and more); other locales are a straightforward parameter change and may follow in a later version.
Performance and cost
The scraper hits Deichmann's JSON API directly -- no browser rendering, no HTML parsing -- so it's fast. A run of 100 products typically completes in well under 10 seconds and uses a fraction of a compute unit. You're billed per actor start plus per result scraped; check the current per-event pricing on this actor's page before running at scale. Your run's usage cost only settles after the run reports SUCCEEDED -- checking cost mid-run will undercount it.
Limitations
- German locale only in v1 (
de-de). Other Deichmann-operated country sites aren't covered yet. - Ratings and review counts aren't exposed by the search API, so they're not included in the output.
- The API's
X-Charybdisheader (a shop-configuration blob) was harvested from a live browsing session. It's static shop config, not a rotating secret, but if Deichmann ever regenerates it, requests will start failing until the actor is updated. - Search is keyword-based, matching Deichmann's own on-site search. It does not accept direct product or category URLs.
Related scrapers
If you're covering German fashion and footwear retail more broadly, also check out:
- Intersport Scraper -- German sporting goods, including athletic footwear
- Bergfreunde Scraper -- outdoor gear and hiking footwear
- Helly Hansen Scraper -- outdoor apparel and footwear
- Douglas Scraper -- German beauty and lifestyle retail
Support
Found an issue or need a different locale covered? Open an issue on this actor's Apify Store page and we'll take a look.