# Interzoid Organization Name Match Score

> Interzoid Organization Name Match Score 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).

Returns an AI-powered similarity match score between two organization names to support deduplication and entity resolution

## Facts

- Endpoint: GET https://api.interzoid.com/getorgmatchscore
- 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-organization-name-match-score-4e9dd802
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sO-r-Bl6CIaU2gzXjDE2d

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-organization-name-match-score-4e9dd802
```

Example prompt: Can you give me a SmartMatchAI similarity score for these two organization names — 'General Electric Co.' and 'GE Corporation' — to see if they're the same company?

## When to prefer this

Use this endpoint when you need to programmatically determine whether two organization or company names refer to the same real-world entity — especially in deduplication, MDM, CRM cleansing, or data integration workflows. Prefer this over simple string similarity when dealing with abbreviations, legal suffixes, and common name variants (e.g. 'IBM' vs 'International Business Machines').

## Known failure modes

- Missing org1 or org2 query parameters returns an error code
- Empty or whitespace-only strings may produce low or unreliable scores
- Very short or highly abbreviated organization names may yield ambiguous scores
- Network timeout for downstream AI model processing
- Insufficient credits returns a payment/credit error

## How this service works

Compare two organization/company names and receive a match score from 0-100 indicating how similar they are. Useful for determining if two company names refer to the same entity.

## Output

A JSON object with a Code field ('Success' or error), a Score field (0-100 numeric similarity score indicating how likely the two organization names refer to the same entity), and a Credits field indicating remaining API credits.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "org1": "Apple Inc.",
   "org2": "Apple Computer Corporation"
  }
 }
}
```

## 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": [
      "org1",
      "org2"
     ],
     "properties": {
      "org1": {
       "type": "string",
       "description": "First organization name"
      },
      "org2": {
       "type": "string",
       "description": "Second organization name to compare"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "Code": "Success",
  "Score": "92",
  "Credits": "0"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/interzoid-organization-name-match-score-4e9dd802/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)
