# Interzoid Advanced Address Match Key Generator

> Interzoid Advanced Address Match Key Generator 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-15).

Generates a SmartMatchAI similarity key for a street address to enable advanced fuzzy matching and deduplication across datasets

## Facts

- Endpoint: GET https://api.interzoid.com/getaddressmatchadvanced
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/interzoid-advanced-address-match-key-generator-2bc65d07
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8obUvElnMq6_XJPSeCXiM

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-advanced-address-match-key-generator-2bc65d07
```

Example prompt: Can you generate an advanced address match key for '123 Main Street' in zip code 10001 so I can deduplicate it against other address records in my database?

## When to prefer this

Use this endpoint when you need to deduplicate, cluster, or fuzzy-match street address records across large datasets, CRMs, ERPs, or MDM systems. It is specifically designed for advanced address matching beyond simple string equality, making it ideal when address data has typos, abbreviations, or formatting inconsistencies. Prefer this over basic string comparison or geocoding-based matching when you need a lightweight, scalable similarity key approach without full geocoding overhead.

## Known failure modes

- Missing required 'address' query parameter returns an error code
- Invalid or unparseable address string may produce a low-utility SimKey
- Insufficient credits results in a credits-exhausted error response
- Network timeout or API unavailability returns HTTP 5xx
- Malformed request (wrong HTTP method) returns HTTP 4xx

## How this service works

Generate an advanced AI-powered similarity key for US street address matching with enhanced algorithm accuracy. Uses deeper AI models for more precise matching of complex address variations including unit numbers, directionals, and abbreviations.

## Output

Returns a JSON object with a SimKey (a similarity hash string used to compare against other address SimKeys for fuzzy matching), a Code indicating success or failure, and the remaining Credits on the account. Two addresses that produce the same or similar SimKey are likely duplicates or variants of each other.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "zip": "10001",
   "address": "123 Main Street"
  }
 },
 "output": {
  "type": "object"
 }
}
```

## 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": {
      "zip": {
       "type": "string",
       "description": "Zip code (optional but recommended for precision)"
      },
      "address": {
       "type": "string",
       "description": "Street address for advanced matching"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "Code": "Success",
  "SimKey": "cD6eF8gHi0jKl2mN",
  "Credits": "0"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/interzoid-advanced-address-match-key-generator-2bc65d07/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)
