# KiHustle Bech32 Address Validator

> KiHustle Bech32 Address Validator is a paid API for AI agents from kihustle.tech, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Validates whether a given string is a valid Bech32-encoded address (e.g. Bitcoin SegWit or similar blockchain addresses)

## Facts

- Endpoint: POST https://kihustle.tech/nexus/api/v1/bech32-validator
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kihustle-bech32-address-validator-a1dc4303
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JYfSml5kjDbvvXx24Z3wS

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 kihustle-bech32-address-validator-a1dc4303 -d '<json body>'
```

Example prompt: Can you check if this address is a valid bech32 format before I send funds to it: bc1qar0srrr7xfkvy5l643lydnw9re59gtzzwf5mdq?

## When to prefer this

Use this endpoint when you need a lightweight, pay-per-call bech32 address validation check — particularly useful in automated crypto payment pipelines, user input sanitization flows, or any workflow where you need to confirm a SegWit-style or similar bech32 address is well-formed before initiating a transaction. Prefer this over manual regex checks when you want a dedicated validation service with a clear API contract.

## Known failure modes

- Malformed input string returns validation failure status
- Empty address field may return an error or failed validation
- Non-bech32 address formats (e.g. legacy Base58 Bitcoin addresses) may be flagged as invalid
- Network errors may return HTTP 402 if payment fails
- Ambiguous response schema may not distinguish between 'invalid format' and 'service error'

## How this service works

Kostenlose Guides, Solo-Playbooks und Artikel zu KI, Automation und Side Hustles — für Menschen, die mit echten Systemen online Einkommen aufbauen wollen. Transparent finanziert über faire Affiliate-Links.

## Output

Returns a JSON object with a 'result' field indicating 'processed' and a 'status' field of 'success' (or failure equivalent), confirming whether the submitted address string is a valid bech32-encoded address.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "address": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": "processed",
  "status": "success"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kihustle-bech32-address-validator-a1dc4303/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from kihustle.tech](https://www.zero.xyz/host/kihustle.tech/llms.txt)
