# Bosch Home — 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 Bosch home appliances by model number (E-Nr) to retrieve product details, documentation, spare parts, and accessories. Access PDF manuals, installation instructions, data sheets, interactive online manuals, exploded-view diagrams, and compatible accessories for Bosch appliances.

**Category:** E-commerce | **Website:** [bosch-home.com/](https://bosch-home.com/) | **Docs:** [parse.bot/marketplace/70063d98-be88-4577-9dac-f9eb1d0735a0/bosch-home-com-api](https://parse.bot/marketplace/70063d98-be88-4577-9dac-f9eb1d0735a0/bosch-home-com-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-bosch-home-com-api-70063d98/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_accessories

Retrieve compatible accessories and cleaning/care products for a Bosch appliance. Returns two separate lists: accessories (fixing kits, hoses, filters) and cleaning products (descalers, machine cleaners). Some models may have empty results for one or both categories depending on appliance type.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `model_number` | string | Yes | The full model number (E-Nr) of the appliance including version suffix (e.g. WGG24400GB/01). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bosch-home-com-api-70063d98/get_accessories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model_number":"<string>"}'
```

### get_all_product_documents

Retrieve all available documentation links for a Bosch appliance, including PDF manuals, installation instructions, data sheets, energy labels, and interactive manual URLs. Each document has a title, URL, and type classification (PDF, Interactive, or Unknown).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `model_number` | string | Yes | The full model number (E-Nr) of the appliance including version suffix (e.g. WGG24400GB/01). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bosch-home-com-api-70063d98/get_all_product_documents \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model_number":"<string>"}'
```

### get_manual_content

Retrieve the detailed JSON content of the interactive online user manual for a Bosch appliance. Returns a structured document with chapters, safety instructions, and operating guides organized as a tree of childnodes. Not all models have an interactive manual available; returns upstream_error if no manual is found for the given model.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `language` | string | No | Language and region code for the manual content. |
| `model_number` | string | Yes | The full model number (E-Nr) of the appliance including version suffix (e.g. WGG24400GB/01). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bosch-home-com-api-70063d98/get_manual_content \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"language":"<string>","model_number":"<string>"}'
```

### get_product_details

Retrieve comprehensive product details for a Bosch appliance including series, type, display name, image, and full technical specifications parsed from the product page JSON-LD structured data. The model_number must include the version suffix (e.g. WGG24400GB/01) obtained from search_manual_by_model_number results. Specifications are key-value pairs covering energy class, dimensions, programmes, noise levels, and features.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `model_number` | string | Yes | The full model number (E-Nr) of the appliance including version suffix (e.g. WGG24400GB/01). Use full_label from search_manual_by_model_number results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bosch-home-com-api-70063d98/get_product_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model_number":"<string>"}'
```

### get_spare_parts

Retrieve the full list of available spare parts and exploded-view diagrams for a Bosch appliance. Includes pricing in GBP, stock availability, part images, and links to purchase. Diagrams provide exploded-view references with data_pk identifiers.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `model_number` | string | Yes | The full model number (E-Nr) of the appliance including version suffix (e.g. WGG24400GB/01). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bosch-home-com-api-70063d98/get_spare_parts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model_number":"<string>"}'
```

### search_manual_by_model_number

Search for Bosch home appliance model variants by partial model number (E-Nr). Returns matching variants with their full labels, which serve as the canonical identifier for all other endpoints. A partial number like 'WGG24400GB' returns all version suffixes (e.g. /01, /76). The full_label field is the input for detail endpoints.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `model_number` | string | Yes | Part of the model number (E-Nr) to search for (e.g. WGG24400GB). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bosch-home-com-api-70063d98/search_manual_by_model_number \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model_number":"<string>"}'
```
