mindfactory.de APImindfactory.de ↗
Access Mindfactory.de product data via API. Search PC hardware, retrieve detailed specs, and list categories. Includes prices, titles, and technical specifications.
curl -X GET 'https://api.parse.bot/scraper/35c45127-6fa7-4f5a-aeb4-01d1d73c6f8e/search_products?page=1&query=Ryzen' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for products by keyword on Mindfactory.de. Returns product names, prices, and URLs matching the search query.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for paginated results. |
| queryrequired | string | Search keyword (e.g. 'RTX 4090', 'Ryzen') |
{
"type": "object",
"fields": {
"products": "array of product objects each containing name, url, and price"
},
"sample": {
"data": {
"products": [
{
"url": "https://www.mindfactory.de/product_info.php/search/true/Alphacool-Core-Geforce-RTX-4090-Reference-Design-mit-Backpl_1489213.html",
"name": "Alphacool Core Geforce RTX 4090 Reference Design mit Backplate",
"price": "€128,62*"
},
{
"url": "https://www.mindfactory.de/product_info.php/search/true/Alphacool-Eisblock-Aurora-Geforce-RTX-4090-GameRock-Phantom_1492965.html",
"name": "Alphacool Eisblock Aurora Geforce RTX 4090 GameRock + Phantom mit Backplate",
"price": "€118,74*"
}
]
},
"status": "success"
}
}About the mindfactory.de API
The Mindfactory.de API provides 3 endpoints to search, browse, and inspect PC hardware products from one of Germany's major online computer component retailers. The get_product_details endpoint returns a full specifications object alongside the product title and price, while search_products lets you query the catalog by keyword — covering GPUs, CPUs, memory, and other components — with paginated results.
Endpoints and Data Coverage
The API covers three operations. search_products accepts a required query string (e.g. 'RTX 4090' or 'Ryzen') and an optional page integer for pagination. It returns an array of product objects each containing name, url, and price. This is useful for scanning catalog availability or tracking price changes across a keyword segment.
get_product_details takes a full or relative product URL — such as /product_info.php/articles/ProductName_1234567.html — and returns title, price (with currency symbol), url, and a specifications object. The specifications field is a key-value map of technical attributes as listed on the product page, covering fields like clock speed, TDP, form factor, or memory capacity depending on the product type.
Category Navigation
list_categories requires no inputs and returns an array of top-level category objects, each with a name and url. This is the starting point for building category-level browsing or monitoring price trends within a specific hardware segment such as graphics cards or SSDs. The category URLs can be used alongside product URLs to understand catalog structure.
Data Notes
Prices are returned as strings with the currency symbol attached, matching what is displayed on the Mindfactory.de product and search pages. Specification keys in get_product_details vary by product type — a CPU listing will expose different spec fields than a monitor or a power supply. There is no separate endpoint for reviews, stock levels, or seller ratings.
- Monitor GPU and CPU prices on Mindfactory.de by running daily
search_productsqueries and storing the returnedpricefields. - Build a hardware comparison tool by fetching
specificationsobjects for multiple products viaget_product_details. - Enumerate the full top-level category tree with
list_categoriesto map Mindfactory's catalog structure. - Track price changes for a specific product SKU by polling
get_product_detailson a known product URL. - Aggregate search results across multiple keyword queries to audit which component brands appear most in Mindfactory's catalog.
- Feed structured PC hardware specs into a configurator or compatibility checker using the
specificationskey-value map.
| 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 Mindfactory.de offer an official developer API?+
What does the `specifications` field in `get_product_details` contain?+
Does `search_products` return stock availability or inventory status?+
name, url, and price per product. Stock levels, availability labels, and delivery estimates are not included in the current response. You can fork this API on Parse and revise it to add an availability field from the product detail page.Can I retrieve user reviews or ratings for a product?+
How does pagination work in `search_products`?+
page parameter is an optional integer that selects the result page. If omitted, the first page of results is returned. There is no metadata field in the response indicating total result count or total pages, so iteration requires incrementing page until an empty or short result set is returned.