# Indiahandmade — 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 the complete directory of registered handloom and handicraft artisans on India's official marketplace, viewing seller listings with pagination or diving into detailed seller profiles. Discover authenticated craftspeople, their specialties, and business information to connect with authentic handmade product makers.

**Category:** Marketplaces | **Website:** [www.indiahandmade.com/home-and-living/bed-linen-cushions.html](https://www.indiahandmade.com/home-and-living/bed-linen-cushions.html) | **Docs:** [parse.bot/marketplace/79d6e7ca-2dc7-4bab-8345-28185edb2600/indiahandmade-com-api](https://parse.bot/marketplace/79d6e7ca-2dc7-4bab-8345-28185edb2600/indiahandmade-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-indiahandmade-com-api-79d6e7ca/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_seller_profile

Returns detailed profile information for a specific seller, including name, location/address, star rating (out of 5), logo image URL, banner image URL, and about text when available. The shop_slug is obtained from the list_sellers endpoint results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `shop_slug` | string | Yes | The seller's shop identifier as returned by list_sellers (e.g. 'Anandram', 'SWASTIK MAHILA UDYOG SAHAKAR SAMITI'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-indiahandmade-com-api-79d6e7ca/get_seller_profile \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"shop_slug":"<string>"}'
```

### list_sellers

Returns a paginated list of marketplace sellers. Without a category filter, returns all registered sellers from the seller directory (1798+ sellers, ordered by most recently registered first). With a category filter, returns unique sellers who have products listed under that category by fetching product pages in the category and extracting seller info. Category-filtered results require multiple upstream requests (one per product page until limit unique sellers are found), so response time scales with the limit. Use the page parameter to paginate through all sellers when no category is specified.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Category slug or URL path to filter sellers by product category. Accepts a category slug (e.g. 'bed-linen-cushions', 'home-and-living') or a full category path (e.g. 'home-and-living/bed-linen-cushions'). When provided, returns only sellers who have products listed under that category. Omitting returns all sellers regardless of category. |
| `limit` | string | No | Number of sellers per page. |
| `page` | integer | No | Page number for pagination (1-indexed). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-indiahandmade-com-api-79d6e7ca/list_sellers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","limit":"<string>","page":"<integer>"}'
```
