# California Department of Real Estate — 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 look up California real estate agent licenses to instantly verify license status, expiration dates, broker information, and disciplinary history. Get comprehensive details including agent names, mailing addresses, license types, and issue dates for any California DRE licensee.

**Category:** Government & Public Data | **Website:** [www2.dre.ca.gov/publicasp/pplinfo.asp](https://www2.dre.ca.gov/publicasp/pplinfo.asp) | **Docs:** [parse.bot/marketplace/e69a196f-5df9-4886-ae55-17f2449a956a/www2-dre-ca-gov-api](https://parse.bot/marketplace/e69a196f-5df9-4886-ae55-17f2449a956a/www2-dre-ca-gov-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-www2-dre-ca-gov-api-e69a196f/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### lookup_license

Look up a California real estate license by license ID. Returns full license details including license type, holder name, mailing address, expiration date, license status, issue date, former names, responsible broker (for salespersons), and disciplinary action. The license_id is an 8-digit DRE number. Returns one complete record per call; no pagination.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `license_id` | string | Yes | The DRE license ID number (8-digit string, e.g. '01871851') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-www2-dre-ca-gov-api-e69a196f/lookup_license \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"license_id":"<string>"}'
```

### search_license

Search for California real estate licenses by name, city/state, or license ID. Returns a list of matching licenses with summary info. At least one of license_id or name must be provided. Results include license ID, name, license type, city, and mortgage loan originator status. Returns up to 338+ results in a single response (no server-side pagination exposed).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city_state` | string | No | City and/or state to filter results (e.g. 'Los Angeles') |
| `license_id` | string | No | DRE license ID to search for (8-digit string) |
| `name` | string | No | Licensee name to search for (last name or 'last, first') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-www2-dre-ca-gov-api-e69a196f/search_license \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city_state":"<string>","license_id":"<string>","name":"<string>"}'
```
