Verify US real-estate licenses (brokers, sales agents, broker companies)
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.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://2s.io/api/license/real-estate
| Category | Company and compliance |
|---|---|
| Provider host | 2s.io |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.0072 | 251 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"licenseType": "Sales Agent",
"limit": 5,
"name": "Garcia",
"state": "TX"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"method": {
"const": "GET"
},
"queryParams": {
"properties": {
"licenseNumber": {
"description": "Exact license number.",
"type": "string"
},
"licenseType": {
"description": "Partial, e.g. \"Broker\", \"Sales Agent\".",
"type": "string"
},
"limit": {
"default": 10,
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"name": {
"description": "License holder name, partial match.",
"type": "string"
},
"offset": {
"default": 0,
"minimum": 0,
"type": "integer"
},
"state": {
"description": "State registry to search.",
"enum": [
"TX"
],
"type": "string"
},
"status": {
"description": "E.g. \"Active\".",
"type": "string"
}
},
"required": [
"state"
]
},
"type": {
"const": "http"
}
},
"required": [
"type",
"method",
"queryParams"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}