# 2s.io Texas Trade & Occupational License Lookup

> 2s.io Texas Trade & Occupational License Lookup is a paid API for AI agents from 2s.io, paid per call via x402, $0.00288/call, status unknown (last checked 2026-09-13).

Verify and search Texas state-regulated trade and occupational licenses (electricians, A/C technicians, cosmetologists, tow operators, etc.) from the Texas Department of Licensing & Regulation

## Facts

- Endpoint: GET https://2s.io/api/license/trades
- Price: $0.00288/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/2s-io-texas-trade-occupational-license-lookup-f1f6ceee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_84SBwI1tA6o6OubI7XASV

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 2s-io-texas-trade-occupational-license-lookup-f1f6ceee
```

Example prompt: Can you check if there's a valid Texas electrician's license for someone named 'Rodriguez Electric Services' — I need the license number, expiration date, and county?

## When to prefer this

Use this endpoint when you need to verify or look up Texas-specific trade and occupational licenses issued by the TDLR, including electricians, HVAC technicians, cosmetologists, and tow operators. Prefer this over general web searches when you need authoritative, structured license data for contractor due diligence or KYC workflows. For medical professionals use the sibling /api/license/medical (NPI) endpoint, and for financial brokers use /api/license/broker (FINRA).

## Known failure modes

- No results returned when name/license number doesn't match any active TX license
- licenseNumber requires exact match — partial license numbers return empty results
- Only TX (Texas) is supported; queries for other states will fail schema validation
- Overly broad name searches may return too many results — use county or licenseType to narrow
- Expired or inactive licenses may not appear in results if the registry only returns active records

## How this service works

Verify US trade / occupational licenses (electricians, A/C technicians, cosmetologists, tow operators, and other state-regulated trades). Currently supported state: TX (Texas Department of Licensing & Regulation, all active licenses). Search by name (matches owner or business name, partial), licenseNumber (exact), licenseType (partial, e.g. "Electrician"), county. Each license: type + subtype, number, business + owner name, county, expiration date, continuing-education flag. Contractor due-diligence and KYC. Siblings: /api/license/medical (NPI), /api/license/broker (FINRA). Official state open data.

## Output

Returns a paginated list of matching TDLR licenses, each containing: license type and subtype, license number, business name, owner name, county, expiration date, and a continuing-education compliance flag. Up to 100 results per page with offset-based pagination.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "limit": 10,
   "state": "TX",
   "offset": 0,
   "licenseType": "Electrician"
  }
 }
}
```

## 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",
    "queryParams"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "required": [
      "state"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "Owner or business name, partial match."
      },
      "limit": {
       "type": "integer",
       "default": 10,
       "maximum": 100,
       "minimum": 1
      },
      "state": {
       "enum": [
        "TX"
       ],
       "type": "string",
       "description": "State registry to search."
      },
      "county": {
       "type": "string",
       "description": "Business county."
      },
      "offset": {
       "type": "integer",
       "default": 0,
       "minimum": 0
      },
      "licenseType": {
       "type": "string",
       "description": "License type, partial match (e.g. \"Electrician\")."
      },
      "licenseNumber": {
       "type": "string",
       "description": "Exact license number."
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/2s-io-texas-trade-occupational-license-lookup-f1f6ceee/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 2s.io](https://www.zero.xyz/host/2s.io/llms.txt)
