What can yo do with the Tweakers Product API?
- Scrape all resellers of a product from Tweakers.net based on the EAN code
- Scrape prices of all sellers from Tweakers.net based on the EAN code
API response
![]() |
|
request_id | unique ShoppingScraper request_id | |
query link | link | the requested url from ShoppingScraper |
ean | the requested EAN code | |
endpoint | type | endpoint used |
app | chosen tweakers.net app | |
metadata | additional metadata to be used for your own internal references | |
geo | country | selected country for request |
language | selected language | |
status | response | server response from the request (200/404/500) |
message | status message from the request | |
stats | results | number of sellers found for this EAN |
timestamp | record of the time of the request | |
pagespeed | amount of seconds of request | |
results | classification | type of data returned |
title | matched product title with EAN | |
brand | brand of the product | |
ean/mpn | requested EAN and reported | |
extended | additional EAN/MPN codes how this product can be identified | |
stats offers | number of offers found for this | |
sku | Tweakers ID | |
link | Link on tweakers.net | |
currency | used currency of country | |
stats offers | number of sellers found for this EAN | |
offers price | price of product at specific seller offer | |
offers shipment | shipment type of seller offer | |
offers shippingCosts | shipping costs of specific seller offer | |
offers totalPrice | total price incl. shipping of specific seller offer | |
offers seller | seller name | |
offers state | state of specific product offer | |
offers ranking | ranking of product offer | |
content thumbnail | thumbnail image found | |
Parameters
Description | Example values | |
metadata | Add your own metadata to your request, will be added to the payload | internal product id = 5555 |
country_code | Any ISO 3166-1 country code where Tweakers.net is active | nl |
ean_gtin | Identify any product with EAN/GTIN code | 190198512154 or 5702016368635 |
api_key | Your ShoppingScraper API key | no example to show here 😉 |
sellers | Adds all sellers and buy box information | true or false |
Matching
We only return data if we are 100% certain. We match products based on the EAN/GTIN code on tweakers.net
Sample URL
https://api.shoppingscraper.com/product/tweakers/{COUNTRY_CODE}/{EAN_GTIN}?api_key={API_KEY}&metadata={producitd:5555}
Sample payload
{ "shoppingscraper": { "request_id": "c741d055-cb97-4672-9214-121d9fbf3296", "query": { "link": "http://api.shoppingscraper.com/product/tweakers/nl/4710469341250?metadata=producitd%3A5555", "ean": "4710469341250", }, "endpoint": { "type": "product", "app": "tweakers.net" }, "metadata": { "producitd": "5555" }, "geo": { "country": "nl", "language": "nl" }, "status": { "response": 200, "message": "OK" }, "stats": { "results": 1, "timestamp": "Tue Aug 30 2022 14:11:31 UTC+0000", "pagespeed": 1.303 }, "results": [ { "classification": "product", "title": "Aten UC8000: Podcast AI Audio Mixer | MicLive", "brand": "Aten", "category": [ ], "ean": "4710469341250", "mpn": "UC8000", "extended": { "mpn": [ "UC8000", "UC8000-AT" ] }, "sku": "1808824", "link": "https://tweakers.net/pricewatch/1808824/aten-uc8000-podcast-ai-audio-mixer-miclive.html", "currency": "EUR", "ranking": { }, "stats": { "offers": 5 }, "offers": [ { "price": 272.25, "shipment": "Delivery within 1 weekday", "shippingCosts": 4.95, "totalPrice": 277.2, "seller": "HardwareWebwinkel.nl", "state": "new", "ranking": { "productList": 1 } }, { "price": 281.32, "shipment": "Delivery within 2 weekdays", "shippingCosts": 0.0, "totalPrice": 281.32, "seller": "RedShell.nl | zakelijk", "state": "new", "ranking": { "productList": 2 } }, { "price": 298.86, "shipment": "Delivery within 9 weekdays", "shippingCosts": 2.95, "totalPrice": 301.81, "seller": "Max ICT B.V.", "state": "new", "ranking": { "productList": 3 } }, { "price": 339.0, "shipment": "Delivery within 5 weekdays", "shippingCosts": 3.95, "totalPrice": 342.95, "seller": "Megekko", "state": "new", "ranking": { "productList": 4 } }, { "price": 384.85, "shipment": "Delivery within 5 weekdays", "shippingCosts": 0.0, "totalPrice": 384.85, "seller": "Amazon.nl", "state": "new", "ranking": { "productList": 5 } } ], "content": { }, "thumbnail": "https://tweakers.net/ext/i/2005054420.jpeg", "reviews": { } } ] } }
![]() |
|