tweakers.net APItweakers.net ↗
Access Tweakers.net product listings, price comparisons, webshop data, news articles, and search results via a structured JSON API. 6 endpoints.
curl -X GET 'https://api.parse.bot/scraper/6a8c712c-53b9-4c5f-b9c1-917f775abfeb/get_laptops_with_nvidia_gpu' \ -H 'X-API-Key: $PARSE_API_KEY'
Get products filtered by GPU from Tweakers Pricewatch. Returns product names, specs, prices, and product IDs in the editions layout.
| Param | Type | Description |
|---|---|---|
| page | integer | Pagination page number. |
| gpu_id | string | GPU filter ID used in the Tweakers Pricewatch facet system (numeric string). |
{
"type": "object",
"fields": {
"url": "string, the constructed filter URL",
"items": "array of laptop objects with product_id, name, url, specs, and price"
},
"sample": {
"data": {
"url": "https://tweakers.net/laptops/vergelijken/?f3433=26676&pi=1&layoutMode=editions",
"items": [
{
"url": "https://tweakers.net/pricewatch/2216218/asus-rog-strix-g16-g614pm-s5004w.html",
"name": "ASUS ROG Strix G16 G614PM-S5004W",
"price": "vanaf € 1.349,- bij 8 winkels",
"specs": "16\" • 2560x1600 • 1TB • AMD Ryzen 9",
"product_id": "2216218"
}
]
},
"status": "success"
}
}About the tweakers.net API
The Tweakers.net API exposes 6 endpoints covering product price comparisons, laptop listings with GPU filtering, webshop directories, and news articles from the leading Dutch tech and price-comparison platform. The get_laptop_product_detail endpoint, for example, returns per-shop prices, delivery info, and key specifications like GPU, screen size, and RAM for any tracked product ID. Whether you need live price data across Dutch webshops or dated news archives, each endpoint returns clean structured JSON.
Product & Price Data
The get_laptops_with_nvidia_gpu endpoint queries the Tweakers Pricewatch catalogue filtered by a numeric gpu_id facet, returning an array of laptop objects — each with product_id, name, url, specs, and price. Pagination is supported via the page parameter. For a specific product, get_laptop_product_detail accepts a product_id (and optional product_slug) and returns the product title, a prices array with one entry per webshop showing shop, price, and delivery, and a key_specs object with labelled values (e.g. Videochip, Schermdiagonaal, Werkgeheugen).
Webshops & Search
get_webshops returns the full list of retailers tracked by Pricewatch, including each shop's name and product_count — useful for knowing coverage breadth before querying prices. search_products accepts a free-text query and returns matching results, each carrying name, url, and a category label (Artikel or Product), so you can distinguish editorial content from catalogue entries in one call.
News & Editorial Content
get_top_stories pulls the current 10 featured stories from the Tweakers homepage, returning title, url, and replies count per story. get_news_articles accepts an optional date parameter in YYYYMMDD format (defaulting to the current UTC date) and returns a dated list of articles with title, url, time (author name), and replies count. This makes it straightforward to reconstruct a daily publication index for any past date.
- Track price fluctuations across Dutch webshops for a specific laptop using
get_laptop_product_detailand the per-shoppriceanddeliveryfields. - Build a GPU-filtered laptop comparison tool by querying
get_laptops_with_nvidia_gpuwith differentgpu_idvalues and paginating through results. - Monitor daily Dutch tech news coverage by fetching
get_news_articlesfor specific dates and indexing the returnedtitleandurlfields. - Audit webshop coverage in Pricewatch by pulling
get_webshopsand sorting retailers byproduct_count. - Surface trending tech topics by aggregating
repliescounts fromget_top_storiesandget_news_articles. - Power a product search widget by calling
search_productsand filtering results bycategoryto separate articles from product listings.
| 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 Tweakers.net have an official developer API?+
What does `get_laptop_product_detail` return and how specific is the pricing data?+
prices array where each entry names the shop, states the price, and includes a delivery note. It also returns a key_specs object with labelled hardware attributes — field names appear in Dutch, e.g. Videochip for GPU and Werkgeheugen for RAM. You need to supply the numeric product_id; the product_slug is optional and used only for URL construction.Is the GPU filter in `get_laptops_with_nvidia_gpu` limited to Nvidia GPUs?+
gpu_id parameter, which accepts any numeric facet ID used in Tweakers Pricewatch. The response covers whichever GPU family corresponds to the supplied ID. The current API does not enumerate available GPU facet IDs. You can fork the API on Parse and add an endpoint that lists available facet values.Does the API cover user reviews, forum posts, or product ratings?+
How far back does `get_news_articles` go, and how fresh is the data?+
YYYYMMDD format, so you can query historical publication dates. However, availability of older dates depends on what Tweakers.net retains in its archive structure. The endpoint defaults to the current UTC date when no date is supplied, so same-day articles should be accessible as they are published.