# Waitrose (United Arab Emirates) — 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 waitrose.ae.

**Category:** Food & Dining | **Website:** [www.waitrose.ae/en/products/kelloggs-crunchy-nut-chocolate-clusters-400g_60054/](https://www.waitrose.ae/en/products/kelloggs-crunchy-nut-chocolate-clusters-400g_60054/) | **Docs:** [parse.bot/marketplace/c32af7c5-7cb2-48ba-b6a4-dad036448dcf/waitrose-ae-api](https://parse.bot/marketplace/c32af7c5-7cb2-48ba-b6a4-dad036448dcf/waitrose-ae-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-waitrose-ae-api-c32af7c5/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product

Retrieve full product details including name, price, barcode (EAN-13), brand, ingredients, allergy advice, storage instructions, and availability. The product slug is the URL path segment from the product page (e.g. 'kelloggs-crunchy-nut-chocolate-clusters-400g_60054').

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_slug` | string | Yes | Product URL slug including the numeric ID suffix (e.g. 'kelloggs-crunchy-nut-chocolate-clusters-400g_60054'). Found in product page URLs at waitrose.ae/en/products/<slug>/. |

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

### search_by_barcode

Look up a product by its EAN-13 barcode. Searches the Waitrose UAE catalogue and returns full product details for the matching item, including name, brand, price, ingredients, and availability. Returns a single product or an error if no match is found.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `barcode` | string | Yes | 13-digit EAN-13 barcode number (e.g. '5059319022437'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-waitrose-ae-api-c32af7c5/search_by_barcode \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"barcode":"<string>"}'
```
