# Kaufland — 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 current deals and discounts at Kaufland Germany stores, viewing detailed pricing information and offer validity periods. Find nearby store locations and browse the latest promotional products all in one place.

**Category:** E-commerce | **Website:** [kaufland.de/](https://kaufland.de/) | **Docs:** [parse.bot/marketplace/d8526014-c2b3-4d59-914b-be4f815adab5/kaufland-de-api](https://parse.bot/marketplace/d8526014-c2b3-4d59-914b-be4f815adab5/kaufland-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-kaufland-de-api-d8526014/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_offers

Retrieve all currently available promotional products from Kaufland Germany. Returns the complete set of discounted items across all promotional categories with pricing, discount percentages, validity dates, and product details. The offers rotate weekly; items include food, beverages, household goods, and personal care products.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-kaufland-de-api-d8526014/get_offers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_stores

Retrieve Kaufland store locations near the requesting IP's geolocation. Returns store details including name, full address, geographic coordinates, and weekly opening hours. The number of stores returned depends on proximity to the nearest Kaufland locations.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-kaufland-de-api-d8526014/get_stores \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_products

Search for products in the current Kaufland promotional offers by keyword. Filters the available promotional products by matching the query against product name, subtitle, description, and category fields (case-insensitive). Returns only products from the current week's offers that match the search term.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search keyword to filter offers by product name, subtitle, description, or category. |

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