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

> Zeptonow provides 4 callable API endpoints through the Parse marketplace.

**Category:** Food & Dining | **Website:** [www.zeptonow.com/](https://www.zeptonow.com/) | **Docs:** [parse.bot/marketplace/f914c289-3193-4b0a-a84b-b6177293f4ae/zeptonow-com-api](https://parse.bot/marketplace/f914c289-3193-4b0a-a84b-b6177293f4ae/zeptonow-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-zeptonow-com-api-f914c289/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_categories

Returns all available product categories and their subcategories for a given store. Each category includes an ID, name, group label, image URL, and a list of subcategories with their own IDs and images. Subcategory IDs are used with get_products_by_category.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `store_id` | string | No | UUID of the Zepto store. Defaults to a Bangalore store when omitted. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-zeptonow-com-api-f914c289/get_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"store_id":"<string>"}'
```

### get_product_detail

Returns full product information for a specific product variant, including name, brand, description, MRP, discounted price, multiple images, weight/quantity, unit of measure, stock status, available quantity, country of origin, shelf life, and key highlights.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_id` | string | Yes | UUID of the product variant (product_variant_id). Obtainable from search_products or get_products_by_category results. |
| `store_id` | string | No | UUID of the Zepto store. Defaults to a Bangalore store when omitted. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-zeptonow-com-api-f914c289/get_product_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_id":"<string>","store_id":"<string>"}'
```

### get_products_by_category

Lists products in a specific subcategory of a store. Returns product listings with name, brand, price, image, availability, and quantity. Use subcategory IDs from get_categories. Results depend on store inventory; some stores may have empty subcategories.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page_number` | string | No | Zero-based page number for pagination. |
| `store_id` | string | No | UUID of the Zepto store. Defaults to a Bangalore store when omitted. |
| `subcategory_id` | string | Yes | UUID of the subcategory (from get_categories response subcategories[].id). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-zeptonow-com-api-f914c289/get_products_by_category \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page_number":"<string>","store_id":"<string>","subcategory_id":"<string>"}'
```

### search_products

Returns product recommendations from the store's catalog. Products include name, brand, price, image, availability, and quantity. Results are server-rendered product listings associated with the store; the number of items per call is determined by the platform (typically 5-15 products).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search query term for product lookup. |
| `store_id` | string | No | UUID of the Zepto store to search within. Defaults to a Bangalore store when omitted. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-zeptonow-com-api-f914c289/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>","store_id":"<string>"}'
```
