# MediaMarkt Belgium — 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 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.

**Category:** E-commerce | **Website:** [mediamarkt.be/](https://mediamarkt.be/) | **Docs:** [parse.bot/marketplace/bb183df5-130e-42ac-b83b-6f38d5616382/mediamarkt-be-api](https://parse.bot/marketplace/bb183df5-130e-42ac-b83b-6f38d5616382/mediamarkt-be-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-mediamarkt-be-api-bb183df5/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_category_products

Get products from a specific MediaMarkt.be category page. Returns paginated product listings extracted from the category page's structured data. Category slugs can be obtained from the get_main_categories endpoint.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_slug` | string | Yes | Category slug as it appears in the URL path (e.g. 'laptop-866', 'huishouden-1271', 'telefonie-wearables-891'). Obtainable from get_main_categories endpoint. |
| `page` | integer | No | Page number to retrieve |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mediamarkt-be-api-bb183df5/get_category_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_slug":"<string>","page":"<integer>"}'
```

### get_main_categories

Retrieve main navigation categories from the MediaMarkt.be homepage. Returns category names, slugs (for use with get_category_products), and URLs.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mediamarkt-be-api-bb183df5/get_main_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_product_details

Get full details for a product including all technical specifications, color and storage variants, and pricing. Extracts data from the product detail page's structured data and HTML.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url_or_slug` | string | Yes | Product URL slug (e.g. 'apple-iphone-15-5g-128-gb-blue-mtp43zda-2107453') or full product URL |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mediamarkt-be-api-bb183df5/get_product_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url_or_slug":"<string>"}'
```

### search_products

Search for products on MediaMarkt.be by keyword. Returns paginated results with product names, prices, ratings, and images. Each page contains up to 12 products. Some common keywords may be redirected by the site to curated pages and return fewer results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number to retrieve. Each page contains up to 12 products. |
| `query` | string | Yes | Search keyword (e.g. 'hdmi kabel', 'iphone case', 'samsung tv') |

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