# Strale Address Parse API

> Strale Address Parse API is a paid API for AI agents from api.strale.io, paid per call via x402, $0.054/call, status unknown (last checked 2026-09-15).

Parses a free-text address string into structured address components

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/address-parse
- Price: $0.054/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-address-parse-api-8adcd97b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IsUdLGvUfgbXFN1YELuDj

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 strale-address-parse-api-8adcd97b
```

Example prompt: Can you parse '221B Baker Street, London NW1 6XE, United Kingdom' into its individual components like street, city, postcode, and country?

## When to prefer this

Choose this endpoint when you need auditable, structured address parsing with cryptographic provenance across international address formats, especially in compliance-sensitive or agent-driven workflows. Prefer over generic geocoding APIs when you need structured components rather than coordinates, and when an audit trail per API call is required.

## Known failure modes

- Ambiguous or incomplete address string may result in partial parsing or missing components
- Unsupported address formats or highly localized address conventions may not parse correctly
- Empty or invalid 'address' query parameter returns an error
- Non-address free text passed as input may produce meaningless or empty component output

## How this service works

Parse a free-text address into structured components. Returns street, city, postal code, state/province, country. Works with addresses worldwide.

## Output

Returns a structured breakdown of the input address including components such as street name, house number, city, postal code, region/state, and country, along with a cryptographic audit record with chain hashing for traceability.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "address"
 ],
 "properties": {
  "address": {
   "type": "string",
   "description": "Free-text address to parse"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "city": {
  "type": "string"
 },
 "street": {
  "type": "string"
 },
 "country": {
  "type": "string"
 },
 "formatted": {
  "type": "string"
 },
 "postal_code": {
  "type": "string"
 },
 "country_code": {
  "type": "string"
 }
}
```

## More

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