Discover/Mindfactory API
live

Mindfactory APImindfactory.de

Access Mindfactory.de product data via API. Search PC hardware, retrieve detailed specs, and list categories. Includes prices, titles, and technical specifications.

Endpoint health
verified 2d ago
get_product_details
search_products
list_categories
3/3 passing latest checkself-healing
Endpoints
3
Updated
26d ago

What is the Mindfactory 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.

Try it
Page number for paginated results.
Search keyword (e.g. 'RTX 4090', 'Ryzen', 'DDR5')
api.parse.bot/scraper/35c45127-6fa7-4f5a-aeb4-01d1d73c6f8e/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/35c45127-6fa7-4f5a-aeb4-01d1d73c6f8e/search_products?page=1&query=RTX+4090' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace mindfactory-de-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.


from parse_apis.mindfactory_api import Mindfactory, Product, ProductDetail, Category

client = Mindfactory()

# Search for graphics cards
for product in client.products.search(query="RTX 4090", limit=5):
    print(product.name, product.price, product.url)

    # Navigate from search result to full product details
    detail = product.details()
    print(detail.title, detail.price)
    for spec_name, spec_value in detail.specifications.items():
        print(spec_name, spec_value)

# List all available categories
for category in client.categories.list():
    print(category.name, category.url)
All endpoints · 3 totalmissing one? ·

Search for products by keyword on Mindfactory.de. Returns product names, prices, and URLs matching the search query. Paginates via page number. Results typically contain 30-40 items per page.

Input
ParamTypeDescription
pageintegerPage number for paginated results.
queryrequiredstringSearch keyword (e.g. 'RTX 4090', 'Ryzen', 'DDR5')
Response
{
  "type": "object",
  "fields": {
    "products": "array of product objects each containing name (string), url (string, full product URL), and price (string, price with currency symbol)"
  },
  "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 API

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.

Reliability & maintenanceVerified

The Mindfactory API is a managed, monitored endpoint for mindfactory.de — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when mindfactory.de changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official mindfactory.de API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
2d ago
Latest check
3/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Monitor GPU and CPU prices on Mindfactory.de by running daily search_products queries and storing the returned price fields.
  • Build a hardware comparison tool by fetching specifications objects for multiple products via get_product_details.
  • Enumerate the full top-level category tree with list_categories to map Mindfactory's catalog structure.
  • Track price changes for a specific product SKU by polling get_product_details on 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 specifications key-value map.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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.

Frequently asked questions
Does Mindfactory.de offer an official developer API?+
Mindfactory.de does not publish a public developer API or data feed. There is no documented official endpoint for programmatic access to their product catalog.
What does the `specifications` field in `get_product_details` contain?+
It is a key-value object mapping spec attribute names to their values as listed on the product page. The keys vary by product category — a motherboard entry will have different attributes than a PSU or a RAM kit. There is no fixed schema; field names match what Mindfactory displays for that specific product type.
Does `search_products` return stock availability or inventory status?+
No. The search results include 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?+
Not currently. The API covers search results, category listings, and product specifications and pricing. Customer reviews and star ratings are not exposed by any endpoint. You can fork it on Parse and revise to add a reviews endpoint for individual product pages.
How does pagination work in `search_products`?+
The 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.
Page content last updated . Spec covers 3 endpoints from mindfactory.de.
Related APIs in EcommerceSee all →
metro.de API
Search and retrieve product information from Metro Germany's Online Marketplace and Wholesale Store, including detailed product data and refrigeration subcategories. Find exactly what you're looking for across both retail channels with comprehensive product listings and specifications.
pccomponentes.com API
Search and browse PC components across categories and retrieve detailed product information including technical specifications, pricing, availability, and customer reviews. Ideal for comparing hardware options across processors, graphics cards, laptops, and more.
megekko.be API
Search and browse the full Megekko product catalog, view detailed specs, pricing, and stock availability. Browse by category, use keyword search to find specific products, or explore shortcut endpoints for popular categories like GPUs and CPUs.
mediamarkt.be API
Search and browse MediaMarkt Belgium's product catalog to find electronics with detailed specifications, pricing, and available variants across all categories. Get comprehensive product information including descriptions and technical details to compare items before purchase.
adidas.de API
Search and browse Adidas products on adidas.de to find detailed information about items, availability, pricing, and specific categories. Get comprehensive product details including size availability and stock levels across the German Adidas store.
idealo.de API
Search for products on Idealo.de and retrieve detailed information including current seller offers, price history, technical specifications, and user and expert reviews. Compare prices across sellers and access comprehensive product data to evaluate deals.
amazon.de API
Search Amazon.de for products, retrieve detailed product information, customer reviews, seller and offer data, bestseller lists, and autocomplete suggestions.
microcenter.com API
Search for computer hardware and electronics products, view detailed specs and customer reviews, and check real-time inventory across Micro Center store locations. Browse current deals and explore products by category to find the best prices on tech gear.