# Zauba Corp — 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 retrieve company and director information from Zauba Corp, India's public business registry research platform. Look up company details, contact information, director profiles, and associated filings.

**Category:** Business Directories | **Website:** [zaubacorp.com/](https://zaubacorp.com/) | **Docs:** [parse.bot/marketplace/89e5f40b-738f-4a9a-b86b-f34d09a600c3/zaubacorp-com-api](https://parse.bot/marketplace/89e5f40b-738f-4a9a-b86b-f34d09a600c3/zaubacorp-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-zaubacorp-com-api-89e5f40b/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_companies_list

Paginated listing of companies registered on Zauba Corp. Returns approximately 30 companies per page ordered by internal index. Each item carries a CIN, name, slug, and URL suitable for drilling into company details.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number to retrieve. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-zaubacorp-com-api-89e5f40b/get_companies_list \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>"}'
```

### get_company_details

Full company profile by slug. Returns metadata (CIN, status, ROC, category, class, incorporation date, age), registered address, de-obfuscated email, website, a textual summary paragraph, and the current board of directors with DIN, designation, and appointment date.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Company slug in NAME-CIN format (e.g. 'TATA-CHEMICALS-LIMITED-L24239MH1939PLC002893'). Obtainable from get_companies_list or search. |

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

### get_director_profile

Director profile page by slug. Returns the director's full name, DIN, and a list of companies they are or were associated with, including designation and appointment date for each.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Director slug in NAME-DIN format (e.g. 'MUKUNDAN-RAMAKRISHNAN-00778253'). Obtainable from get_company_details directors list or search with filter 'director'. |

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

### search

Typeahead search for companies or directors by keyword. Returns up to 30 matching results with name, slug, and URL. The filter parameter switches between company and director search modes.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `filter` | string | No | Search filter type. |
| `query` | string | Yes | Search keyword (e.g. 'Tata', 'Infosys'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-zaubacorp-com-api-89e5f40b/search \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"filter":"<string>","query":"<string>"}'
```
