mydealz.de APImydealz.de ↗
Search MyDealz.de deals by keyword. Returns price, temperature score, merchant, comment count, expiry status, and pagination across results.
curl -X GET 'https://api.parse.bot/scraper/4cc1290b-69dc-4ceb-a3c6-fce01d39d459/search_deals?page=1&query=laptop' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for deals on MyDealz.de by keyword. Returns a paginated list of deals with metadata including price, temperature (rating), comment count, merchant info, and expiry status.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. |
| query | string | Search keyword. Supports multi-word queries (e.g. 'Philips Hue', 'Smart Home'). |
{
"type": "object",
"fields": {
"deals": "array of deal objects with thread_id, title, price, temperature, comment_count, is_expired, merchant, deal_url, image_url, description, and more",
"query": "string, the original search query",
"pagination": "object with current_page, last_page, total_items"
},
"sample": {
"data": {
"deals": [
{
"price": 29.97,
"title": "Philips HUE White Ambiance Lampe 2erDeals ab 13€",
"deal_url": "https://www.mydealz.de/share-deal/2775937",
"merchant": "Amazon",
"image_url": "https://www.mydealz.de/assets/threads/raw/2775937_1.jpg",
"thread_id": "2775937",
"is_expired": false,
"updated_at": 1778148693,
"description": "Auf viele Philips Hue White & Ambiance Lampen...",
"expiry_date": {
"timestamp": 1778536740
},
"temperature": 202.23,
"published_at": 1778074513,
"comment_count": 23,
"display_price": null,
"next_best_price": 35.26,
"temperature_level": "Hot3"
}
],
"query": "Philips Hue",
"pagination": {
"last_page": 16,
"total_items": 461,
"current_page": 1
}
},
"status": "success"
}
}About the mydealz.de API
The MyDealz.de API provides access to deal listings from Germany's largest deal-sharing community through a single search_deals endpoint that returns up to 10 structured fields per deal, including price, community temperature score, merchant name, comment count, and expiry status. You can paginate through results and query multi-word search terms like 'Smart Home' or 'Philips Hue' to retrieve targeted deal data at scale.
What the API Returns
The search_deals endpoint accepts a query string and an optional page integer, and returns a paginated list of deal objects from MyDealz.de. Each deal object includes a thread_id, title, price, deal_url, image_url, and a short descrip field. Alongside these basics, you get community-sourced signals: temperature (the community upvote/downvote score), comment_count, and is_expired — a boolean indicating whether the deal is still active.
Merchant and Pagination Data
Each deal also includes a merchant field identifying the retailer associated with the listing. This lets you filter or group results by store without additional lookups. The response wraps all deal objects in a top-level deals array and includes a pagination object with current_page, last_page, and total_items, so you can iterate through multi-page result sets programmatically.
Query Flexibility
The query parameter supports multi-word search terms and returns deals matching the full phrase, mirroring what a user would type into the MyDealz.de search bar. The original query string is echoed back in the response under the query field for reference. If no query is provided, the endpoint can still return results, making it useful for general deal browsing.
Source Context
MyDealz.de is operated by Pepper Media and is the German-language counterpart to hotukdeals and dealsea. Deal data reflects community submissions and voting, so temperature and comment_count are crowd-sourced signals rather than retailer-provided metrics. Deal availability and pricing are subject to change at the source.
- Monitor price drops on specific products by polling
search_dealswith a product name and checking thepricefield over time. - Filter out stale offers by checking the
is_expiredfield before surfacing results to end users. - Rank deals by community interest using the
temperaturescore to surface the most-voted offers. - Aggregate deals by retailer using the
merchantfield to compare offers across stores for a given search term. - Build deal alert notifications by tracking
comment_countchanges on a specificthread_idacross poll intervals. - Paginate through full search result sets using
current_pageandlast_pageto collect all matching deals for a category.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.
Does MyDealz.de have an official developer API?+
What does the `temperature` field represent?+
temperature field is MyDealz.de's community rating score for a deal, calculated from upvotes and downvotes submitted by registered users. A higher positive value indicates strong community approval; negative values indicate the deal has been downvoted. It is not a price comparison metric — it reflects user sentiment toward the deal's quality.Does the API return deal comments or the full deal description?+
comment_count integer and a short descrip snippet per deal, but does not return individual comment threads or the full long-form deal description. The deal_url field points to the original MyDealz.de thread where full details appear. You can fork this API on Parse and revise it to add an endpoint that fetches the complete deal thread content.Is deal data limited to Germany or does it cover other Pepper Media sites?+
How fresh is the deal data, and are expired deals returned in results?+
is_expired boolean field is included in every deal object, so expired listings can appear in search results — they are flagged rather than excluded. Filtering on is_expired: false in your application logic is the recommended approach for active-deals-only use cases.