# Contractor & Trade License Search (TX/FL/OR/CT)

> Contractor & Trade License Search (TX/FL/OR/CT) is a paid API for AI agents from licenses.recordsforagents.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

Search contractor and trade license records across TX TDLR and FL DBPR (and OR/CT) by free-text query, name, state, profession, or license status.

## Facts

- Endpoint: GET https://licenses.recordsforagents.com/licenses/search
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/contractor-trade-license-search-tx-fl-or-ct-49877db1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Eh1z6q_EyS_jknpgKLq5N

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 contractor-trade-license-search-tx-fl-or-ct-49877db1
```

Example prompt: Can you search for active licensed electricians in Texas named 'Smith' in the TDLR records? Show me the first 10 results.

## When to prefer this

Use this endpoint when you need to search contractor or trade license records across Texas (TDLR), Florida (DBPR), Oregon, or Connecticut by name, profession, or status. Prefer this over direct-lookup endpoints when you don't have an exact license number and need to search by partial name or profession. Use the sibling lookup endpoint when you already have a license number.

## Known failure modes

- No matching records found for the given query or name — returns empty result set
- Invalid state code (only tx, fl, or, ct supported) — returns validation error
- Missing required parameters — returns 400 bad request
- Rate limit or payment failure for x402 micropayment — returns 402 Payment Required
- Network timeout or upstream data source unavailable — returns 5xx error

## How this service works

Search contractor/trade licenses (TX TDLR electricians/A-C, FL DBPR construction) by free-text query, name, state, profession, or status.

## Output

A list of matching contractor/trade license records including license holder name, license number, profession, issuing state board (e.g. TX TDLR, FL DBPR), and license status, paginated via offset/limit.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "q": {
       "type": "string"
      },
      "name": {
       "type": "string"
      },
      "limit": {
       "type": "integer"
      },
      "state": {
       "enum": [
        "tx",
        "fl",
        "or",
        "de",
        "va"
       ],
       "type": "string"
      },
      "offset": {
       "type": "integer"
      },
      "status": {
       "type": "string"
      },
      "profession": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/contractor-trade-license-search-tx-fl-or-ct-49877db1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from licenses.recordsforagents.com](https://www.zero.xyz/host/licenses.recordsforagents.com/llms.txt)
