# Texas Real Estate CE Hours Lookup

> Texas Real Estate CE Hours Lookup is a paid API for AI agents from agents.nibiashara.biz, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-13).

Returns the required continuing education (CE) hours for a given Texas real estate license type

## Facts

- Endpoint: GET https://agents.nibiashara.biz/shelf/tx-realestate-ce-check
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/texas-real-estate-ce-hours-lookup-53e5ce80
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wnHFhXLfKFkB2jI1--1ZJ

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 texas-real-estate-ce-hours-lookup-53e5ce80
```

Example prompt: How many continuing education hours does a Texas real estate sales_agent need to renew their license?

## When to prefer this

Use this endpoint when an agent needs a fast, structured, per-call lookup of Texas real estate CE hour requirements by license type. It is ideal for compliance workflows, license renewal reminders, or real estate agent onboarding tools where you need a machine-readable answer without scraping the Texas Real Estate Commission website.

## Known failure modes

- Missing or invalid license_type query parameter returns an error
- Unsupported license_type value (outside the four valid enum options) results in a validation error
- Payment failure (402) if x402 USDC payment is not completed
- Network timeout or service unavailability

## How this service works

Structured African-currency FX data (official + parallel/street rates from live P2P order books, with history) and business services (Swahili localization, design, consulting, landing pages), sold per call to AI agents. Ni Biashara LLC, Dallas TX.

## Output

A JSON object with the license type queried, the number of CE hours required (e.g. 18 for sales_agent), and the source identifier ('Ni Biashara deterministic rules engine').

## 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": [
      "license_type"
     ],
     "properties": {
      "license_type": {
       "type": "string",
       "description": "one of sales_agent | broker | broker_associate | inspector (required)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "source": "Ni Biashara deterministic rules engine",
  "licenseType": "sales_agent",
  "ceHoursRequired": 18
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/texas-real-estate-ce-hours-lookup-53e5ce80/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.nibiashara.biz](https://www.zero.xyz/host/agents.nibiashara.biz/llms.txt)
