# Strale Address Parser

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

Parses a free-text address string into structured components (street, city, postal code, state/province, country) for addresses worldwide.

## Facts

- Endpoint: GET https://api.strale.io/x402/address-parse
- Price: $0.054001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-21f42229
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GGFRMFtVoKCFLTgFbn7w9

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 api-strale-io-21f42229
```

Example prompt: Can you parse this address into its components — street, city, postal code, state, and country — for '1600 Pennsylvania Avenue NW, Washington, DC 20500, USA'?

## When to prefer this

Use this endpoint when you need to decompose a raw, unstructured address string into discrete fields (street, city, postal code, state, country) for storage, validation, or downstream processing. Ideal for normalizing user-submitted addresses, processing shipping data, or enriching contact records. Supports international addresses worldwide, making it suitable for global applications.

## Known failure modes

- Ambiguous or malformed address string may yield incomplete or incorrect field extraction
- Non-address input (e.g. a person's name) may return empty or null fields
- Very informal or shorthand addresses may fail to parse correctly
- Missing required 'address' query parameter returns a validation error
- Rate limiting or payment failure may return 402 or 429 status codes

## 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 object with individual address components: street, city, postal code, state/province, and country, derived from parsing the input free-text address. Works for addresses worldwide.

## Example request

```json
{
 "address": "1600 Pennsylvania Avenue NW, Washington, DC 20500, USA"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "Free-text address to parse"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-21f42229/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)
