# Rewe — 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 REWE online shop products with local delivery pricing by German postal code, browse the delivery catalog, and check whether delivery or pickup is available in a given area.

**Category:** Food & Dining | **Website:** [rewe.de/](https://rewe.de/) | **Docs:** [parse.bot/marketplace/9b19ebcf-4900-43e6-84fb-6f82eb05edb5/rewe-de-api](https://parse.bot/marketplace/9b19ebcf-4900-43e6-84fb-6f82eb05edb5/rewe-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-rewe-de-api-9b19ebcf/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### check_availability

Check whether REWE delivery and pickup services are available for a German postal code. Returns service flags and the market ID that serves the area. Use this to validate a postal code before searching or browsing products.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `postal_code` | string | Yes | 5-digit German postal code to check (e.g. 10115, 80331) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-rewe-de-api-9b19ebcf/check_availability \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"postal_code":"<string>"}'
```

### get_products

Browse the full REWE product catalog for a delivery area, paginated. Returns all products available for delivery with current local pricing. Equivalent to searching with a wildcard. Products on special offer have is_discounted=true.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number (1-based) |
| `per_page` | integer | No | Results per page (1-80) |
| `postal_code` | string | No | 5-digit German postal code for local pricing (e.g. 10115, 80331) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-rewe-de-api-9b19ebcf/get_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","per_page":"<integer>","postal_code":"<string>"}'
```

### search_products

Full-text search over REWE's product catalog scoped to a delivery area. query matches product titles; results include current local pricing for the specified postal code. Paginates via integer page counter. Each product exposes discount status, bulk pricing tiers, and category tags. Products flagged is_sponsored appear due to paid placement.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number (1-based) |
| `per_page` | integer | No | Results per page (1-80) |
| `postal_code` | string | No | 5-digit German postal code for local pricing (e.g. 10115, 80331) |
| `query` | string | Yes | Search keyword (e.g. milch, brot, bio) |

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