# 2s.io Texas Real Estate License Lookup

> 2s.io Texas Real Estate 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-14, last successful call 2026-06-30).

Search and verify Texas real estate licenses (brokers, sales agents, broker companies) via TREC open data

## Facts

- Endpoint: GET https://2s.io/api/license/real-estate
- Price: $0.00288/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Last successful call: 2026-06-30
- Success rate: 100% of calls made through Zero
- Activations on Zero: 23
- Tags: x402
- Canonical page: https://www.zero.xyz/c/2s-io-texas-real-estate-license-lookup-86b1266f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__UylbGiuKgWVYxv7a9Z52

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-real-estate-license-lookup-86b1266f
```

Example prompt: Can you verify whether John Smith is a currently Active licensed real estate Sales Agent in Texas, and pull up his license number, expiration date, and supervising broker?

## When to prefer this

Use this endpoint when you need to verify, validate, or perform due diligence on a Texas real estate professional's license status, particularly for KYC, compliance workflows, or agent background checks. It draws from official TREC open data and supports flexible search by name, license number, type, or status. Prefer this over generic web search when structured, authoritative license data is required.

## Known failure modes

- No results found if name spelling is incorrect or license does not exist in TX
- Only TX is currently supported — requests for other states will be rejected
- Exact match required for licenseNumber; partial numbers return no results
- Rate limits or payment failures (x402) may block the request
- Stale data if TREC source hasn't been refreshed recently

## How this service works

Verify US real-estate licenses (brokers, sales agents, broker companies). Currently supported state: TX (Texas Real Estate Commission license holders). Search by name (license holder, partial), licenseNumber (exact), licenseType (partial, e.g. "Broker", "Sales Agent"), status (e.g. "Active"). Each license: type, number, holder name, status, original license date, expiration date, and the related supervising broker (type/number/name) where applicable. Agent/broker due-diligence and KYC. Siblings: /api/license/medical, /api/license/broker, /api/license/trades. Official state open data.

## Output

Returns a paginated list of matching Texas real estate licenses, each containing license type, license number, holder name, status (e.g. Active/Expired), original license date, expiration date, and supervising broker details (type, number, name) where applicable.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "name": "Smith",
   "limit": 10,
   "state": "TX",
   "offset": 0,
   "status": "Active",
   "licenseType": "Sales Agent"
  }
 }
}
```

## 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": "License holder name, partial match."
      },
      "limit": {
       "type": "integer",
       "default": 10,
       "maximum": 100,
       "minimum": 1
      },
      "state": {
       "enum": [
        "TX"
       ],
       "type": "string",
       "description": "State registry to search."
      },
      "offset": {
       "type": "integer",
       "default": 0,
       "minimum": 0
      },
      "status": {
       "type": "string",
       "description": "E.g. \"Active\"."
      },
      "licenseType": {
       "type": "string",
       "description": "Partial, e.g. \"Broker\", \"Sales Agent\"."
      },
      "licenseNumber": {
       "type": "string",
       "description": "Exact license number."
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/2s-io-texas-real-estate-license-lookup-86b1266f/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)
