# fittings Address Standardizer

> fittings Address Standardizer is a paid API for AI agents from fittings.sh, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Normalizes a free-text US street address into USPS-style standardized format with parsed components including house number, directionals, street name, suffix, city, state, and ZIP.

## Facts

- Endpoint: GET https://fittings.sh/v1/addr/standardize
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fittings-address-standardizer-913d0ed3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_A8WMBwq2yfbeye5wZPo8E

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 fittings-address-standardizer-913d0ed3
```

Example prompt: Can you standardize this address into proper USPS format and pull out the individual components — I have '123 main st apt 4, new york ny 10001'?

## When to prefer this

Choose this endpoint when you need to normalize and parse a raw, user-entered US address string into structured USPS-compliant components — particularly useful for data cleaning, form validation, and pre-processing before geocoding. Prefer it over geocoding endpoints when lat/lng coordinates are not needed and the goal is purely address standardization and component extraction. It is faster and cheaper than full geocoding for address formatting tasks alone.

## Known failure modes

- Address cannot be parsed or recognized — returns an error or empty result
- Non-US address submitted — coverage is US-only, international addresses will fail
- Address string exceeds 200 characters — rejected by input validation
- Ambiguous or incomplete address (e.g. missing city/state/ZIP with no context) — may return low-confidence or no result
- Malformed or gibberish input — returns parse error

## How this service works

Normalize a free-text US street address into its USPS-style standardized one-line form plus parsed components: house number range, directionals, street name, suffix, city, state and 5-digit ZIP.

## Output

Returns the USPS-style standardized one-line address string alongside individually parsed components: house number or range, pre-directional and post-directional, street name, street type suffix, city name, two-letter state abbreviation, and 5-digit ZIP code.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "Free-form US street address, at most 200 characters"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fittings-address-standardizer-913d0ed3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fittings.sh](https://www.zero.xyz/host/fittings.sh/llms.txt)
