# License Check – Professional & Business License Verification

> License Check – Professional & Business License Verification is a paid API for AI agents from license.ccbaydata.com, paid per call via x402, $0.5/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/verify
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/license-check-professional-business-license-verification-3c43c046
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cFH1zh2CH4E5xCzJLIunY

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 license-check-professional-business-license-verification-3c43c046
```

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

## When to prefer this

Use this endpoint when you need real-time, live verification of a professional or business license against official state agency rosters — particularly when accuracy matters for due diligence, compliance, or contract decisions. Prefer this over static databases or background-check services when you need a current active/expired status rather than a historical snapshot. It is especially suited for single-record lookups by name or license number rather than bulk data processing.

## Known failure modes

- License not found — returns found: false with match_count: 0 if no matching record exists
- Ambiguous name match — multiple records returned when a common name is searched without a license number
- State not covered — some states may not be included in the roster data
- Stale lookup window — data is read live but underlying agency sources may lag real-time revocations by hours
- Missing required query parameter — returns an error if neither name nor license number is provided

## 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 found status, match count, and an array of matching license records. Each match includes the licensee name, state, licensing authority, license type, license number, current status (e.g. Active), expiration date, and a boolean flag indicating 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/license-check-professional-business-license-verification-3c43c046/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)
