# Lidl (Belgium) — 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.

> Access data from lidl.be.

**Category:** E-commerce | **Website:** [www.lidl.be/](https://www.lidl.be/) | **Docs:** [parse.bot/marketplace/d02bf03f-bb9f-4cd5-81c9-f05c196f732c/lidl-be-api](https://parse.bot/marketplace/d02bf03f-bb9f-4cd5-81c9-f05c196f732c/lidl-be-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-lidl-be-api-d02bf03f/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product

Retrieve detailed product information by exact Lidl Belgium product ID. Returns product metadata including title, brand, price, images, and availability from the product detail page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_id` | string | Yes | Numeric Lidl product ID (e.g. '10029289'). Obtainable from search_products results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lidl-be-api-d02bf03f/get_product \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_id":"<string>"}'
```

### search_products

Search for products on Lidl Belgium by query term (product name, brand, category keyword) or exact product ID. Returns paginated results with product metadata, structured prices, availability, and promotion information. When the query matches an exact product ID, the result contains a single product with full details. Pagination is controlled by offset and limit parameters; omitting them returns the first 36 results. Use next_offset to fetch the next page, or null when no more results exist.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of products to return per page (max 1000). |
| `locale` | string | No | Language/locale for returned content. Accepts 'fr-BE' (French) or 'nl-BE' (Dutch). |
| `offset` | integer | No | Number of results to skip for pagination. |
| `query` | string | Yes | Search term — a product name (e.g. 'chocolat'), brand (e.g. 'KINDER'), or numeric product ID (e.g. '10029289'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lidl-be-api-d02bf03f/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","locale":"<string>","offset":"<integer>","query":"<string>"}'
```
