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

> Access global import/export trade data from Volza.com. Search products by keyword to discover HS/HSN codes with shipment volumes, then drill into buyers, suppliers, and company profiles for any product category.

**Category:** Business Directories | **Website:** [volza.com/](https://volza.com/) | **Docs:** [parse.bot/marketplace/83326264-8251-484d-b269-d15ef769fc7d/volza-com-api](https://parse.bot/marketplace/83326264-8251-484d-b269-d15ef769fc7d/volza-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-volza-com-api-83326264/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company_profile

Get basic company profile information.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Company slug (e.g., 'mtr-foods-private-limited-2588043') |

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

### get_product_buyers

Get a list of buyers for a specific product and HSN code.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `hsn` | string | Yes | HSN/HS Code (e.g., '0910') |
| `product` | string | Yes | Product slug (e.g., 'spices') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-volza-com-api-83326264/get_product_buyers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"hsn":"<string>","product":"<string>"}'
```

### get_product_suppliers

Get a list of suppliers/manufacturers for a specific product and HSN code.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `hsn` | string | Yes | HSN/HS Code (e.g., '0910') |
| `product` | string | Yes | Product slug (e.g., 'spices') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-volza-com-api-83326264/get_product_suppliers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"hsn":"<string>","product":"<string>"}'
```

### search_product

Search for products by keyword and get related HS (Harmonized System) codes with trade shipment counts and descriptions. Returns up to 19 HS codes sorted by shipment volume. Keywords match against indexed product descriptions; some terms may return no results while variations succeed (e.g. 'spices' returns results but 'spice' may not). The response also indicates whether the query was interpreted as an HS code itself.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Product keyword to search (e.g. 'spices', 'electronics', 'furniture'). Must be non-empty. |

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