# KiHustle Phone Number Validator

> KiHustle Phone Number 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 and checks a phone number string for correctness and formatting.

## Facts

- Endpoint: POST https://kihustle.tech/api/v1/phone-number-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-phone-number-validator-897da91b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eaYNHdMnQCIvf9-WLJs_M

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-phone-number-validator-897da91b -d '<json body>'
```

Example prompt: Can you check if '+49 171 1234567' is a valid phone number?

## When to prefer this

Use this endpoint when you need a lightweight, pay-per-call phone number validation check without integrating a full-featured telecoms API. Best for spot-checking individual numbers in workflows, form validation, or lead enrichment pipelines where a simple valid/invalid signal is sufficient.

## Known failure modes

- Missing or empty 'text' field in request body — may return error or ambiguous result
- Malformed JSON input — likely returns HTTP 400
- Non-phone-number text passed — may return processed/success but result may be semantically meaningless
- Service downtime — no response or HTTP 5xx
- Ambiguous phone number formats may produce inconsistent results

## 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, indicating whether the submitted phone number string passed validation.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "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-phone-number-validator-897da91b/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)
