# Toom — 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 products across toom Baumarkt's catalog and instantly access detailed pricing, specifications, and real-time stock levels at branches near your German postal code. Find exactly what you need and discover where to pick it up locally in just a few clicks.

**Category:** E-commerce | **Website:** [www.toom.de/](https://www.toom.de/) | **Docs:** [parse.bot/marketplace/f2d0e730-1664-44b7-a856-692e5e4db2cc/toom-de-api](https://parse.bot/marketplace/f2d0e730-1664-44b7-a856-692e5e4db2cc/toom-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-toom-de-api-f2d0e730/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### check_store_availability

Check product availability across toom Baumarkt stores near a given postal code. Returns up to 10 nearby stores sorted by proximity with their services (click-and-collect, reserve-and-collect) and per-store stock status from the buyboxcases API. Also returns the product price and online delivery status.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `article_id` | string | Yes | Numeric toom article number (e.g. 10572304). Obtainable from search_products results. |
| `postal_code` | string | Yes | 5-digit German postal code to find nearby stores (e.g. 04103 for Leipzig). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-toom-de-api-f2d0e730/check_store_availability \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"article_id":"<string>","postal_code":"<string>"}'
```

### get_product_detail

Retrieve full product details including description, brand, price, energy rating, characteristics, images, and availability status by numeric article number.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `article_id` | string | Yes | Numeric toom article number (e.g. 10572304). Obtainable from search_products results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-toom-de-api-f2d0e730/get_product_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"article_id":"<string>"}'
```

### search_products

Full-text search across toom Baumarkt product catalog. Returns paginated product listings with prices and basic availability status ordered by relevance.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `query` | string | Yes | Search term for products. |

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