# Interzoid Global Address Match

> Interzoid Global Address Match 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-13).

Generates a similarity key (SimKey) for a full international address string, enabling fuzzy matching and deduplication of address data across datasets.

## Facts

- Endpoint: GET https://api.interzoid.com/getglobaladdressmatch
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/interzoid-global-address-match-28903a36
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YJrxYOpzeA4WM8ZvqzvcZ

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-global-address-match-28903a36
```

Example prompt: I need a similarity key for the address '10 Downing Street, London, SW1A 2AA, United Kingdom' so I can match and deduplicate it against other address records in my database.

## When to prefer this

Use this endpoint when you need to fuzzy-match or deduplicate international address data across databases, CRMs, ERPs, or MDM systems — particularly when addresses may be formatted inconsistently or contain minor variations. Prefer this over exact-string matching for global addresses where formatting differences (abbreviations, country-specific formats) would cause false negatives.

## Known failure modes

- Missing 'address' query parameter returns an error code
- Empty or malformed address string may produce a low-quality or empty SimKey
- Non-address input (e.g. random text) may still return a SimKey but with poor matching utility
- Insufficient API credits returns a failure code
- Network timeout on slow connections

## How this service works

Generate an AI-powered similarity key for global/international address matching. Handles international address formats and variations across countries.

## Output

Returns a JSON object containing a 'SimKey' (a similarity hash string that can be compared across records to identify matching addresses), a 'Code' field indicating success or failure, and a 'Credits' field showing remaining API credits.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "address": "123 Main Street, Springfield, IL 62701, United States"
  }
 },
 "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": {
      "address": {
       "type": "string",
       "description": "Full international address string"
      }
     }
    }
   },
   "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": "gH5iJk7lMn2oPq4r",
  "Credits": "0"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/interzoid-global-address-match-28903a36/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)
