# Katzsdelicatessen — 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.

> Browse Katz's Delicatessen's full menu by category and view detailed information about each sandwich, side, and specialty item available for pickup or delivery. Find exactly what you're looking for with organized product listings, descriptions, and menu options.

**Category:** Food & Dining | **Website:** [katzsdelicatessen.com/](https://katzsdelicatessen.com/) | **Docs:** [parse.bot/marketplace/8046afd2-77a7-49a4-9337-3ce48eb3b518/katzsdelicatessen-com-api](https://parse.bot/marketplace/8046afd2-77a7-49a4-9337-3ce48eb3b518/katzsdelicatessen-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-katzsdelicatessen-com-api-8046afd2/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_category_products

Returns all products in a given pickup and delivery menu category. Each product includes name, SKU, product ID, price, image URL, and link to its detail page. The full product list for the category is returned in a single page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Menu category identifier. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-katzsdelicatessen-com-api-8046afd2/get_category_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>"}'
```

### get_menu_categories

Returns all available categories on the Katz's Deli pickup and delivery menu. Categories include favorites, meals, hot sandwiches, cold sandwiches, soups & sides, grill, platters, desserts, beverages, breakfast, and packaged items.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-katzsdelicatessen-com-api-8046afd2/get_menu_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_product_detail

Returns detailed information about a single product on the pickup and delivery menu, including full description, short description, price, SKU, image, and breadcrumb navigation path. The product_url can be obtained from get_category_products results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_url` | string | Yes | Full URL of the product page from localmenu.katzsdelicatessen.com (e.g. from get_category_products results). |

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