# Ni Biashara TX Insurance CE Hours Lookup

> Ni Biashara TX Insurance 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 insurance license line using a deterministic rules engine

## Facts

- Endpoint: GET https://agents.nibiashara.biz/shelf/tx-insurance-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/ni-biashara-tx-insurance-ce-hours-lookup-f0436ad8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_W43xwEDtpVmyICSX_Pda9

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 ni-biashara-tx-insurance-ce-hours-lookup-f0436ad8
```

Example prompt: How many continuing education hours do I need to renew my Texas general lines property casualty insurance license, and how many of those have to be ethics hours?

## When to prefer this

Use this endpoint when you need a fast, structured, per-call lookup of Texas insurance continuing education hour requirements by license line. It is ideal for compliance automation workflows, insurance agent onboarding tools, or any AI agent that needs to programmatically check CE requirements without scraping the Texas Department of Insurance website. It covers all six major Texas license line categories and returns both total CE and ethics hours in a clean JSON format.

## Known failure modes

- Missing or invalid license_line query parameter returns an error — must be one of the six accepted enum values
- Unrecognized license_line string returns a validation error or empty result
- Payment failure (HTTP 402) if USDC payment of $0.25 is not included or rejected
- Network timeout if the endpoint is temporarily unavailable

## 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 containing the license line identifier, total CE hours required, ethics hours required, and a label identifying the Ni Biashara deterministic rules engine as the source. Example: {source: 'Ni Biashara deterministic rules engine', ethicsHours: 3, licenseLine: 'general_lines_property_casualty', ceHoursRequired: 24}.

## 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_line"
     ],
     "properties": {
      "license_line": {
       "type": "string",
       "description": "one of general_lines_life_accident_health_hmo | general_lines_property_casualty | personal_lines_property_casualty | limited_lines | public_adjuster | all_lines_adjuster (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",
  "ethicsHours": 3,
  "licenseLine": "general_lines_property_casualty",
  "ceHoursRequired": 24
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ni-biashara-tx-insurance-ce-hours-lookup-f0436ad8/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)
