# Interzoid Get Company and Address Match

> Interzoid Get Company and 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-14).

Generates a similarity key (SimKey) for a combined company name and address string to enable fuzzy matching and deduplication across records

## Facts

- Endpoint: GET https://api.interzoid.com/getcompanyandaddressmatch
- 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-get-company-and-address-match-8b38ce6b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WjkySl808uhFXgZocLJhT

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-get-company-and-address-match-8b38ce6b
```

Example prompt: I need to deduplicate my CRM — can you generate a SmartMatchAI similarity key for the company and address combination 'Acme Corporation, 123 Main St, Springfield IL'?

## When to prefer this

Use this endpoint when you need to match or deduplicate records that contain BOTH a company name AND an address together — it is more precise than a company-name-only match endpoint because it incorporates address signals. Ideal for MDM, CRM deduplication, data lake cleansing, or any pipeline where business entity resolution requires location disambiguation.

## Known failure modes

- Missing or empty company/address input returns an error code
- Invalid API key returns an authorization error
- Malformed request returns a bad request error
- Insufficient credits returns a credits-exhausted error
- Very short or ambiguous input may produce a SimKey with low discriminating power

## How this service works

Generate a single combined AI-powered similarity key from a company/organization name plus a street address. Records with the same combined key likely share both a similar company name and address. Ideal for business-location deduplication across vendor, supplier, and account datasets.

## Output

Returns a JSON object with a SimKey (similarity key string used to match against other records), a Code indicating success or failure, and a Credits count showing remaining API credits. The SimKey can be compared across records — identical or near-identical SimKeys indicate likely duplicate or matching company-address combinations.

## 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": [
      "company",
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "Full street address (US or international)"
      },
      "company": {
       "type": "string",
       "description": "Company or organization 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-get-company-and-address-match-8b38ce6b/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)
