# Kaviraco — 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 and discover products from Kavira's Indian clothing and apparel collection with powerful search, filtering by category, and sorting options to find exactly what you're looking for. View detailed product information including available sizes, pricing, and stock availability to make informed purchasing decisions.

**Category:** E-commerce | **Website:** [kaviraco.in/](https://kaviraco.in/) | **Docs:** [parse.bot/marketplace/67d43f8f-e58f-40b7-8beb-d683b36c43a5/kaviraco-in-api](https://parse.bot/marketplace/67d43f8f-e58f-40b7-8beb-d683b36c43a5/kaviraco-in-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-kaviraco-in-api-67d43f8f/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product

Get detailed properties for a specific product including full description, images, sizes with availability, size chart, and pricing. The product_slug is composed of the slugified title and the product's id, as returned in the slug field from list_products or search_products.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_slug` | string | Yes | Product slug identifier (e.g. 'the-werewolf-cotton-t-shirt-180-gsm-round-neck-white-27763480'). Obtained from the slug field in list_products or search_products results. |

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

### list_products

List all products from the Kavira store with optional category filtering and sorting. Returns paginated results. Each product includes a slug field that can be passed to get_product for full details.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_id` | string | No | Filter by category ID. Known IDs: 71 (Blazers & Waistcoats), 17 (Hoodies), 35 (Jackets), 50 (Jeans and Jeggings), 47 (Leggings & Ethnic Pants), 69 (Men's Shirts & Dhoti Set), 55 (Sarees), 30 (Shirts), 43 (Sleep and Lounge Wear), 37 (Sweatshirt), 16 (T Shirts), 62 (Western Dresses), 63 (Western Shrug), 60 (Women Ethnic Wear), 61 (Women Western Tops). |
| `limit` | integer | No | Number of products per page (max per request). |
| `page` | integer | No | Page number for pagination. |
| `sort` | string | No | Sort order for results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-kaviraco-in-api-67d43f8f/list_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_id":"<string>","limit":"<integer>","page":"<integer>","sort":"<string>"}'
```

### search_products

Search products by keyword query. Returns paginated results matching the search term. Products include a slug field that can be passed to get_product for full details.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_id` | string | No | Filter by category ID. Known IDs: 71 (Blazers & Waistcoats), 17 (Hoodies), 35 (Jackets), 50 (Jeans and Jeggings), 47 (Leggings & Ethnic Pants), 69 (Men's Shirts & Dhoti Set), 55 (Sarees), 30 (Shirts), 43 (Sleep and Lounge Wear), 37 (Sweatshirt), 16 (T Shirts), 62 (Western Dresses), 63 (Western Shrug), 60 (Women Ethnic Wear), 61 (Women Western Tops). |
| `limit` | integer | No | Number of products per page. |
| `page` | integer | No | Page number for pagination. |
| `query` | string | Yes | Search term to find products (e.g. 'shirt', 'hoodie', 'saree'). |
| `sort` | string | No | Sort order for results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-kaviraco-in-api-67d43f8f/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_id":"<string>","limit":"<integer>","page":"<integer>","query":"<string>","sort":"<string>"}'
```
