# Mindfactory — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search and browse PC hardware products from Mindfactory.de, including detailed specifications, pricing, and category listings. Find exactly what components you need with powerful search capabilities across their full inventory of computer parts and peripherals.

**Category:** E-commerce | **Website:** [mindfactory.de/](https://mindfactory.de/) | **Docs:** [parse.bot/marketplace/557fd822-6123-4a44-bd40-6b7c66b79f3e/mindfactory-de-api](https://parse.bot/marketplace/557fd822-6123-4a44-bd40-6b7c66b79f3e/mindfactory-de-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-mindfactory-de-api-557fd822/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product_details

Retrieve full details for a product by its URL. Includes title, price, and technical specifications as key-value pairs. The URL can be obtained from search_products results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full product URL or relative path on Mindfactory.de (e.g. 'https://www.mindfactory.de/product_info.php/search/true/Alphacool-Core-Geforce-RTX-4090-Reference-Design-mit-Backpl_1489213.html') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mindfactory-de-api-557fd822/get_product_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### list_categories

List main product categories available on Mindfactory.de. Returns category names and their relative URL paths. Categories include Hardware, Monitore, Software, Notebook & PC, Kommunikation, Entertainment, and Heim & Garten.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mindfactory-de-api-557fd822/list_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_products

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for paginated results. |
| `query` | string | Yes | Search keyword (e.g. 'RTX 4090', 'Ryzen', 'DDR5') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mindfactory-de-api-557fd822/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","query":"<string>"}'
```
