# Bauder — 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 Bauder's roofing product catalog to find specific materials and instantly access comprehensive technical specifications like performance parameters and product details. Quickly locate the exact roofing solutions you need with detailed product information to support your purchasing or project planning decisions.

**Category:** E-commerce | **Website:** [bauder.de/](https://bauder.de/) | **Docs:** [parse.bot/marketplace/516cd352-d005-4d41-9760-2f24ab0f296a/bauder-de-api](https://parse.bot/marketplace/516cd352-d005-4d41-9760-2f24ab0f296a/bauder-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-bauder-de-api-516cd352/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product

Retrieve full product details including name, description, and technical specifications from a Bauder product page. Technical data includes properties like dimensions, materials, temperature resistance, and article numbers.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_path` | string | Yes | URL path segment to the product page, without domain or leading '/de/' (e.g. 'flachdach/flachdach-produkte/bitumen-dachbahnen/oberlagen/bauderkarat'). Also accepts full URLs from search_products results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bauder-de-api-516cd352/get_product \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_path":"<string>"}'
```

### search_products

Full-text search across Bauder product pages, system descriptions, and technical documents. Returns paginated results with title, URL, teaser text, and content type.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for paginated results. |
| `query` | string | Yes | Search keyword or phrase. |

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