# Aiqicha Baidu — 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 detailed business intelligence on Chinese companies, including company information, shareholder and executive data, and risk assessments. Look up individuals and their professional details to gain comprehensive insights into the Chinese business landscape.

**Category:** Business Directories | **Website:** [aiqicha.baidu.com/](https://aiqicha.baidu.com/) | **Docs:** [parse.bot/marketplace/381d145c-8712-413b-9bf8-5f8a8d05708a/aiqicha-baidu-com-api](https://parse.bot/marketplace/381d145c-8712-413b-9bf8-5f8a8d05708a/aiqicha-baidu-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-aiqicha-baidu-com-api-381d145c/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company_detail

Retrieve detailed information about a specific company by its PID.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `pid` | string | Yes | Company PID |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-aiqicha-baidu-com-api-381d145c/get_company_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"pid":"<string>"}'
```

### get_company_executives

Get the list of key executives and management personnel for a company.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `pid` | string | Yes | Company PID |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-aiqicha-baidu-com-api-381d145c/get_company_executives \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"pid":"<string>"}'
```

### get_company_shareholders

Get the shareholder list for a given company.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `pid` | string | Yes | Company PID |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-aiqicha-baidu-com-api-381d145c/get_company_shareholders \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"pid":"<string>"}'
```

### get_person_detail

Get detailed profile of a business person.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `pid` | string | Yes | Person PID |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-aiqicha-baidu-com-api-381d145c/get_person_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"pid":"<string>"}'
```

### search_companies

Search for companies by name, keyword, or registration number.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search keyword (company name, ID, etc.) |

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

### search_people

Search for business people/executives by name.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `name` | string | Yes | Person name |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-aiqicha-baidu-com-api-381d145c/search_people \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"name":"<string>"}'
```
