# minia2a Address Parse

> minia2a Address Parse is a paid API for AI agents from minia2a.uk, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Parses and validates a cryptocurrency or postal address string, extracting its structured components and type information.

## Facts

- Endpoint: GET https://minia2a.uk/x402/address-parse
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/minia2a-address-parse-b47177bb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bXMS7p6-FoliMqRnrp-nf

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 minia2a-address-parse-b47177bb
```

Example prompt: Can you parse the address '0x742d35Cc6634C0532925a3b8D4C9A6d5c2e1F3a7' and tell me its type and structured components?

## When to prefer this

Choose this endpoint when you need to programmatically parse or decompose an address string (crypto wallet or similar) into structured components, or when you need to identify the type/format of an address. Useful in multi-chain wallet applications, KYC pipelines, address validation workflows, or any agent that needs to route logic based on address type.

## Known failure modes

- Invalid or malformed address string returns an error or empty parse result
- Unsupported address format may not be recognized and could return null type
- Missing required 'input' parameter returns a 400-level error
- Network or payment authorization failure prevents the call from completing
- Ambiguous address format may return uncertain type classification

## How this service works

minia2a service: x402-address-parse

## Output

Returns a structured object containing the parsed address components, identified address type, and any extracted fields from the input address string, enabling downstream processing or validation workflows.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "method": {
     "type": "string"
    },
    "bodyType": {
     "type": "string"
    },
    "queryParams": {
     "type": "object"
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/minia2a-address-parse-b47177bb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from minia2a.uk](https://www.zero.xyz/host/minia2a.uk/llms.txt)
