# LicenseCheck – Professional & Business License Verification

> LicenseCheck – Professional & Business License Verification is a paid API for AI agents from license.ccbaydata.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Verifies a professional or business license by name or license number against live state licensing agency rosters across the US.

## Facts

- Endpoint: GET https://license.ccbaydata.com/v1/license
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/licensecheck-professional-business-license-verification-cb914ba3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VBDEaYSYJAAwOv6au3ln3

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability licensecheck-professional-business-license-verification-cb914ba3
```

Example prompt: Can you check if Ben Helstein holds an active real estate broker license in Texas — his license number is 727703-B?

## When to prefer this

Choose this endpoint when you need to verify a US professional or business license in real time against state agency rosters — particularly for real estate, contracting, healthcare, or other regulated professions. It is well-suited for due diligence workflows, hiring checks, or compliance pipelines where license currency and status matter. Prefer it over static or batch license databases when freshness is critical, since it reads live from state sources on every request.

## Known failure modes

- License not found (found: false, match_count: 0) — name or number may be misspelled or the license may not exist in covered states
- Ambiguous name matches — multiple records returned for a common name
- State not covered — some states may not be included in the roster
- Stale data window — live reads reduce but don't eliminate propagation delays from state agencies
- Payment failure — x402 payment of 0.1 USDC required per call; insufficient funds returns 402

## How this service works

Verify a professional or business license by name or number against state licensing agency rosters, read live on every request. Public licensing records compiled from state agency sources. Free to cite with attribution. Redistribution inside a paid product requires a license. NOT a consumer report. This data may NOT be used, in whole or in part, as a factor in establishing any individual's eligibility for employment, credit, insurance, housing or tenancy, or for any other purpose under 15 U.S.C. 1681b. It may not be used to build a list of individuals, to re-identify individuals, or for targeted marketing.

## Output

Returns a JSON object with a license_check field containing: a found boolean, a match_count, and an array of matches each including the state, licensee name, license number, license type, issuing authority, current status (e.g. Active), expiration date, and whether the license is expired as of today.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "license_check": {
   "found": true,
   "matches": [
    {
     "state": "TX",
     "status": "Active",
     "expires": "2027-09-30",
     "licensee": "BEN HELSTEIN",
     "authority": "Texas Real Estate Commission (TREC)",
     "license_type": "Broker Individual",
     "license_number": "727703-B",
     "expired_as_of_today": false
    }
   ],
   "match_count": 1
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/licensecheck-professional-business-license-verification-cb914ba3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from license.ccbaydata.com](https://www.zero.xyz/host/license.ccbaydata.com/llms.txt)
