# klymax402 Address Validator API

> klymax402 Address Validator API is a paid API for AI agents from klymax402.com, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-16).

Parses, validates, and formats a full address string, returning a validity flag, confidence score, issue list, and structured address components.

## Facts

- Endpoint: GET https://klymax402.com/api/address-validator/api/validate
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/klymax402-address-validator-api-79c04225
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mlsMaRPtD5WwhLtAqA2VY

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 klymax402-address-validator-api-79c04225
```

Example prompt: Can you check whether '742 Evergreen Terrace, Springfield, IL 62704' is a valid, properly formatted address and tell me if there are any issues with it?

## When to prefer this

Choose this endpoint when you need a quick, low-cost address parse-and-validate in a single call without managing API keys. It is ideal for agents that need structured address components plus a confidence score and issue list in one response, especially in workflows involving shipping, payments, or form validation.

## Known failure modes

- Empty or null address string returns an error or low-confidence result
- Completely garbled input may return valid=false with issues but no structured components
- Ambiguous addresses (e.g. missing zip code) may return partial components and reduced confidence
- Non-US addresses may not be parsed correctly if the service is US-focused
- Payment failure (402) if USDC balance is insufficient

## How this service works

One MCP endpoint gives your AI agent access to 100 APIs -- crypto, DeFi, web, AI, finance and utilities. No API keys, USDC on Base from $0.003/call.

## Output

Returns a JSON object with a boolean 'valid' field, a 'formatted' string of the corrected address, a 'components' object with parsed fields (street, city, state, zip, etc.), a 'confidence' score from 0 to 1, and an 'issues' array listing any detected problems such as missing components or formatting errors.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "address": {
   "type": "string",
   "description": "Full address string to parse and validate (e.g. '123 Main St, New York, NY 10001')"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "valid": true,
  "issues": [],
  "formatted": "example",
  "components": {},
  "confidence": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/klymax402-address-validator-api-79c04225/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from klymax402.com](https://www.zero.xyz/host/klymax402.com/llms.txt)
