# Zabars — 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 and browse Zabar's gourmet food products with autocomplete suggestions and detailed item information including pricing and availability. Get paginated results to easily discover specialty foods, wines, and delicacies from their curated selection.

**Category:** Food & Dining | **Website:** [www.zabars.com/?srsltid=AfmBOoqbX3YM6dhlpXkrjnVR_bGkGYpuF-w34z5qVu_w82993gQFlmAe](https://www.zabars.com/?srsltid=AfmBOoqbX3YM6dhlpXkrjnVR_bGkGYpuF-w34z5qVu_w82993gQFlmAe) | **Docs:** [parse.bot/marketplace/07991ab1-cd74-4fda-b13e-274f3e2634c3/zabars-com-api](https://parse.bot/marketplace/07991ab1-cd74-4fda-b13e-274f3e2634c3/zabars-com-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-zabars-com-api-07991ab1/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product_details

Retrieve full details for a single product by its URL path or full URL. Returns the complete description, all product images, price, availability status, and (for bundles/gift baskets) a contents list. The product_url can be obtained from search_products results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_url` | string | Yes | Product URL path (e.g., '/zabars-chocolate-bundle/C11014V.html') or full URL. Obtainable from search_products results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-zabars-com-api-07991ab1/get_product_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_url":"<string>"}'
```

### get_suggestions

Autocomplete suggestions for a partial or full search query. Returns matching products (with image and URL), matching categories (with parent category), and popular search terms. Useful for search-as-you-type UIs. Single-page response, no pagination.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search query for autocomplete suggestions |

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

### search_products

Full-text search over Zabar's product catalog. Returns paginated product summaries including name, price, brand, category, and image. Server-side filtering is keyword-only; finer filtering (brand, price range) is client-side. Pagination via page number; each page returns up to page_size items.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number (1-based) |
| `page_size` | integer | No | Number of results per page (1-120) |
| `query` | string | Yes | Search keyword(s) (e.g., 'chocolate', 'gift basket', 'coffee') |

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