Price-comparison data from guenstiger.de — a product with its full list of seller offers.
country accepts: de
Guenstiger is a single-market source (guenstiger.de).
| Key | Values | Description |
|---|---|---|
term | Free text | Keyword search. |
id | guenstiger.de product ID (numeric) | Direct product lookup. |
gtin | EAN / GTIN-13 | Resolved to the matching product, then fetched. A GTIN may also resolve directly to a set of offers when no distinct product page exists. |
| Topic | Description |
|---|---|
search (default) | Product page, including the lead (cheapest) offer. |
search_and_offers | Also fetches the full per-seller offer list. |
Returns the standard normalized content object (see Sources overview): name, url, currency, price_min / price_avg / price_max, offers_count, offers[], review_rating / review_count.
As a price-comparison source, the per-seller offer list is the main payload: with search_and_offers, offers[] carries each seller's name, price, currency, and shipping.
curl -s https://api.kwery.co/job \
-H "Authorization: Bearer $KWERY_API_KEY" \
-H "Content-Type: application/json" \
-d '{"source":"guenstiger","country":"de","key":"term","topic":"search_and_offers","values":["Tissot T-Touch Expert Solar"]}'Results are fetched with GET /job/{id}/download once the job is finished — each entry is the result for one input value (abridged):
[
{
"key": "Tissot T-Touch Expert Solar",
"success": true,
"reason": null,
"content": {
"name": "Tissot T-Touch Expert Solar",
"url": "https://www.guenstiger.de/product/1234567890",
"currency": "EUR",
"price_min": 799.00,
"price_avg": 849.50,
"price_max": 899.00,
"offers_count": 2,
"offers": [
{ "shop_name": "watch-shop-de", "price": 799.00, "currency": "EUR", "shipping": 0 },
{ "shop_name": "uhrencenter24", "price": 899.00, "currency": "EUR", "shipping": 4.95 }
],
"review_rating": 4.3,
"review_count": 56
}
}
]