# Rami Levy — 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 rami-levy.co.il.

**Category:** Food & Dining | **Website:** [www.rami-levy.co.il/](https://www.rami-levy.co.il/) | **Docs:** [parse.bot/marketplace/b1a81fe8-8464-4533-bf9d-76318245267a/rami-levy-co-il-api](https://parse.bot/marketplace/b1a81fe8-8464-4533-bf9d-76318245267a/rami-levy-co-il-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-rami-levy-co-il-api-b1a81fe8/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_categories

Retrieve the full category hierarchy of the Rami Levy grocery store: departments, groups, and sub-groups. No parameters required.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-rami-levy-co-il-api-b1a81fe8/get_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_product

Retrieve full details for a single product by its numeric ID. Returns name, price, description, ingredients, nutritional values, brand, stock availability, and active promotions.

**Estimated cost:** Metered

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

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

### get_promotions

Retrieve current active deals and discounts from Rami Levy. Returns promotions with product names, original prices, sale prices, and validity periods.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `store` | string | No | Store ID to check promotions for. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-rami-levy-co-il-api-b1a81fe8/get_promotions \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"store":"<string>"}'
```

### search_products

Full-text search across Rami Levy grocery products. Returns paginated results with product name, price, stock status, image, and active promotions. Results are auto-iterated; each page returns up to 20 items.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination, 1-based. |
| `query` | string | Yes | Search term in Hebrew or English (e.g. חלב, שוקולד). |

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