# Interzoid Address and Full Name Match

> Interzoid Address and Full Name 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-15).

Generates a similarity key (SimKey) for a combined address and full name input, enabling fuzzy matching and deduplication of contact records across datasets.

## Facts

- Endpoint: GET https://api.interzoid.com/getaddressandfullnamematch
- 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-address-and-full-name-match-92d4784c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EZS3wDbBIIvLMC-SgQXDj

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-and-full-name-match-92d4784c
```

Example prompt: Can you generate a similarity key for the address '123 Main St, Springfield, IL 62701' combined with the full name 'Jonathan R. Smith' so I can match and deduplicate this contact against our CRM records?

## When to prefer this

Use this endpoint when you need to deduplicate or fuzzy-match records that contain both a full name and a street address together — for example, consolidating customer records across CRM, ERP, or MDM systems where the same person may appear with slightly different name spellings or address formats. Prefer this over name-only or address-only endpoints when both fields are available, as combining them produces a more discriminating similarity key.

## Known failure modes

- Missing or empty address/name parameters returns an error code
- Invalid or malformed input may produce a low-quality SimKey reducing match accuracy
- Insufficient credits returns an error indicating the account is out of API credits
- Network timeout or server error returns a non-Success code

## How this service works

Generate a single combined AI-powered similarity key from a full name plus address. Records with the same combined key share both a similar address and a similar individual name. Useful for high-precision household/contact-level deduplication.

## Output

Returns a JSON object with a 'Code' field indicating success or failure, a 'SimKey' string representing the phonetic/AI-derived similarity key for the combined address and full name (used to compare against other SimKeys for fuzzy matching), and a 'Credits' field showing remaining API call credits.

## Example request

```json
{
 "address": "123 Main Street, Springfield, IL 62701",
 "fullname": "Jonathan Smith"
}
```

## 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",
      "fullname"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "Full street address (US or international)"
      },
      "fullname": {
       "type": "string",
       "description": "Full individual name"
      }
     }
    }
   },
   "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": "Xk7pR9vLmQ2wYdN1Ai4RfV0SRJf2dJwDO0C",
  "Credits": "0"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/interzoid-address-and-full-name-match-92d4784c/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)
