# Businessregistration Moc — 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 information from Cambodia's official business registry, including company profiles, director details, and registered addresses for corporations, partnerships, and sole proprietorships. Instantly access verified business entity data to verify company credentials, find ownership details, and conduct due diligence on Cambodian businesses.

**Category:** Government & Public Data | **Website:** [businessregistration.moc.gov.kh/](https://businessregistration.moc.gov.kh/) | **Docs:** [parse.bot/marketplace/6ff85db9-f0be-4688-98c9-1f29aa39b3dd/businessregistration-moc-gov-kh-api](https://parse.bot/marketplace/6ff85db9-f0be-4688-98c9-1f29aa39b3dd/businessregistration-moc-gov-kh-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-businessregistration-moc-gov-kh-api-6ff85db9/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company_details

Retrieve full details for a registered company by its entity identifier. Internally searches for the entity and navigates to its detail page to extract complete information including registered addresses and directors. The entity_identifier is the value from search results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `entity_identifier` | string | Yes | The entity identifier obtained from search results (e.g. '00057839'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-businessregistration-moc-gov-kh-api-6ff85db9/get_company_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"entity_identifier":"<string>"}'
```

### search_entity

Search for registered business entities (companies, partnerships, sole proprietorships) by name or identifier. Returns paginated results with entity details including registration date, status, type, and address. Each page returns up to 10 results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `query` | string | Yes | Search query - entity name or identifier to search for. |
| `register` | string | No | Register type to search within. Accepted values: companies, partnerships, soleproprietorships. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-businessregistration-moc-gov-kh-api-6ff85db9/search_entity \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","query":"<string>","register":"<string>"}'
```

### search_partnerships

Search specifically within the Partnerships register. Equivalent to calling search_entity with register set to partnerships. May return empty results as the partnerships register has limited entries.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search query - entity name or identifier to search for. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-businessregistration-moc-gov-kh-api-6ff85db9/search_partnerships \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```

### search_sole_proprietorships

Search specifically within the Sole Proprietorships register. Equivalent to calling search_entity with register set to soleproprietorships.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search query - entity name or identifier to search for. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-businessregistration-moc-gov-kh-api-6ff85db9/search_sole_proprietorships \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
