# Bauhaus — 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 for hardware products and check real-time availability across BAUHAUS Germany store locations to find exactly what you need and where to get it. View detailed product information including specifications and pricing to make informed purchasing decisions before visiting a store.

**Category:** E-commerce | **Website:** [www.bauhaus.info/](https://www.bauhaus.info/) | **Docs:** [parse.bot/marketplace/159b6dff-2f72-453b-aee0-e5c793aa0386/bauhaus-info-api](https://parse.bot/marketplace/159b6dff-2f72-453b-aee0-e5c793aa0386/bauhaus-info-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-bauhaus-info-api-159b6dff/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### check_store_availability

Check branch-level stock availability for a product at BAUHAUS Fachcentren near a German postal code. Returns per-store stock quantities, online purchasability, and delivery estimates.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `postal_code` | string | Yes | 5-digit German postal code (e.g. '04103' for Leipzig). |
| `product_id` | string | Yes | BAUHAUS article number (e.g. '31777571'). Obtainable from search_products results. |
| `search_radius` | string | No | Search radius in km for nearby stores. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bauhaus-info-api-159b6dff/check_store_availability \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"postal_code":"<string>","product_id":"<string>","search_radius":"<string>"}'
```

### get_product_detail

Retrieve full product details by article number, including description, pricing, delivery time, availability status, and marketplace seller identification.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_id` | string | Yes | BAUHAUS article number (e.g. '32593655'). Obtainable from search_products results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bauhaus-info-api-159b6dff/get_product_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_id":"<string>"}'
```

### search_products

Full-text search over the BAUHAUS product catalog. Returns product summaries with pricing, availability status, ratings, and marketplace identification. Sorting controls result ordering.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number (1-based). |
| `query` | string | Yes | Search query (e.g. 'mobiles Klimagerät', 'Standventilator'). |
| `sort` | string | No | Sort order for results. |

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