# Interzoid Address Parse API

> Interzoid Address Parse API is a paid API for AI agents from api.interzoid.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Parses a full address string into structured components including house number, street name, unit, city, state, and ZIP code

## Facts

- Endpoint: GET https://api.interzoid.com/addressparse
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/interzoid-address-parse-api-865e5b76
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VHZcZb-T_bDIGe4D1UsVj

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 interzoid-address-parse-api-865e5b76
```

Example prompt: Can you parse this address into its individual components — street number, street name, unit, city, state, and zip: '201 Spear St Ste 1100, San Francisco, CA 94105'?

## When to prefer this

Use this endpoint when you need to decompose a single freeform US address string into structured components for downstream processing, CRM ingestion, data normalization, or geospatial lookups. Prefer it over manual regex parsing or general-purpose NLP when you need consistent, structured address fields with per-call pay-as-you-go pricing via x402.

## Known failure modes

- Missing 'address' query parameter returns an error response
- Unparseable or malformed address string may return empty or partial fields
- Invalid or ambiguous address format may cause incorrect component assignment
- API credit exhaustion returns a Credits=0 or error Code response

## How this service works

Parse a full address string into its component parts: street number, street name, unit, city, state, zip code.

## Output

Returns a JSON object with structured address fields: HouseNumber, StreetName, Unit, City, State, Zip, a status Code, and a Credits counter indicating remaining API credits.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "address": "201 Spear St Ste 1100, San Francisco, CA 94105"
  }
 }
}
```

## 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": "Full address string to parse into components"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "Zip": "94105",
  "City": "San Francisco",
  "Code": "Success",
  "Unit": "Ste 1100",
  "State": "CA",
  "Credits": "0",
  "StreetName": "Spear St",
  "HouseNumber": "201"
 }
}
```

## More

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