# Dir Indiamart — 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 extract supplier listings, product details, and business factsheets from the IndiaMart B2B directory. Browse by city and category, retrieve structured product specifications, pricing, and supplier verification data.

**Category:** Business Directories | **Website:** [dir.indiamart.com/](https://dir.indiamart.com/) | **Docs:** [parse.bot/marketplace/437b03e6-2591-474b-abff-97cc5b231097/dir-indiamart-com-api](https://parse.bot/marketplace/437b03e6-2591-474b-abff-97cc5b231097/dir-indiamart-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-dir-indiamart-com-api-437b03e6/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product_details

Get detailed information for a specific IndiaMart product page. Extracts product name, price, currency, supplier name, product images, and specification tables from the page. Falls back to DOM extraction when JSON-LD is not present. Requires a valid export.indiamart.com or indiamart.com product detail URL.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full IndiaMart product detail URL (e.g. https://export.indiamart.com/products/?id=2859228478673). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dir-indiamart-com-api-437b03e6/get_product_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### get_supplier_details

Get factsheet for a supplier from their IndiaMart company page URL. Extracts nature of business, IEC verification, GST registration date, and verification status. Works with export.indiamart.com company URLs.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | IndiaMart supplier company URL (e.g. https://export.indiamart.com/company/180258510). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dir-indiamart-com-api-437b03e6/get_supplier_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### search_listings

Search for listings by category on the IndiaMart export directory. Returns product and supplier summary information for the specified product category, optionally scoped to a city. Each page returns up to ~10 listings from verified exporters. Deduplicates across pages by product URL.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | Yes | Category slug used as the search term (e.g. ss-pipes, epoxy-flooring-services, steel-pipes). Hyphens are converted to spaces for the search query. |
| `city` | string | Yes | City name slug used to scope the search results (e.g. ahmedabad, coimbatore, mumbai, delhi). |
| `pages` | integer | No | Number of pages to fetch. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dir-indiamart-com-api-437b03e6/search_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","city":"<string>","pages":"<integer>"}'
```
