# Interzoid Company Match Advanced Similarity Key

> Interzoid Company Match Advanced Similarity Key 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 an advanced similarity key for a company or organization name to enable fuzzy matching and deduplication across datasets

## Facts

- Endpoint: GET https://api.interzoid.com/getcompanymatchadvanced
- 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/api-interzoid-com-6b510328
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8gvZ2ibYhc4aR-COiiJs0

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 api-interzoid-com-6b510328
```

Example prompt: Can you generate an advanced similarity key for the company name 'International Business Machines Corp' so I can match and deduplicate it against other IBM entries in my database?

## When to prefer this

Use this advanced endpoint over basic company matching when you need higher accuracy similarity keys for complex company name variants, abbreviations, legal suffixes (Inc, LLC, Corp), or multilingual names; prefer this over simple string matching or Levenshtein distance when doing large-scale entity resolution or CRM deduplication

## Known failure modes

- Missing 'company' query parameter returns 400 error
- Empty string input may return null or error key
- Very long or unusual strings may produce low-quality keys
- Non-company text input (e.g. person names) may produce misleading keys
- API payment failure or quota exceeded returns 402 or 429

## How this service works

Company match advanced similarity key

## Output

Returns a normalized similarity key string for the input company name that can be compared against keys generated from other company name variants — matching keys indicate likely duplicate or equivalent company records

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "company": "Apple Inc"
  }
 }
}
```

## 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"
     ],
     "properties": {
      "company": {
       "type": "string",
       "description": "Company or organization name for advanced similarity key generation"
      }
     }
    }
   },
   "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": "eF5gHi8jKl2mNo4p",
  "Credits": "0"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-interzoid-com-6b510328/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)
